Warning
Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.
ClipPlaneProperties¶
Type Alias ClipPlaneProperties
animation?: { name: string } & AnimationOptions | null;
clippedNodes?: number[];
enabled?: boolean;
excludedNodes?: number[];
invisible?: boolean;
name?: string;
normal?: [number, number, number] | Float32Array;
position?: [number, number, number] | Float32Array;
tangent?: [number, number, number] | Float32Array;
thickness?: number;
transform?:
| [
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
]
| Float32Array;
}
Type declaration
Optional
animation?: { name: string } & AnimationOptions | nullOptional
clippedNodes?: number[]List of node IDs which should be exclusively clipped. The properties clippedNodes and excludedNodes are mutually exclusive.
Optional
enabled?: booleanThe enabled state of the clip plane.
Optional
excludedNodes?: number[]List of node IDs which should be excluded from the clipping. The properties clippedNodes and excludedNodes are mutually exclusive.
Optional
invisible?: booleanThe invisible state of the clip plane.
Optional
name?: stringThe name of the clip plane.
Optional
normal?: [number, number, number] | Float32ArrayThe normal vector of the clip plane.
Optional
position?: [number, number, number] | Float32ArrayThe position of the clip plane.
Optional
tangent?: [number, number, number] | Float32ArrayThe tangent vector of the clip plane.
Optional
thickness?: numberThe thickness of the clip plane.
Optional
transform?:
| [
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
number,
]
| Float32ArrayThe transformation matrix of the clip plane.
TODO