aboutsummaryrefslogtreecommitdiff
path: root/src/camera/mod.rs
blob: b7c982bbeb0bf7313658081efdae5664e44733cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Implements how light is captured on film and how rays are generated
//!
//! The Film module specifies how calculated spectrum values contribute to the final image.
//!
//! The Camera class generated rays that can be cast into the scene.
//! This requires converting the film coordinates into real coordinates

pub mod film;
//pub mod filter;
pub mod camera;

pub use camera::Camera;