EigenTypedef.h
Go to the documentation of this file.
1 /*
2  * Copyright 2012-2020 CNRS-UM LIRMM, CNRS-AIST JRL
3  */
4 
5 #pragma once
6 
7 #include <Eigen/Core>
8 
9 namespace Eigen
10 {
11 
12 template<typename T>
13 using Vector6 = Matrix<T, 6, 1>;
14 template<typename T>
15 using Matrix6 = Matrix<T, 6, 6>;
16 
17 template<typename T>
18 using Vector3 = Matrix<T, 3, 1>;
19 template<typename T>
20 using Matrix3 = Matrix<T, 3, 3>;
21 
24 
25 } // namespace Eigen
Eigen::Matrix3
Matrix< T, 3, 3 > Matrix3
Definition: EigenTypedef.h:20
Eigen
Definition: EigenTypedef.h:9
Eigen::Vector6d
Vector6< double > Vector6d
Definition: EigenTypedef.h:22
Eigen::Vector3
Matrix< T, 3, 1 > Vector3
Definition: EigenTypedef.h:18
Eigen::Matrix6d
Matrix6< double > Matrix6d
Definition: EigenTypedef.h:23
Eigen::Vector6
Matrix< T, 6, 1 > Vector6
Definition: EigenTypedef.h:13
Eigen::Matrix6
Matrix< T, 6, 6 > Matrix6
Definition: EigenTypedef.h:15