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 reverse;
mod triangulate;

pub mod approx;
pub mod intersect;
pub mod sweep;
pub mod transform;

pub use self::{reverse::reverse_face, triangulate::triangulate};