From 0634ac5be5eb94cb149df271990f91f751734e02 Mon Sep 17 00:00:00 2001 From: ishanjain28 Date: Tue, 25 Jun 2019 23:30:40 +0530 Subject: [PATCH] Removed println statment --- ria-weekend/src/shapes/sphere.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ria-weekend/src/shapes/sphere.rs b/ria-weekend/src/shapes/sphere.rs index 5d57fb9..96609d2 100644 --- a/ria-weekend/src/shapes/sphere.rs +++ b/ria-weekend/src/shapes/sphere.rs @@ -17,7 +17,6 @@ impl Sphere { impl Hitable for Sphere { fn hit(&self, ray: &Ray, t_min: f32, t_max: f32, hit_rec: &mut HitRecord) -> bool { - println!("t_max: {}", t_max); let oc = ray.origin() - self.center; let a = ray.direction().dot(&ray.direction()); let b = oc.dot(&ray.direction());