diff options
Diffstat (limited to 'src/world/shapes/mod.rs')
-rw-r--r-- | src/world/shapes/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/world/shapes/mod.rs b/src/world/shapes/mod.rs index a11df5d..6e4b2ce 100644 --- a/src/world/shapes/mod.rs +++ b/src/world/shapes/mod.rs @@ -1,6 +1,8 @@ mod sphere; +mod rectangle; pub use sphere::Sphere; +pub use rectangle::{Rect, Plane}; use crate::world::{Hittable, Intersection}; use crate::core::{Bound3f, Ray}; |