starry / backend /libs /three /helpers /Box3Helper.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Box3 } from './../math/Box3';
import { Color } from './../math/Color';
import { LineSegments } from './../objects/LineSegments';
export class Box3Helper extends LineSegments {
/**
* @param box
* @param [color=0xffff00]
*/
constructor(box: Box3, color?: Color);
/**
* @default 'Box3Helper'
*/
type: string;
box: Box3;
}