honeycomb_kernels/utils/
mod.rs

1//! collection of utilities for meshing algorithms
2
3mod anchors;
4mod routines;
5
6pub use anchors::{
7    BodyIdType, CurveIdType, EdgeAnchor, FaceAnchor, NodeIdType, SurfaceIdType, VertexAnchor,
8};
9pub use routines::is_orbit_orientation_consistent;