fj_core/algorithms/mod.rs
1//! Collection of algorithms that operate on geometry
2//!
3//! Algorithmic code is collected in this module, to keep other modules focused
4//! on their respective purpose.
5//!
6//! # Implementation Note
7//!
8//! This module exists in a bit of an in-between state, as some of the things
9//! that are still here are probably better placed in the [`operations`] module.
10//!
11//! [`operations`]: crate::operations
12
13pub mod approx;
14pub mod bounding_volume;
15pub mod intersect;
16pub mod triangulate;