ray_tracing_core 0.1.1

Ray Tracing based on Peter Shirley's mini books
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod ray;
pub use self::ray::Ray;

mod aabb;
pub use self::aabb::AABB;

mod perlin;
pub use self::perlin::Perlin;

mod ortho_normal_base;
pub use ortho_normal_base::OrthoNormalBase;