use nalgebra::{Point3}; use crate::raycasting::Aggregate; use crate::Real; pub struct Scene { pub camera_location: Point3, pub objects: Vec>>, }