Reexport `DMat` in mat.rs and `DVec` in vec.rs.
This commit is contained in:
parent
0be1132452
commit
a00860df41
|
@ -22,6 +22,9 @@ pub use traits::transpose::{Transpose};
|
||||||
pub use traits::homogeneous::{ToHomogeneous, FromHomogeneous};
|
pub use traits::homogeneous::{ToHomogeneous, FromHomogeneous};
|
||||||
pub use traits::row::Row;
|
pub use traits::row::Row;
|
||||||
|
|
||||||
|
// structs
|
||||||
|
pub use dmat::DMat;
|
||||||
|
|
||||||
mod mat_macros;
|
mod mat_macros;
|
||||||
|
|
||||||
/// Special identity matrix. All its operation are no-ops.
|
/// Special identity matrix. All its operation are no-ops.
|
||||||
|
|
|
@ -21,6 +21,9 @@ pub use traits::scalar_op::{ScalarAdd, ScalarSub};
|
||||||
pub use traits::cross::{Cross, CrossMatrix};
|
pub use traits::cross::{Cross, CrossMatrix};
|
||||||
pub use traits::outer::Outer;
|
pub use traits::outer::Outer;
|
||||||
|
|
||||||
|
// structs
|
||||||
|
pub use dvec::DVec;
|
||||||
|
|
||||||
mod vec_macros;
|
mod vec_macros;
|
||||||
|
|
||||||
/// Vector of dimension 0.
|
/// Vector of dimension 0.
|
||||||
|
|
Loading…
Reference in New Issue