From 0d5e6bd9363d5ed5c4f28174819fc0f5fd9aa586 Mon Sep 17 00:00:00 2001 From: Julian T Date: Sat, 6 Feb 2021 17:27:42 +0100 Subject: Reorganized scene module, and fixed bug in sphere intersect --- src/scene/shapes/mod.rs | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/scene/shapes/mod.rs') diff --git a/src/scene/shapes/mod.rs b/src/scene/shapes/mod.rs index 9b6bdfd..d7583ad 100644 --- a/src/scene/shapes/mod.rs +++ b/src/scene/shapes/mod.rs @@ -2,15 +2,3 @@ mod sphere; pub use sphere::Sphere; -use crate::core::{Vector3f, Ray}; -use crate::Float; - -pub trait Shape { - fn intersect(&self, ray: &Ray) -> Option; - - /// Calculates the normal at point - /// - /// Point is assumed to be on the circle. - /// The resulting vector is assumed to be normalized. - fn norm_at(&self, point: &Vector3f) -> Vector3f; -} -- cgit v1.2.3