vanrijn/src/scene.rs

9 lines
189 B
Rust

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