UNPKG

376 BTypeScriptView Raw
1import { Box3 } from './../math/Box3';
2import { Color } from './../math/Color';
3import { LineSegments } from './../objects/LineSegments';
4
5export class Box3Helper extends LineSegments {
6 /**
7 * @param box
8 * @param [color=0xffff00]
9 */
10 constructor(box: Box3, color?: Color);
11
12 /**
13 * @default 'Box3Helper'
14 */
15 type: string;
16
17 box: Box3;
18}