File size: 446 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { ColorRepresentation } from '../utils';
import { Object3D } from './../core/Object3D';
import { LineSegments } from './../objects/LineSegments';

export class BoxHelper extends LineSegments {
	/**
	 * @param object
	 * @param [color=0xffff00]
	 */
	constructor(object: Object3D, color?: ColorRepresentation);

	/**
	 * @default 'BoxHelper'
	 */
	type: string;

	update(object?: Object3D): void;

	setFromObject(object: Object3D): this;
}