Spaces:
Running
Running
File size: 285 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Vector3 } from './../../math/Vector3';
import { Curve } from './../core/Curve';
export class QuadraticBezierCurve3 extends Curve<Vector3> {
constructor(v0: Vector3, v1: Vector3, v2: Vector3);
v0: Vector3;
v1: Vector3;
v2: Vector3;
getPoint(t: number): Vector3;
}
|