pub enum RemeshingMetric {
Isotropic(IsotropicSizing),
Anisotropic(AnisotropicSizing),
}Expand description
Different metrics for remeshing.
Variants§
Isotropic(IsotropicSizing)
Isotropic remeshing (circular/spherical target metric).
Anisotropic(AnisotropicSizing)
Anisotropic remeshing (directional, curvature-aligned target metric).
Auto Trait Implementations§
impl Freeze for RemeshingMetric
impl RefUnwindSafe for RemeshingMetric
impl Send for RemeshingMetric
impl Sync for RemeshingMetric
impl Unpin for RemeshingMetric
impl UnsafeUnpin for RemeshingMetric
impl UnwindSafe for RemeshingMetric
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