pathtracer/pathtracer/src/scene/mod.rs

14 lines
181 B
Rust
Raw Normal View History

//! Desciption of the scene.
2020-03-22 01:51:04 +01:00
pub mod light_aggregate;
pub use light_aggregate::*;
mod mesh;
pub use mesh::*;
pub mod object;
pub use object::*;
pub mod scene;
pub use scene::*;