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;