File size: 346 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}