From 2d8a3927f4a52529f1f4e836e1220f351eb77b9e Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Wed, 21 Jul 2021 14:40:27 -0700 Subject: [PATCH] shapes: lint cleanup. --- rtchallenge/src/shapes.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/rtchallenge/src/shapes.rs b/rtchallenge/src/shapes.rs index 56d42db..30eb8e3 100644 --- a/rtchallenge/src/shapes.rs +++ b/rtchallenge/src/shapes.rs @@ -1,10 +1,6 @@ use crate::{ - intersections::{Intersection, Intersections}, - materials::Material, - matrices::Matrix4x4, - rays::Ray, - tuples::{dot, Tuple}, - EPSILON, + intersections::Intersections, materials::Material, matrices::Matrix4x4, rays::Ray, + tuples::Tuple, }; #[derive(Debug, PartialEq, Clone)]