aboutsummaryrefslogtreecommitdiff
path: root/src/scene/shapes/sphere.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/scene/shapes/sphere.rs')
-rw-r--r--src/scene/shapes/sphere.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scene/shapes/sphere.rs b/src/scene/shapes/sphere.rs
index acca2b7..3f07b9e 100644
--- a/src/scene/shapes/sphere.rs
+++ b/src/scene/shapes/sphere.rs
@@ -2,8 +2,7 @@
//!
//! Spheres are relatively easy to calculate intersections between
use crate::Float;
-use crate::core::{Ray, Vector3f};
-use crate::scene::{Hittable, Intersection};
+use crate::core::{Ray, Vector3f, Hittable, Intersection};
pub struct Sphere {
radius: Float,