diff --git a/src/lib.rs b/src/lib.rs index 736a952e..d0374b66 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -101,7 +101,6 @@ Feel free to add your project to this list if you happen to use **nalgebra**! #![feature(macro_rules)] #![doc(html_root_url = "http://nalgebra.org/doc")] -extern crate std; extern crate rand; extern crate serialize; diff --git a/src/na.rs b/src/na.rs index 2979fde3..ec4da3bc 100644 --- a/src/na.rs +++ b/src/na.rs @@ -38,7 +38,7 @@ pub use traits::{ Rotate, Rotation, RotationMatrix, RotationWithTranslation, Row, ScalarAdd, ScalarSub, - ScalarMul, ScalarAdd, + ScalarMul, ScalarDiv, ToHomogeneous, Transform, Transformation, Translate, Translation, @@ -82,7 +82,7 @@ pub use linalg::{ /// * `Mat4DivRhs` will allow the overload of the `/` operator between the implementor type and /// `Mat4`. The `Mat4` being the first argument of the division. pub mod overload { - pub use structs::{Vec1SubRhs, Vec2MulRhs, Vec3MulRhs, Vec4MulRhs, Vec5MulRhs, Vec6MulRhs, + pub use structs::{Vec1MulRhs, Vec2MulRhs, Vec3MulRhs, Vec4MulRhs, Vec5MulRhs, Vec6MulRhs, Vec1DivRhs, Vec2DivRhs, Vec3DivRhs, Vec4DivRhs, Vec5DivRhs, Vec6DivRhs, Vec1AddRhs, Vec2AddRhs, Vec3AddRhs, Vec4AddRhs, Vec5AddRhs, Vec6AddRhs, Vec1SubRhs, Vec2SubRhs, Vec3SubRhs, Vec4SubRhs, Vec5SubRhs, Vec6SubRhs,