@pnext/three-loader
Version:
Potree loader for ThreeJS, converted and adapted to Typescript.
14 lines (13 loc) • 406 B
TypeScript
import { Box3, Color, LineSegments } from 'three';
/**
*
* code adapted from three.js BoxHelper.js
* https://github.com/mrdoob/three.js/blob/dev/src/helpers/BoxHelper.js
*
* @author mrdoob / http://mrdoob.com/
* @author Mugen87 / http://github.com/Mugen87
* @author mschuetz / http://potree.org
*/
export declare class Box3Helper extends LineSegments {
constructor(box: Box3, color?: Color);
}