Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions types/three/three-core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6582,6 +6582,14 @@ export class AudioListener extends Object3D {
* class Curve<T extends Vector>
*/
export class Curve<T extends Vector> {

/**
* This value determines the amount of divisions when calculating the cumulative segment lengths of a curve via .getLengths.
* To ensure precision when using methods like .getSpacedPoints, it is recommended to increase .arcLengthDivisions if the curve is very large.
* Default is 200.
*/
arcLengthDivisions:number;

/**
* Returns a vector for point t of the curve where t is between 0 and 1
* getPoint(t: number): T;
Expand Down