beevee: add library to workspace
This is designed to be the new BVH for the raytracer.
This commit is contained in:
parent
01d2c2d973
commit
9c56134c67
8 changed files with 56 additions and 0 deletions
4
beevee/src/bvh/mod.rs
Normal file
4
beevee/src/bvh/mod.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
//! The Boudning Volume Hiearchy
|
||||
|
||||
mod tree;
|
||||
pub use tree::*;
|
||||
2
beevee/src/bvh/tree.rs
Normal file
2
beevee/src/bvh/tree.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/// The BVH containing all the objects.
|
||||
pub struct BVH {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue