openmesh 0.1.0

Vertex-face mesh validation
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, PartialEq, Eq)]
/// Error type for mesh validation.
pub enum MeshError {
    OpenEdges,
    NonManifold,
    SelfIntersecting,
    ZeroAreaFace,
    InconsistentNormals,
    InwardNormals,
}