3039607e4f
This will allow for the use of meshes inside the BVH. Returning the reference to a triangle inside the mesh directly instead of returning the reference to the mesh itself allows for more optimum execution.
11 lines
145 B
Rust
11 lines
145 B
Rust
//! The Boudning Volume Hiearchy
|
|
|
|
mod accelerated;
|
|
pub use accelerated::*;
|
|
|
|
mod intersected;
|
|
pub use intersected::*;
|
|
|
|
mod tree;
|
|
pub use tree::*;
|