From 3f78cacdd93036dbd51bae77d5d8e5430a0bc75f Mon Sep 17 00:00:00 2001 From: Julian T Date: Sat, 6 Mar 2021 16:15:26 +0100 Subject: Several changes to bounding boxes For instance removed support for shapes without a bounding box, such as planes --- src/world/container.rs | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/world/container.rs (limited to 'src/world/container.rs') diff --git a/src/world/container.rs b/src/world/container.rs deleted file mode 100644 index 6f8c182..0000000 --- a/src/world/container.rs +++ /dev/null @@ -1,43 +0,0 @@ -use super::{Hittable, Intersection}; -use crate::core::Ray; - -pub struct HittableList { - elems: Vec>, -} - -impl HittableList { - pub fn new() -> Self { - Self::default() - } - - pub fn add(&mut self, h: Box) { - self.elems.push(h); - } -} - -impl Hittable for HittableList { - fn intersect(&self, ray: &Ray) -> Option { - let mut min: Option = None; - - for e in self.elems.iter() { - if let Some(i) = e.intersect(&ray) { - match min { - // Do nothing if distance is bigger than min - Some(ref min_i) if min_i.t < i.t => {}, - // If no existing min or closer than - _ => min = Some(i), - } - } - } - - min - } -} - -impl Default for HittableList { - fn default() -> Self { - Self { - elems: Vec::new(), - } - } -} -- cgit v1.2.3