pathtracer/src/render/mod.rs
Bruno BELANYI 8e09f45f69 library: render: move helpers to utils module
Those helper functions are used by `Scene` to render the scene, but
they have no use being in the same file. Instead make it a crate-public
module of `render`.
2020-03-23 16:51:06 +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;