three
Version:
JavaScript 3D library
21 lines (15 loc) • 350 B
TypeScript
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;
}