pub enum VoxelFill {
Occupancy,
Count,
}Expand description
How a voxel’s value is filled from the points that fall in it.
Variants§
Occupancy
1.0 if any point falls in the voxel, else 0.0.
Count
The number of points that fall in the voxel.
Trait Implementations§
impl Copy for VoxelFill
impl Eq for VoxelFill
impl StructuralPartialEq for VoxelFill
Auto Trait Implementations§
impl Freeze for VoxelFill
impl RefUnwindSafe for VoxelFill
impl Send for VoxelFill
impl Sync for VoxelFill
impl Unpin for VoxelFill
impl UnsafeUnpin for VoxelFill
impl UnwindSafe for VoxelFill
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more