Skip to content
Snippets Groups Projects
Verified Commit 3f3a0caf authored by Justin Carpentier's avatar Justin Carpentier
Browse files

math: do not use double

parent 62d6e123
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@ public:
template<typename Derived>
inline Quaternion3f fromAxisAngle(const Eigen::MatrixBase<Derived>& axis, FCL_REAL angle)
{
return Quaternion3f (Eigen::AngleAxis<double>(angle, axis));
return Quaternion3f (Eigen::AngleAxis<FCL_REAL>(angle, axis));
}
}
......
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