machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
199 Bytes
import { Vector2 } from './../../math/Vector2';
import { Curve } from './../core/Curve';
export class SplineCurve extends Curve<Vector2> {
constructor(points?: Vector2[]);
points: Vector2[];
}