mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-09-19 07:30:27 +00:00
Vendored
+2
-2
@@ -6586,13 +6586,13 @@ export class Curve<T extends Vector> {
|
||||
* Returns a vector for point t of the curve where t is between 0 and 1
|
||||
* getPoint(t: number): T;
|
||||
*/
|
||||
getPoint(t: number): T;
|
||||
getPoint(t: number, optionalTarget?: T): T;
|
||||
|
||||
/**
|
||||
* Returns a vector for point at relative position in curve according to arc length
|
||||
* getPointAt(u: number): T;
|
||||
*/
|
||||
getPointAt(u: number): T;
|
||||
getPointAt(u: number, optionalTarget?: T): T;
|
||||
|
||||
/**
|
||||
* Get sequence of points using getPoint( t )
|
||||
|
||||
Reference in New Issue
Block a user