Skip to main content

Verdict

Trait Verdict 

Source
pub trait Verdict {
    // Required methods
    fn maximum_edge_ratios(&self) -> Vec<Vec<Scalar>>;
    fn maximum_skews(&self) -> Vec<Vec<Scalar>>;
    fn minimum_jacobians(&self) -> Vec<Vec<Scalar>>;
    fn minimum_scaled_jacobians(&self) -> Vec<Vec<Scalar>>;
    fn volumes(&self) -> Vec<Vec<Scalar>>;
}

Required Methods§

Implementors§

Source§

impl<const D: usize> Verdict for Mesh<D>