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