1 2 3 4 5 6 7
use crate::linalg::vector::Vector; pub use super::camera::Camera; pub use super::world::{Hittable, World}; pub type Vec3 = Vector<f64, 3>; pub type Ray = crate::linalg::ray::Ray<f64, 3>;