truster 0.4.1

A ray tracing library based on the book 'The Ray Tracer Challenge' by Jamis Buck.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A ray tracing library based on the book
//! [The Ray Tracer Challenge](https://pragprog.com/titles/jbtracer/the-ray-tracer-challenge/),
//! by Jamis Buck.

pub mod camera;
pub mod canvas;
pub mod color;
pub mod intersection;
pub mod light;
pub mod material;
pub mod matrix;
pub mod ray;
pub mod shape;
pub mod texture;
pub mod tuple;
pub mod world;