aboutsummaryrefslogtreecommitdiff
path: root/src/camera/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/camera/mod.rs')
-rw-r--r--src/camera/mod.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/camera/mod.rs b/src/camera/mod.rs
deleted file mode 100644
index 999b5b5..0000000
--- a/src/camera/mod.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-//! 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;