use crate::math::Vec3;
use crate::raycasting::Primitive;
pub struct Scene {
pub camera_location: Vec3<f64>,
pub objects: Vec<Box<dyn Primitive>>,
}