becb77843e
Version of rustc: 0.10-pre (b0ce960 2014-02-17 22:16:51 -0800) This replaces uses of the `Orderable` trait by a `PartialOrd` trait: the `min` and `max` methods are replaced by `inf` and `sup` methods. Vectors do not implement the `Ord` trait any more. Fix #4
17 lines
765 B
Rust
17 lines
765 B
Rust
//! Mathematical traits.
|
|
|
|
pub use self::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Rotate,
|
|
Rotation, RotationMatrix, RotationWithTranslation, ToHomogeneous,
|
|
Transform, Transformation, Translate, Translation, UniformSphereSample};
|
|
|
|
pub use self::structure::{FloatVec, FloatVecExt, Basis, Cast, Col, Dim, Indexable,
|
|
Iterable, IterableMut, Mat, Row, Vec, VecExt};
|
|
|
|
pub use self::operations::{Absolute, ApproxEq, Cov, Inv, LMul, Mean, Outer, PartialOrd, RMul,
|
|
ScalarAdd, ScalarSub, Transpose};
|
|
pub use self::operations::{PartialOrdering, Less, Equal, Greater, NotComparable};
|
|
|
|
pub mod geometry;
|
|
pub mod structure;
|
|
pub mod operations;
|