2013-10-06 22:54:09 +08:00
|
|
|
//! Mathematical traits.
|
|
|
|
|
|
|
|
pub use self::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Rotate,
|
|
|
|
Rotation, RotationMatrix, RotationWithTranslation, ToHomogeneous,
|
|
|
|
Transform, Transformation, Translate, Translation, UniformSphereSample};
|
|
|
|
|
2014-02-18 19:13:40 +08:00
|
|
|
pub use self::structure::{FloatVec, FloatVecExt, Basis, Cast, Col, Dim, Indexable,
|
2014-05-10 05:05:23 +08:00
|
|
|
Iterable, IterableMut, Mat, Row, AnyVec, VecExt,
|
2014-05-12 01:46:04 +08:00
|
|
|
ColSlice, RowSlice, Eye};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-08-12 01:54:13 +08:00
|
|
|
pub use self::operations::{Absolute, ApproxEq, Cov, Det, Inv, LMul, Mean, Outer, PartialOrd, RMul,
|
2014-07-13 17:35:14 +08:00
|
|
|
ScalarAdd, ScalarSub, ScalarMul, ScalarDiv, Transpose};
|
2014-04-13 16:24:17 +08:00
|
|
|
pub use self::operations::{PartialOrdering, PartialLess, PartialEqual, PartialGreater, NotComparable};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
|
|
pub mod geometry;
|
|
|
|
pub mod structure;
|
|
|
|
pub mod operations;
|