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