Reexport `DMat` in mat.rs and `DVec` in vec.rs.

This commit is contained in:
Sébastien Crozet 2013-09-07 08:23:09 +02:00
parent 0be1132452
commit a00860df41
2 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,9 @@ pub use traits::transpose::{Transpose};
pub use traits::homogeneous::{ToHomogeneous, FromHomogeneous};
pub use traits::row::Row;
// structs
pub use dmat::DMat;
mod mat_macros;
/// Special identity matrix. All its operation are no-ops.

View File

@ -21,6 +21,9 @@ pub use traits::scalar_op::{ScalarAdd, ScalarSub};
pub use traits::cross::{Cross, CrossMatrix};
pub use traits::outer::Outer;
// structs
pub use dvec::DVec;
mod vec_macros;
/// Vector of dimension 0.