Skip to content
Snippets Groups Projects
Commit 341bdf01 authored by Erik Strand's avatar Erik Strand
Browse files

Add matrix types

parent 378481e7
Branches
No related tags found
No related merge requests found
......@@ -17,6 +17,18 @@ using Vector3 = Eigen::Matrix<T, 3, 1>;
template <typename T>
using VectorX = Eigen::Matrix<T, Eigen::Dynamic, 1>;
//--------------------------------------------------------------------------------------------------
template <typename T>
using Matrix2 = Eigen::Matrix<T, 2, 2>;
//--------------------------------------------------------------------------------------------------
template <typename T>
using Matrix3 = Eigen::Matrix<T, 3, 3>;
//--------------------------------------------------------------------------------------------------
template <typename T>
using MatrixX = Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic>;
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment