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

Fixed accumulating rounding errors in setGlobalPoseForRobotNode()

parent 9ac24104
No related branches found
Tags v2.3.48
No related merge requests found
......@@ -5,6 +5,7 @@
#include "VirtualRobotException.h"
#include "CollisionDetection/CollisionChecker.h"
#include "EndEffector/EndEffector.h"
#include "math/Helpers.h"
namespace VirtualRobot
......@@ -825,18 +826,43 @@ namespace VirtualRobot
return result;
}
void Robot::setGlobalPoseForRobotNode(const RobotNodePtr& node, const Eigen::Matrix4f& globalPoseNode)
void Robot::setGlobalPoseForRobotNode(
const RobotNodePtr& node, const Eigen::Matrix4f& globalPoseNode)
{
THROW_VR_EXCEPTION_IF(!node, "NULL node");
if (math::Helpers::Orientation(globalPoseNode).isIdentity())
{
// set position to avoid accumulating rounding errors when using rotation
setGlobalPositionForRobotNode(node, math::Helpers::Position(globalPoseNode));
return;
}
// get transformation from current to wanted tcp pose
Eigen::Matrix4f t = globalPoseNode * node->getGlobalPose().inverse();
Eigen::Matrix4f tf = globalPoseNode * math::Helpers::InvertedPose(node->getGlobalPose());
// apply transformation to current global pose of robot
t = t * getGlobalPose();
tf = tf * getGlobalPose();
// re-orthogonolize to keep it a valid transformation matrix
math::Helpers::Orientation(tf) = math::Helpers::Orthogonalize(math::Helpers::Orientation(tf));
// set t
setGlobalPose(t);
setGlobalPose(tf);
}
void Robot::setGlobalPositionForRobotNode(
const RobotNodePtr& node, const Eigen::Vector3f& globalPositionNode)
{
THROW_VR_EXCEPTION_IF(!node, "NULL node");
// get translation from current to wanted tcp pose
const Eigen::Vector3f translation = globalPositionNode - node->getGlobalPosition();
// apply translation to current global position of robot
const Eigen::Vector3f robotPosition = getGlobalPosition() + translation;
setGlobalPose(math::Helpers::Pose(robotPosition));
}
VirtualRobot::RobotPtr Robot::clone(const std::string& name, CollisionCheckerPtr collisionChecker, float scaling)
......
......@@ -198,15 +198,20 @@ namespace VirtualRobot
int getNumFaces(bool collisionModel = false) override;
/*!
Set the global position of this robot
Set the global pose of this robot
*/
virtual void setGlobalPose(const Eigen::Matrix4f& globalPose, bool applyValues) = 0;
void setGlobalPose(const Eigen::Matrix4f& globalPose) override;
/*!
Set the global pose of this robot so that the RobotNode node is at position globalPoseNode
Set the global pose of this robot so that the RobotNode node is at pose globalPoseNode.
*/
virtual void setGlobalPoseForRobotNode(const RobotNodePtr& node, const Eigen::Matrix4f& globalPoseNode);
/*!
Set the global position of this robot so that the RobotNode node is at position globalPoseNode
*/
virtual void setGlobalPositionForRobotNode(const RobotNodePtr& node, const Eigen::Vector3f& globalPositionNode);
//virtual Eigen::Matrix4f getGlobalPose() = 0;
......
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