1 2 3 4 5 6 7 8 9 10 11 12 13
//! This module contains the representation of the mesh. It defines the vertex, edge, face and mesh structs. mod edge; mod face; mod mesh; mod triangulation; mod vertex; pub use edge::*; pub use face::*; pub use mesh::*; pub use triangulation::*; pub use vertex::*;