Skip to content
Snippets Groups Projects
Commit df683b0e authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fixed ori matrix in math::Helpers::Pose(position)

parent 8115f075
No related branches found
No related tags found
No related merge requests found
......@@ -207,7 +207,7 @@ namespace math
template <typename PosDerived>
Eigen::Matrix4f Helpers::Pose(const Eigen::MatrixBase<PosDerived>& pos)
{
return Pose(pos, Eigen::Matrix3f::Zero());
return Pose(pos, Eigen::Matrix3f::Identity());
}
......
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