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
44d21fc1
Commit
44d21fc1
authored
6 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Refactored element copying
parent
424a88a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
VirtualRobot/XML/mujoco/MasslessBodySanitizer.cpp
+26
-30
26 additions, 30 deletions
VirtualRobot/XML/mujoco/MasslessBodySanitizer.cpp
with
26 additions
and
30 deletions
VirtualRobot/XML/mujoco/MasslessBodySanitizer.cpp
+
26
−
30
View file @
44d21fc1
...
...
@@ -67,39 +67,41 @@ void MasslessBodySanitizer::sanitizeRecursion(mjcf::Body body)
}
}
template
<
class
ChildT
>
static
void
updatePos
(
ChildT
child
,
const
Eigen
::
Matrix4f
&
accChildPose
)
static
void
updatePos
(
AnyElement
element
,
const
Eigen
::
Matrix4f
&
accChildPose
)
{
child
.
pos
=
math
::
Helpers
::
TransformPosition
(
accChildPose
,
child
.
pos
);
const
Eigen
::
Vector3f
pos
=
element
.
getAttribute
<
Eigen
::
Vector3f
>
(
"pos"
,
Eigen
::
Vector3f
::
Zero
());
element
.
setAttribute
(
"pos"
,
math
::
Helpers
::
TransformPosition
(
accChildPose
,
pos
));
}
template
<
class
ChildT
>
static
void
updateOri
(
ChildT
child
,
const
Eigen
::
Matrix3f
&
accChildOri
)
static
void
updateOri
(
AnyElement
element
,
const
Eigen
::
Matrix3f
&
accChildOri
)
{
child
.
quat
=
Eigen
::
Quaternionf
(
accChildOri
*
child
.
quat
.
get
());
}
template
<
>
void
updateOri
<
Joint
>
(
Joint
child
,
const
Eigen
::
Matrix3f
&
accChildOri
)
{
child
.
axis
=
accChildOri
*
child
.
axis
.
get
();
}
template
<
>
void
updateOri
<
Light
>
(
Light
child
,
const
Eigen
::
Matrix3f
&
accChildOri
)
{
child
.
dir
=
accChildOri
*
child
.
dir
.
get
();
if
(
element
.
is
<
Joint
>
())
{
Joint
joint
=
element
.
as
<
Joint
>
();
joint
.
axis
=
accChildOri
*
joint
.
axis
.
get
();
}
else
if
(
element
.
is
<
Light
>
())
{
Light
light
=
element
.
as
<
Light
>
();
light
.
dir
=
accChildOri
*
light
.
dir
.
get
();
}
else
{
const
Eigen
::
Quaternionf
quat
=
element
.
getAttribute
<
Eigen
::
Quaternionf
>
(
"quat"
,
Eigen
::
Quaternionf
::
Identity
());
element
.
setAttribute
(
"quat"
,
Eigen
::
Quaternionf
(
accChildOri
*
quat
));
}
}
template
<
class
ChildT
>
void
doo
(
Body
body
,
Body
child
,
const
Eigen
::
Matrix4f
&
childPose
)
void
copyChildren
(
Body
body
,
Body
child
,
const
Eigen
::
Matrix4f
&
childPose
)
{
// merge childBody into body => move all its elements here
// while doing this, apply accChildPose to elements
for
(
Element
<
ChildT
>
grandChild
=
child
.
firstChild
<
ChildT
>
();
grandChild
;
grandChild
=
grandChild
.
template
nextSiblingElement
<
ChildT
>())
for
(
Any
Element
grandChild
=
child
.
firstChild
<
AnyElement
>
();
grandChild
;
grandChild
=
grandChild
.
template
nextSiblingElement
<
AnyElement
>())
{
// clone grandchild
ChildT
elem
=
grandChild
.
deepClone
();
AnyElement
elem
=
grandChild
.
deepClone
();
if
(
elem
)
{
...
...
@@ -132,20 +134,14 @@ void MasslessBodySanitizer::mergeBodies(Body body, Body childBody, Eigen::Matrix
// merge childBody into body => move all its elements here
// while doing this, apply accChildPose to elements
doo
<
Joint
>
(
body
,
childBody
,
accChildPose
);
doo
<
Body
>
(
body
,
childBody
,
accChildPose
);
doo
<
Inertial
>
(
body
,
childBody
,
accChildPose
);
doo
<
Geom
>
(
body
,
childBody
,
accChildPose
);
doo
<
Site
>
(
body
,
childBody
,
accChildPose
);
doo
<
Camera
>
(
body
,
childBody
,
accChildPose
);
doo
<
Light
>
(
body
,
childBody
,
accChildPose
);
copyChildren
(
body
,
childBody
,
accChildPose
);
// update body name
MergedBodySet
&
bodySet
=
getMergedBodySetWith
(
body
.
name
);
bodySet
.
addBody
(
childBody
.
name
);
body
.
name
=
bodySet
.
getMergedBodyName
();
std
::
cout
<<
"
\t
(new name: "
<<
bodySet
.
getMergedBodyName
()
<<
")"
<<
std
::
endl
;
std
::
cout
<<
t
<<
"
\t
(new name:
'
"
<<
bodySet
.
getMergedBodyName
()
<<
"
'
)"
<<
std
::
endl
;
// delete child
body
.
deleteChild
(
childBody
);
...
...
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