pub struct PerTypeMeshStats {
pub equilateral_mean_ar: f32,
pub obtuse_mean_ar: f32,
pub right_mean_ar: f32,
pub n_equilateral: u32,
pub n_obtuse: u32,
pub n_right: u32,
pub n_acute: u32,
pub n_degenerate: u32,
}Expand description
Quality statistics broken down per element category.
Fields§
§equilateral_mean_ar: f32Mean aspect ratio of equilateral triangles.
obtuse_mean_ar: f32Mean aspect ratio of obtuse triangles.
right_mean_ar: f32Mean aspect ratio of right triangles.
n_equilateral: u32Count of each category.
n_obtuse: u32Count of obtuse triangles.
n_right: u32Count of right triangles.
n_acute: u32Count of acute triangles.
n_degenerate: u32Count of degenerate triangles.
Trait Implementations§
Source§impl Clone for PerTypeMeshStats
impl Clone for PerTypeMeshStats
Source§fn clone(&self) -> PerTypeMeshStats
fn clone(&self) -> PerTypeMeshStats
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 PerTypeMeshStats
impl Debug for PerTypeMeshStats
Source§impl Default for PerTypeMeshStats
impl Default for PerTypeMeshStats
Source§fn default() -> PerTypeMeshStats
fn default() -> PerTypeMeshStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PerTypeMeshStats
impl RefUnwindSafe for PerTypeMeshStats
impl Send for PerTypeMeshStats
impl Sync for PerTypeMeshStats
impl Unpin for PerTypeMeshStats
impl UnsafeUnpin for PerTypeMeshStats
impl UnwindSafe for PerTypeMeshStats
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.