rpt 0.2.1

Physically-based path tracing renderer written in Rust
Documentation
//! `rpt` is a path tracer in Rust.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub use glm;
pub use image;

pub use buffer::*;
pub use camera::*;
pub use color::*;
pub use environment::*;
pub use io::*;
pub use kdtree::*;
pub use light::*;
pub use material::*;
pub use object::*;
pub use ode::*;
pub use renderer::*;
pub use scene::*;
pub use shape::*;

mod buffer;
mod camera;
mod color;
mod environment;
mod io;
mod kdtree;
mod light;
mod material;
mod object;
mod ode;
mod renderer;
mod scene;
mod shape;