Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
c303796b
Commit
c303796b
authored
6 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Fixed accumulating rounding errors in setGlobalPoseForRobotNode()
parent
9ac24104
No related branches found
Branches containing commit
Tags
v2.3.48
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
VirtualRobot/Robot.cpp
+31
-5
31 additions, 5 deletions
VirtualRobot/Robot.cpp
VirtualRobot/Robot.h
+7
-2
7 additions, 2 deletions
VirtualRobot/Robot.h
with
38 additions
and
7 deletions
VirtualRobot/Robot.cpp
+
31
−
5
View file @
c303796b
...
...
@@ -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
t
f
=
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
)
...
...
This diff is collapsed.
Click to expand it.
VirtualRobot/Robot.h
+
7
−
2
View file @
c303796b
...
...
@@ -198,15 +198,20 @@ namespace VirtualRobot
int
getNumFaces
(
bool
collisionModel
=
false
)
override
;
/*!
Set the global pos
ition
of this robot
Set the global pos
e
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 pos
ition
globalPoseNode
Set the global pose of this robot so that the RobotNode node is at pos
e
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;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment