10 lines
204 B
Rust

pub mod canvas;
pub mod intersections;
pub mod matrices;
pub mod rays;
pub mod spheres;
pub mod tuples;
/// Value considered close enough for PartialEq implementations.
pub const EPSILON: f32 = 0.00001;