aboutsummaryrefslogtreecommitdiff
path: root/src/scene/mod.rs
blob: 7c77412d01e9779c4efd57401eed77e7347f4dfe (plain)
1
2
3
4
5
6
7
//! Defines the scene type which contains all the objects in the scene.
//! 
//! Also handles finding intersections between rays and shapes
pub mod shapes;

mod scene;
pub use scene::*;