1//! Collection of algorithms that are used by the kernel
2//!
3//! Algorithmic code is collected in this module, to keep other modules focused
4//! on their respective purpose.
56pub mod approx;
7pub mod intersect;
8pub mod reverse;
9pub mod sweep;
10pub mod transform;
11pub mod triangulate;