| 1234567891011121314151617181920 |
- 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;
- }
|