1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Collection of algorithms that are used by the kernel
//!
//! Algorithmic code is collected in this module, to keep other modules focused
//! on their respective purpose.
mod approx;
mod sweep;
mod triangulation;
pub use self::{
approx::{CycleApprox, FaceApprox, Tolerance},
sweep::sweep_shape,
triangulation::triangulate,
};