Enum copc_rs::LodSelection
source · [−]Expand description
Limits the octree levels to be queried in order to have a point cloud with the requested resolution.
resolution: Limits the octree levels to be queried in order to have a point cloud with the requested resolution.
- The unit is the one of the data.
- If absent, the resulting cloud will be at the full resolution offered by the COPC source
level: The level of detail (LOD).
If absent, all LOD are going to be considered
Variants
All
Full resolution (all LODs)
Resolution(f64)
requested resolution of point cloud
Level(i32)
only points that that are of the requested LOD will be returned.
LevelMinMax(i32, i32)
points for which the LOD is within the range will be returned.
Auto Trait Implementations
impl RefUnwindSafe for LodSelection
impl Send for LodSelection
impl Sync for LodSelection
impl Unpin for LodSelection
impl UnwindSafe for LodSelection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more