Spaces:
Running
Running
| 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; | |
| } | |