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
12
13
14
15
16
17
mod sphere;
pub use self::sphere::Sphere;

mod movable_sphere;
pub use self::movable_sphere::MovableSphere;

mod xy_rect;
pub use self::xy_rect::XYRect;

mod xz_rect;
pub use self::xz_rect::XZRect;

mod yz_rect;
pub use self::yz_rect::YZRect;

mod cuboid;
pub use self::cuboid::Cuboid;