Skip to content
Snippets Groups Projects
Commit 96a49a8e authored by Fabian Reister's avatar Fabian Reister
Browse files

ice conversions for Eigen::Isometry3f

parent 8fbee898
No related branches found
No related tags found
No related merge requests found
...@@ -432,3 +432,8 @@ armarx::PosePtr armarx::toIce(const Eigen::Matrix4f& pose) ...@@ -432,3 +432,8 @@ armarx::PosePtr armarx::toIce(const Eigen::Matrix4f& pose)
{ {
return new Pose(pose); return new Pose(pose);
} }
armarx::PosePtr armarx::toIce(const Eigen::Isometry3f& pose)
{
return armarx::toIce(pose.matrix());
}
...@@ -289,6 +289,7 @@ namespace armarx ...@@ -289,6 +289,7 @@ namespace armarx
QuaternionPtr toIce(const Eigen::Matrix3f& rotation); QuaternionPtr toIce(const Eigen::Matrix3f& rotation);
QuaternionPtr toIce(const Eigen::Quaternionf& quaternion); QuaternionPtr toIce(const Eigen::Quaternionf& quaternion);
PosePtr toIce(const Eigen::Matrix4f& pose); PosePtr toIce(const Eigen::Matrix4f& pose);
PosePtr toIce(const Eigen::Isometry3f& pose);
} }
......
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