starry / backend /libs /three /helpers /GridHelper.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { ColorRepresentation } from '../utils';
import { LineSegments } from './../objects/LineSegments';
export class GridHelper extends LineSegments {
/**
* @param [size=10]
* @param [divisions=10]
* @param [color1=0x444444]
* @param [color2=0x888888]
*/
constructor(size?: number, divisions?: number, color1?: ColorRepresentation, color2?: ColorRepresentation);
/**
* @default 'GridHelper'
*/
type: string;
/**
* @deprecated Colors should be specified in the constructor.
*/
setColors(color1?: ColorRepresentation, color2?: ColorRepresentation): void;
}