UNPKG

479 BTypeScriptView Raw
1import { ColorRepresentation } from '../utils';
2import { Object3D } from './../core/Object3D';
3import { LineSegments } from './../objects/LineSegments';
4
5export class BoxHelper extends LineSegments {
6 /**
7 * @param object
8 * @param [color=0xffff00]
9 */
10 constructor(object: Object3D, color?: ColorRepresentation);
11
12 /**
13 * @default 'BoxHelper'
14 */
15 type: string;
16
17 update(object?: Object3D): void;
18
19 setFromObject(object: Object3D): this;
20}