pathtracer/pathtracer/src/render/mod.rs
2020-03-24 21:47:09 +01:00

13 lines
167 B
Rust

//! Rendering logic
pub mod light_aggregate;
pub use light_aggregate::*;
pub mod object;
pub use object::*;
pub mod scene;
pub use scene::*;
pub(crate) mod utils;