pub enum LodSelection {
    All,
    Resolution(f64),
    Level(i32),
    LevelMinMax(i32i32),
}
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(i32i32)

points for which the LOD is within the range will be returned.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.