aboutsummaryrefslogtreecommitdiff
path: root/src/camera/mod.rs
blob: 4865a36821945e9e4e30d31050c0464c539dc396 (plain)
1
2
3
4
5
6
7
8
9
10
//! 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;