2013-10-06 22:54:09 +08:00
|
|
|
//! Mathematical traits.
|
|
|
|
|
2014-10-10 17:23:52 +08:00
|
|
|
pub use self::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Orig,
|
|
|
|
Projector, Rotate, Rotation, RotationMatrix, RotationWithTranslation,
|
|
|
|
ToHomogeneous, Transform, Transformation, Translate, Translation,
|
|
|
|
UniformSphereSample};
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-10-10 17:23:52 +08:00
|
|
|
pub use self::structure::{FloatVec, FloatVecExt, FloatPnt, FloatPntExt, Basis, Cast, Col, Dim,
|
|
|
|
Indexable, Iterable, IterableMut, Mat, Row, AnyVec, VecExt, AnyPnt,
|
|
|
|
PntExt, PntAsVec, VecAsPnt, ColSlice, RowSlice, Diag, 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;
|