From 3ef8f4d918406eec6bdc29e0ebd883fabfac9b2e Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 5 Aug 2021 15:44:40 +0200 Subject: Add picture for c5505ab84820248c6dba35fc06aef9e0ced183de --- src/world/shapes/mod.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/world/shapes/mod.rs (limited to 'src/world/shapes/mod.rs') diff --git a/src/world/shapes/mod.rs b/src/world/shapes/mod.rs deleted file mode 100644 index a11df5d..0000000 --- a/src/world/shapes/mod.rs +++ /dev/null @@ -1,30 +0,0 @@ -mod sphere; - -pub use sphere::Sphere; - -use crate::world::{Hittable, Intersection}; -use crate::core::{Bound3f, Ray}; - -pub enum Shape { - Sphere(Sphere), -} - -impl Hittable for Shape { - fn intersect(&self, ray: &Ray) -> Option { - match self { - Self::Sphere(sph) => sph.intersect(ray) - } - } - - fn bounding_box(&self) -> Bound3f { - match self { - Self::Sphere(sph) => sph.bounding_box() - } - } -} - -impl From for Shape { - fn from(s: Sphere) -> Self { - Self::Sphere(s) - } -} -- cgit v1.2.3