starry / backend /libs /three /extras /curves /LineCurve3.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Vector3 } from './../../math/Vector3';
import { Curve } from './../core/Curve';
export class LineCurve3 extends Curve<Vector3> {
constructor(v1: Vector3, v2: Vector3);
/**
* @default 'LineCurve3'
*/
type: string;
/**
* @default new THREE.Vector3()
*/
v1: Vector3;
/**
* @default new THREE.Vector3()
*/
v2: Vector3;
}