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

math: fix template name

parent 3f3a0caf
No related branches found
No related tags found
No related merge requests found
......@@ -140,8 +140,9 @@ public:
}
/// @brief set transform from rotation and translation
template <typename Matrixx3Like, typename Vector3Like>
inline void setTransform(const Eigen::MatrixBase<Matrixx3Like>& R_, const Eigen::MatrixBase<Vector3Like>& T_)
template <typename Matrix3Like, typename Vector3Like>
inline void setTransform(const Eigen::MatrixBase<Matrix3Like>& R_,
const Eigen::MatrixBase<Vector3Like>& T_)
{
R.noalias() = R_;
T.noalias() = T_;
......
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