Skip to content
Snippets Groups Projects
Commit 4d74e126 authored by jvallve's avatar jvallve
Browse files

changed typedefs of Eigen::Matrix to Rowmajor. TODO: change name, it collides...

changed typedefs of Eigen::Matrix to Rowmajor. TODO: change name, it collides with same wolf typedefs
parent 753f402d
No related branches found
No related tags found
No related merge requests found
......@@ -20,10 +20,10 @@ namespace laserscanutils
namespace Eigen
{
// 1. Vectors and Matrices
typedef Matrix<laserscanutils::ScalarT, 2, 2> Matrix2s; ///< 2x2 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 3, 3> Matrix3s; ///< 3x3 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 4, 4> Matrix4s; ///< 4x4 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, Dynamic, Dynamic> MatrixXs; ///< variable size matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 2, 2, Eigen::RowMajor> Matrix2s; ///< 2x2 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 3, 3, Eigen::RowMajor> Matrix3s; ///< 3x3 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 4, 4, Eigen::RowMajor> Matrix4s; ///< 4x4 matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, Dynamic, Dynamic, Eigen::RowMajor> MatrixXs; ///< variable size matrix of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 1, 1> Vector1s; ///< 1-vector of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 2, 1> Vector2s; ///< 2-vector of real scalar_t type
typedef Matrix<laserscanutils::ScalarT, 3, 1> Vector3s; ///< 3-vector of real scalar_t type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment