//! 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::*;