Skip to content

Commit

Permalink
Fix typo (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored Jan 24, 2024
1 parent 8b01aaf commit 0a00147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/three/examples/jsm/curves/NURBSVolume.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class NURBSVolume {
knots1: readonly number[];
knots2: readonly number[];
knots3: readonly number[];
controlsPoints: Vector4[][][];
controlPoints: Vector4[][][];

constructor(
degree1: number,
Expand All @@ -16,7 +16,7 @@ export class NURBSVolume {
knots1: readonly number[],
knots2: readonly number[],
knots3: readonly number[],
controlsPoints: Vector4[][][],
controlPoints: Vector4[][][],
);

getPoint(t1: number, t2: number, t3: number, target: Vector3): void;
Expand Down

0 comments on commit 0a00147

Please sign in to comment.