starry / backend /libs /three /cameras /ArrayCamera.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { PerspectiveCamera } from './PerspectiveCamera';
export class ArrayCamera extends PerspectiveCamera {
constructor(cameras?: PerspectiveCamera[]);
/**
* @default []
*/
cameras: PerspectiveCamera[];
readonly isArrayCamera: true;
}