blob: 999b5b55de304fa688215156b541920658366656 (
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;
mod camera;
pub use camera::{Camera, CameraSettings};
pub use film::Film;
|