pub struct MlsConfig {
pub search_radius: f32,
pub polynomial_order: u8,
pub min_neighbors: usize,
}Expand description
Configuration for MlsSmoothing.
Fields§
§search_radius: f32Neighborhood radius used to fit the local surface.
polynomial_order: u8Polynomial order of the fitted height field (1 = plane, 2 = quadratic).
min_neighbors: usizeMinimum neighbors required to smooth a point (else it is left in place).
Implementations§
Trait Implementations§
impl Copy for MlsConfig
impl StructuralPartialEq for MlsConfig
Auto Trait Implementations§
impl Freeze for MlsConfig
impl RefUnwindSafe for MlsConfig
impl Send for MlsConfig
impl Sync for MlsConfig
impl Unpin for MlsConfig
impl UnsafeUnpin for MlsConfig
impl UnwindSafe for MlsConfig
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