web3d / node_modules /three /src /extras /curves /QuadraticBezierCurve3.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
285 Bytes
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;
}