pub struct QualityCheckResult {
pub n_bad_aspect_ratio: u32,
pub n_bad_skewness: u32,
pub n_small_angle: u32,
pub n_large_angle: u32,
pub n_below_min_area: u32,
pub passes: bool,
}Expand description
Result of checking a mesh against quality thresholds.
Fields§
§n_bad_aspect_ratio: u32Number of triangles exceeding max aspect ratio.
n_bad_skewness: u32Number of triangles exceeding max skewness.
n_small_angle: u32Number of triangles with angles below min_angle.
n_large_angle: u32Number of triangles with angles above max_angle.
n_below_min_area: u32Number of triangles below min area.
passes: boolWhether the mesh passes all checks.
Trait Implementations§
Source§impl Clone for QualityCheckResult
impl Clone for QualityCheckResult
Source§fn clone(&self) -> QualityCheckResult
fn clone(&self) -> QualityCheckResult
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 moreAuto Trait Implementations§
impl Freeze for QualityCheckResult
impl RefUnwindSafe for QualityCheckResult
impl Send for QualityCheckResult
impl Sync for QualityCheckResult
impl Unpin for QualityCheckResult
impl UnsafeUnpin for QualityCheckResult
impl UnwindSafe for QualityCheckResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.