pub enum IsotropicSizing {
Uniform {
length: Option<Scalar>,
},
Adaptive {
tolerance: Scalar,
minimum: Scalar,
maximum: Scalar,
gradation: Scalar,
},
}Expand description
Sizing for isotropic remeshing.
Variants§
Uniform
Constant target edge length over the whole mesh (None = mean edge length).
Adaptive
Curvature-driven scalar size field (Dunyach).
Auto Trait Implementations§
impl Freeze for IsotropicSizing
impl RefUnwindSafe for IsotropicSizing
impl Send for IsotropicSizing
impl Sync for IsotropicSizing
impl Unpin for IsotropicSizing
impl UnsafeUnpin for IsotropicSizing
impl UnwindSafe for IsotropicSizing
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