forked from M-Labs/nalgebra
d8dfedbf99
Version of rustc: 0.13.0-nightly (336349c93 2014-11-17 20:37:19 +0000).
19 lines
943 B
Rust
19 lines
943 B
Rust
//! Mathematical traits.
|
|
|
|
pub use traits::geometry::{AbsoluteRotate, Cross, CrossMatrix, Dot, FromHomogeneous, Norm, Orig,
|
|
Rotate, Rotation, RotationMatrix, RotationWithTranslation, ToHomogeneous,
|
|
Transform, Transformation, Translate, Translation, UniformSphereSample};
|
|
|
|
pub use traits::structure::{FloatVec, FloatPnt, Basis, Cast, Col, Dim, Indexable, Iterable,
|
|
IterableMut, Mat, SquareMat, Row, NumVec, NumPnt, PntAsVec, VecAsPnt,
|
|
ColSlice, RowSlice, Diag, Eye, Shape, BaseFloat, BaseNum, Zero, One,
|
|
Bounded};
|
|
|
|
pub use traits::operations::{Absolute, ApproxEq, Axpy, Cov, Det, Inv, LMul, Mean, Outer, POrd,
|
|
RMul, ScalarAdd, ScalarSub, ScalarMul, ScalarDiv, Transpose, EigenQR};
|
|
pub use traits::operations::POrdering;
|
|
|
|
pub mod geometry;
|
|
pub mod structure;
|
|
pub mod operations;
|