web3d / node_modules /three /src /extras /curves /CubicBezierCurve.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
275 Bytes
import { Vector2 } from './../../math/Vector2';
import { Curve } from './../core/Curve';
export class CubicBezierCurve extends Curve<Vector2> {
constructor(v0: Vector2, v1: Vector2, v2: Vector2, v3: Vector2);
v0: Vector2;
v1: Vector2;
v2: Vector2;
v3: Vector2;
}