Update documentation of algorithms module

This commit is contained in:
Hanno Braun 2023-06-20 10:25:03 +02:00
parent 11eccce3be
commit c848dbec9c

View File

@ -1,7 +1,14 @@
//! Collection of algorithms that are used by the kernel
//! Collection of algorithms that operate on geometry
//!
//! Algorithmic code is collected in this module, to keep other modules focused
//! on their respective purpose.
//!
//! # Implementation Note
//!
//! This module exists in a bit of an in-between state, as some of the things
//! that are still here are probably better places in the [`operations`] module.
//!
//! [`operations`]: crate::operations
pub mod approx;
pub mod bounding_volume;