starry / backend /libs /three /helpers /PlaneHelper.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Plane } from './../math/Plane';
import { LineSegments } from './../objects/LineSegments';
export class PlaneHelper extends LineSegments {
/**
* @param plane
* @param [size=1]
* @param [hex=0xffff00]
*/
constructor(plane: Plane, size?: number, hex?: number);
/**
* @default 'PlaneHelper'
*/
type: string;
plane: Plane;
/**
* @default 1
*/
size: number;
updateMatrixWorld(force?: boolean): void;
}