Spaces:
Running
Running
File size: 199 Bytes
263e0f2 |
1 2 3 4 5 6 7 8 9 |
import { Vector2 } from './../../math/Vector2';
import { Curve } from './../core/Curve';
export class SplineCurve extends Curve<Vector2> {
constructor(points?: Vector2[]);
points: Vector2[];
}
|