openmesh 0.1.1

Vertex-face mesh validation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Algorithms and internal data structures.

mod aabb;
mod edge_map;
mod error;
mod math;
mod report;
mod validation;

use aabb::AABB;
pub use edge_map::EdgeMap;
pub use error::MeshError;
pub use math::Float;
pub use report::MeshValidationReport;
pub use validation::{
    check_consistent_normals, check_intersecting, check_inward_orientation, check_manifold,
    check_mesh, check_zero_area_faces, validate_mesh,
};