Fix exports

This commit is contained in:
Brendan Zabarauskas 2012-12-16 09:38:55 +10:00
parent e939b5eb95
commit cfc1107d00
2 changed files with 6 additions and 6 deletions

View file

@ -8,9 +8,9 @@ pub mod mat2;
pub mod mat3;
pub mod mat4;
pub use mat2::Mat2;
pub use mat3::Mat3;
pub use mat4::Mat4;
pub use self::mat2::Mat2;
pub use self::mat3::Mat3;
pub use self::mat4::Mat4;
/**
* The base square matrix trait

View file

@ -10,9 +10,9 @@ pub mod vec2;
pub mod vec3;
pub mod vec4;
pub use vec2::Vec2;
pub use vec3::Vec3;
pub use vec4::Vec4;
pub use self::vec2::Vec2;
pub use self::vec3::Vec3;
pub use self::vec4::Vec4;
/**