From cd5cdeacbf3eb6ded73f7e353ffbdcbab03c2f03 Mon Sep 17 00:00:00 2001 From: Erik Hedvall Date: Mon, 18 Aug 2014 15:05:25 +0200 Subject: [PATCH] Removed duplicate Aabb3 re-export --- src/cgmath.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cgmath.rs b/src/cgmath.rs index eeac906..b02bca2 100644 --- a/src/cgmath.rs +++ b/src/cgmath.rs @@ -67,7 +67,7 @@ pub use transform::{Decomposed, AffineMatrix3}; pub use projection::{perspective, frustum, ortho}; pub use projection::{Projection, PerspectiveFov, Perspective, Ortho}; -pub use aabb::{Aabb, Aabb2, Aabb3, Aabb3}; +pub use aabb::{Aabb, Aabb2, Aabb3}; pub use cylinder::Cylinder; pub use frustum::{Frustum, FrustumPoints}; pub use intersect::Intersect;