pathtracer/beevee/src/aabb/mod.rs
Bruno BELANYI 9c56134c67 beevee: add library to workspace
This is designed to be the new BVH for the raytracer.
2020-03-24 21:47:14 +01:00

5 lines
100 B
Rust

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