We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80f4f53 commit 363dbf7Copy full SHA for 363dbf7
src/quaternion.hpp
@@ -45,11 +45,11 @@ namespace eigenpy
45
46
typedef typename QuaternionBase::Scalar Scalar;
47
typedef typename Quaternion::Coefficients Coefficients;
48
- typedef Eigen::Matrix<Scalar,3,1> Vector3;
49
- typedef Eigen::Matrix<Scalar,4,1> Vector4;
50
- typedef Eigen::Matrix<Scalar,3,3> Matrix3;
+ typedef typename QuaternionBase::Vector3 Vector3;
+ typedef typename Eigen::Matrix<Scalar,4,1> Vector4;
+ typedef typename QuaternionBase::Matrix3 Matrix3;
51
52
- typedef Eigen::AngleAxis<Scalar> AngleAxis;
+ typedef typename QuaternionBase::AngleAxisType AngleAxis;
53
54
public:
55
0 commit comments