Spaces:
Running
Running
File size: 246 Bytes
263e0f2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { Vector3 } from './../../math/Vector3';
import { Curve } from './../core/Curve';
export class LineCurve3 extends Curve<Vector3> {
constructor(v1: Vector3, v2: Vector3);
v1: Vector3;
v2: Vector3;
getPoint(t: number): Vector3;
}
|