VolumeFilter
type VolumeFilter = {
range: Vec2;
applyGaussianFiltering: boolean;
sampleUnfiltered: boolean;
enableMPR: boolean;
enable3D: boolean;
};
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:1014
Filtering properties applied to the volume.
Type declaration
Name | Type | Description |
---|---|---|
range | Vec2 | Voxel intensity range displayed, not applicable if outside volume material range. |
applyGaussianFiltering | boolean | Apply gaussian filtering on voxels. |
sampleUnfiltered | boolean | Are texel values from the voxel texture sampled unfiltered. |
enableMPR | boolean | Whether or not this volume is visible in the MPR view. |
enable3D | boolean | Whether or not this volume is visible in the 3D view. |