pathtracer/src/lib.rs

9 lines
171 B
Rust
Raw Normal View History

use bvh::nalgebra::{Point2, Point3, Vector3};
pub type Point2D = Point2<f64>;
pub type Point = Point3<f64>;
pub type Vector = Vector3<f64>;
2020-03-16 15:16:20 +01:00
pub mod core;
2020-03-16 15:18:15 +01:00
pub mod light;