Bill Thiede 2b1112d39e
Some checks failed
continuous-integration/drone/push Build is failing
Print human friendly rays / second.
2019-10-12 17:47:19 -07:00

38 lines
644 B
Rust

pub mod aabb;
pub mod bvh;
pub mod camera;
pub mod constant_medium;
pub mod cuboid;
pub mod flip_normals;
pub mod hitable;
pub mod hitable_list;
mod human;
pub mod kdtree;
pub mod material;
pub mod moving_sphere;
pub mod noise;
pub mod ray;
pub mod rect;
pub mod renderer;
pub mod rotate;
pub mod scenes;
pub mod sphere;
pub mod texture;
pub mod translate;
pub mod vec3;
extern crate image;
#[macro_use]
extern crate log;
extern crate num_cpus;
extern crate rand;
#[macro_use]
extern crate structopt;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;
#[macro_use]
#[cfg(feature = "prom")]
extern crate prometheus;