pub struct CopcTilesetOptions {
pub max_level: Option<i32>,
pub refine: Refinement,
pub root_geometric_error: Option<f64>,
pub geometric_error_scale: f64,
}Expand description
Options controlling COPC → 3D Tiles export.
Fields§
§max_level: Option<i32>Maximum octree depth to export; None exports the whole hierarchy.
refine: RefinementRefinement policy recorded on the root tile.
root_geometric_error: Option<f64>Root geometric error; defaults to the root bounds diagonal when None.
geometric_error_scale: f64Multiplier applied to the parent geometric error for each child level.
Trait Implementations§
Source§impl Clone for CopcTilesetOptions
impl Clone for CopcTilesetOptions
Source§fn clone(&self) -> CopcTilesetOptions
fn clone(&self) -> CopcTilesetOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CopcTilesetOptions
impl Debug for CopcTilesetOptions
Auto Trait Implementations§
impl Freeze for CopcTilesetOptions
impl RefUnwindSafe for CopcTilesetOptions
impl Send for CopcTilesetOptions
impl Sync for CopcTilesetOptions
impl Unpin for CopcTilesetOptions
impl UnsafeUnpin for CopcTilesetOptions
impl UnwindSafe for CopcTilesetOptions
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