Skip to main content

geop_core_topology/
lib.rs

1pub mod argument_validation;
2pub mod boundary;
3pub mod coedge;
4pub mod contains;
5pub mod edge;
6pub mod edit;
7pub mod euler;
8pub mod face;
9pub mod ids;
10pub mod loop_sampling;
11pub mod model;
12pub mod shell;
13pub mod solid;
14#[cfg(test)]
15pub(crate) mod test_fixtures;
16pub mod validation;
17pub mod vertex;
18
19pub use coedge::{Coedge, CoedgeGeometry, Sense};
20pub use edge::Edge;
21pub use face::Face;
22pub use ids::{CoedgeId, EdgeId, FaceId, ShellId, SolidId, VertexId};
23pub use model::{Curve2, Curve3, Model};
24pub use shell::Shell;
25pub use solid::Solid;
26pub use vertex::Vertex;