From afaa3af501ebfa48f8f0f5836126e52767cc7d3d Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Tue, 9 Jul 2013 16:44:15 +1000 Subject: [PATCH] Re-export FrustumPoints from world module --- src/world/world.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/world.rs b/src/world/world.rs index 2a10437..590ae68 100644 --- a/src/world/world.rs +++ b/src/world/world.rs @@ -13,8 +13,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -pub use self::frustum::Frustum; -pub use self::projection::{Projection, Ortho, Perspective, PerspectiveFOV}; +pub use self::frustum::{Frustum, FrustumPoints}; +pub use self::projection::{Projection, Perspective, PerspectiveFOV, Ortho}; pub mod frustum; pub mod projection;