Skip to content
Snippets Groups Projects
Commit 24ea5580 authored by Alexis Girault's avatar Alexis Girault
Browse files

BUG: resolve Eigen alignement issues with Quat

parent 708480fe
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,8 @@ using VecNf = Eigen::VectorXf;
using VecNd = Eigen::VectorXd;
// Quaternion
using Quatf = Eigen::Quaternionf;
using Quatd = Eigen::Quaterniond;
using Quatf = Eigen::Quaternion<float,Eigen::DontAlign>;
using Quatd = Eigen::Quaternion<double,Eigen::DontAlign>;
// Angle-Axis
using Rotf = Eigen::AngleAxisf;
......
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