From ffcfa0009c5be41f61e006a392c47c00b9257140 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Fri, 10 Jan 2020 16:20:19 -0500 Subject: [PATCH] Move import that was only used in tests into test module --- src/raycasting/axis_aligned_bounding_box.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/raycasting/axis_aligned_bounding_box.rs b/src/raycasting/axis_aligned_bounding_box.rs index 4d4c6a8..496cc2b 100644 --- a/src/raycasting/axis_aligned_bounding_box.rs +++ b/src/raycasting/axis_aligned_bounding_box.rs @@ -1,4 +1,4 @@ -use nalgebra::{convert, Point3, RealField, Vector3}; +use nalgebra::{convert, Point3, RealField}; use super::{IntersectP, Ray}; @@ -215,6 +215,9 @@ mod tests { mod bounding_box { use super::*; + + use nalgebra::Vector3; + use quickcheck::TestResult; use quickcheck_macros::quickcheck;