starry / backend /libs /three /extras /curves /CubicBezierCurve.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
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);
/**
* @default 'CubicBezierCurve'
*/
type: string;
/**
* @default new THREE.Vector2()
*/
v0: Vector2;
/**
* @default new THREE.Vector2()
*/
v1: Vector2;
/**
* @default new THREE.Vector2()
*/
v2: Vector2;
/**
* @default new THREE.Vector2()
*/
v3: Vector2;
}