bs-trace 0.3.0

Free RayTracing software
Documentation
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>;