CubicBezierCurve3
new CubicBezierCurve3(v0?: Vector3, v1?: Vector3, v2?: Vector3, v3?: Vector3)
THREE: THREE.CubicBezierCurve3
3D cubic Bezier curve with two control points.
Properties
| Name | Type | Description |
|---|---|---|
v0 | Vector3 | Start point. |
v1 | Vector3 | First control point. |
v2 | Vector3 | Second control point. |
v3 | Vector3 | End point. |
Methods
| Method | Description |
|---|---|
getPoint(t: number, target?: Vector3): Vector3 | Returns the point at parameter t. |