diff --git a/src/mat.rs b/src/mat.rs index 25800349..75e786d0 100644 --- a/src/mat.rs +++ b/src/mat.rs @@ -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. diff --git a/src/vec.rs b/src/vec.rs index 4441e02f..386e4f81 100644 --- a/src/vec.rs +++ b/src/vec.rs @@ -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.