UNPKG

@pnext/three-loader

Version:

Potree loader for ThreeJS, converted and adapted to Typescript.

16 lines (15 loc) 330 B
import { Box3, Matrix4, Vector3 } from 'three'; export declare enum ClipMode { DISABLED = 0, CLIP_OUTSIDE = 1, HIGHLIGHT_INSIDE = 2, CLIP_HORIZONTALLY = 3, CLIP_VERTICALLY = 4, CLIP_INSIDE = 5 } export interface IClipBox { box: Box3; inverse: Matrix4; matrix: Matrix4; position: Vector3; }