mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-04 09:10:09 +00:00
4
types/three/three-core.d.ts
vendored
4
types/three/three-core.d.ts
vendored
@@ -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