Bill Thiede 9c5233e057 Implement DiffuseLight material.
Allow Scenes to define global_illumination so scenes without lighting
can continue to work.
2018-09-23 18:30:24 -07:00

29 lines
485 B
Rust

pub mod aabb;
pub mod bvh;
pub mod camera;
pub mod hitable;
pub mod hitable_list;
pub mod kdtree;
pub mod material;
pub mod moving_sphere;
pub mod perlin;
pub mod ray;
pub mod rect;
pub mod renderer;
pub mod scenes;
pub mod sphere;
pub mod texture;
pub mod vec3;
extern crate crossbeam_channel;
extern crate image;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate num_cpus;
extern crate rand;
extern crate rayon;
#[macro_use]
extern crate structopt;