UNPKG

482 BTypeScriptView Raw
1import { Plane } from './../math/Plane';
2import { LineSegments } from './../objects/LineSegments';
3
4export class PlaneHelper extends LineSegments {
5 /**
6 * @param plane
7 * @param [size=1]
8 * @param [hex=0xffff00]
9 */
10 constructor(plane: Plane, size?: number, hex?: number);
11
12 /**
13 * @default 'PlaneHelper'
14 */
15 type: string;
16
17 plane: Plane;
18
19 /**
20 * @default 1
21 */
22 size: number;
23
24 updateMatrixWorld(force?: boolean): void;
25}