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