diff --git a/rtiow/renderer/src/aabb.rs b/rtiow/renderer/src/aabb.rs index f03c164..20b7e83 100644 --- a/rtiow/renderer/src/aabb.rs +++ b/rtiow/renderer/src/aabb.rs @@ -75,7 +75,6 @@ impl AABB { pub fn hit(&self, r: Ray, t_min: f32, t_max: f32) -> bool { self.hit_simd(r, t_min, t_max) - //self.hit_naive(r, t_min, t_max) } pub fn hit_naive(&self, r: Ray, t_min: f32, t_max: f32) -> bool {