blob: 41f959880e31340e570fb0b67fd974175a4b9cb6 (
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;
|