pathtracer/beevee/src/aabb/mod.rs
2020-03-24 21:47:14 +01:00

8 lines
134 B
Rust

//! The module relating to Axis-Aligned Bounding Boxes.
mod bounded;
pub use bounded::*;
mod bounding_box;
pub use bounding_box::*;