beevee: add library to workspace

This is designed to be the new BVH for the raytracer.
This commit is contained in:
Bruno BELANYI 2020-03-23 23:56:26 +01:00
parent 01d2c2d973
commit 9c56134c67
8 changed files with 56 additions and 0 deletions

4
beevee/src/bvh/mod.rs Normal file
View file

@ -0,0 +1,4 @@
//! The Boudning Volume Hiearchy
mod tree;
pub use tree::*;

2
beevee/src/bvh/tree.rs Normal file
View file

@ -0,0 +1,2 @@
/// The BVH containing all the objects.
pub struct BVH {}