UNPKG

three

Version:

JavaScript 3D library

11 lines (8 loc) 251 B
import { Vector2 } from './../../math/Vector2'; import { Curve } from './../core/Curve'; export class QuadraticBezierCurve extends Curve<Vector2> { constructor(v0: Vector2, v1: Vector2, v2: Vector2); v0: Vector2; v1: Vector2; v2: Vector2; }