fj_kernel/algorithms/
mod.rs

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.
5
6pub mod approx;
7pub mod intersect;
8pub mod reverse;
9pub mod sweep;
10pub mod transform;
11pub mod triangulate;