aboutsummaryrefslogtreecommitdiff
path: root/src/camera/mod.rs
blob: 1391cea65c7096a8741fd3e13cb4d331de1320e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;
pub use film::Film;