UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

12 lines (10 loc) 267 B
import { Curve, Vector2, Vector3, Vector4 } from 'three' export class NURBSCurve extends Curve<Vector3> { constructor( degree: number, knots: number[], controlPoints: Vector2[] | Vector3[] | Vector4[], startKnot: number, endKnot: number, ) }