Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jrl-walkgen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Guilhem Saurel
jrl-walkgen
Commits
f1380e5d
Commit
f1380e5d
authored
10 years ago
by
Francois Keith
Browse files
Options
Downloads
Patches
Plain Diff
Remove useless IndexInVRML vector.
parent
37b7c727
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/MotionGeneration/ComAndFootRealizationByGeometry.cpp
+6
-30
6 additions, 30 deletions
src/MotionGeneration/ComAndFootRealizationByGeometry.cpp
src/MotionGeneration/ComAndFootRealizationByGeometry.hh
+0
-9
0 additions, 9 deletions
src/MotionGeneration/ComAndFootRealizationByGeometry.hh
with
6 additions
and
39 deletions
src/MotionGeneration/ComAndFootRealizationByGeometry.cpp
+
6
−
30
View file @
f1380e5d
...
@@ -108,13 +108,11 @@ RegisterMethods()
...
@@ -108,13 +108,11 @@ RegisterMethods()
void
ComAndFootRealizationByGeometry
::
void
ComAndFootRealizationByGeometry
::
InitializationMaps
(
std
::
vector
<
CjrlJoint
*>
&
FromRootToJoint
,
InitializationMaps
(
std
::
vector
<
CjrlJoint
*>
&
FromRootToJoint
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
int
>
&
IndexInVRML
,
std
::
vector
<
int
>
&
IndexinConfiguration
)
std
::
vector
<
int
>
&
IndexinConfiguration
)
{
{
if
(
FromRootToJoint
.
size
()
!=
0
)
if
(
FromRootToJoint
.
size
()
!=
0
)
{
{
ODEBUG
(
"Enter 6.0 "
<<
this
);
ODEBUG
(
"Enter 6.0 "
<<
this
);
IndexInVRML
.
resize
(
FromRootToJoint
.
size
());
IndexinConfiguration
.
resize
(
FromRootToJoint
.
size
());
IndexinConfiguration
.
resize
(
FromRootToJoint
.
size
());
ODEBUG
(
"Enter 6.1 "
);
ODEBUG
(
"Enter 6.1 "
);
...
@@ -123,15 +121,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
...
@@ -123,15 +121,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
// Here we assume that they are in a decending order.
// Here we assume that they are in a decending order.
for
(
unsigned
int
i
=
0
;
i
<
FromRootToJoint
.
size
();
i
++
)
for
(
unsigned
int
i
=
0
;
i
<
FromRootToJoint
.
size
();
i
++
)
{
{
for
(
unsigned
int
j
=
0
;
j
<
ActuatedJoints
.
size
();
j
++
)
{
if
(
FromRootToJoint
[
i
]
==
ActuatedJoints
[
j
])
{
IndexInVRML
[
lindex
]
=
j
;
break
;
}
}
IndexinConfiguration
[
lindex
]
=
FromRootToJoint
[
i
]
->
rankInConfiguration
();
IndexinConfiguration
[
lindex
]
=
FromRootToJoint
[
i
]
->
rankInConfiguration
();
lindex
++
;
lindex
++
;
}
}
...
@@ -141,7 +130,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
...
@@ -141,7 +130,6 @@ InitializationMaps(std::vector<CjrlJoint *> &FromRootToJoint,
void
ComAndFootRealizationByGeometry
::
void
ComAndFootRealizationByGeometry
::
InitializeMapsForAHand
(
CjrlHand
*
aHand
,
InitializeMapsForAHand
(
CjrlHand
*
aHand
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
vector
<
int
>
&
IndexesInVRML
,
vector
<
int
>
&
IndexesInConfiguration
,
vector
<
int
>
&
IndexesInConfiguration
,
CjrlJoint
*
&
associateShoulder
)
CjrlJoint
*
&
associateShoulder
)
{
{
...
@@ -181,7 +169,7 @@ InitializeMapsForAHand(CjrlHand * aHand,
...
@@ -181,7 +169,7 @@ InitializeMapsForAHand(CjrlHand * aHand,
}
}
associateShoulder
=
FromRootToJoint2
[
0
];
associateShoulder
=
FromRootToJoint2
[
0
];
InitializationMaps
(
FromRootToJoint2
,
ActuatedJoints
,
InitializationMaps
(
FromRootToJoint2
,
ActuatedJoints
,
IndexesInVRML
,
IndexesInConfiguration
);
IndexesInConfiguration
);
}
}
void
ComAndFootRealizationByGeometry
::
void
ComAndFootRealizationByGeometry
::
...
@@ -212,7 +200,7 @@ InitializeMapForChest(std::vector<CjrlJoint *> &ActuatedJoints)
...
@@ -212,7 +200,7 @@ InitializeMapForChest(std::vector<CjrlJoint *> &ActuatedJoints)
}
}
itJoint
++
;
itJoint
++
;
}
}
InitializationMaps
(
FromRootToJoint2
,
ActuatedJoints
,
m_
ChestIndexInVRML
,
m_
ChestIndexinConfiguration
);
InitializationMaps
(
FromRootToJoint2
,
ActuatedJoints
,
m_ChestIndexinConfiguration
);
}
}
void
ComAndFootRealizationByGeometry
::
void
ComAndFootRealizationByGeometry
::
...
@@ -286,23 +274,23 @@ Initialization()
...
@@ -286,23 +274,23 @@ Initialization()
// Remove the first element
// Remove the first element
FromRootToJoint
.
erase
(
FromRootToJoint
.
begin
());
FromRootToJoint
.
erase
(
FromRootToJoint
.
begin
());
InitializationMaps
(
FromRootToJoint
,
ActuatedJoints
,
InitializationMaps
(
FromRootToJoint
,
ActuatedJoints
,
m_RightLegIndexInVRML
,
m_RightLegIndexinConfiguration
);
m_RightLegIndexinConfiguration
);
FromRootToJoint
.
clear
();
FromRootToJoint
.
clear
();
FromRootToJoint
=
LeftFoot
->
associatedAnkle
()
->
jointsFromRootToThis
();
FromRootToJoint
=
LeftFoot
->
associatedAnkle
()
->
jointsFromRootToThis
();
FromRootToJoint
.
erase
(
FromRootToJoint
.
begin
());
FromRootToJoint
.
erase
(
FromRootToJoint
.
begin
());
InitializationMaps
(
FromRootToJoint
,
ActuatedJoints
,
InitializationMaps
(
FromRootToJoint
,
ActuatedJoints
,
m_LeftLegIndexInVRML
,
m_LeftLegIndexinConfiguration
);
m_LeftLegIndexinConfiguration
);
// Create maps for the left hand.
// Create maps for the left hand.
InitializeMapsForAHand
(
getHumanoidDynamicRobot
()
->
leftHand
(),
InitializeMapsForAHand
(
getHumanoidDynamicRobot
()
->
leftHand
(),
ActuatedJoints
,
ActuatedJoints
,
m_LeftArmIndexInVRML
,
m_LeftArmIndexinConfiguration
,
m_LeftArmIndexinConfiguration
,
m_LeftShoulder
);
m_LeftShoulder
);
// Create maps for the right hand.
// Create maps for the right hand.
InitializeMapsForAHand
(
getHumanoidDynamicRobot
()
->
rightHand
(),
InitializeMapsForAHand
(
getHumanoidDynamicRobot
()
->
rightHand
(),
ActuatedJoints
,
ActuatedJoints
,
m_RightArmIndexInVRML
,
m_RightArmIndexinConfiguration
,
m_RightArmIndexinConfiguration
,
m_RightShoulder
);
m_RightShoulder
);
FromRootToJoint
.
clear
();
FromRootToJoint
.
clear
();
...
@@ -311,12 +299,6 @@ Initialization()
...
@@ -311,12 +299,6 @@ Initialization()
ODEBUG
(
"RightLegIndex: "
ODEBUG
(
"RightLegIndex: "
<<
m_RightLegIndexInVRML
[
0
]
<<
" "
<<
m_RightLegIndexInVRML
[
1
]
<<
" "
<<
m_RightLegIndexInVRML
[
2
]
<<
" "
<<
m_RightLegIndexInVRML
[
3
]
<<
" "
<<
m_RightLegIndexInVRML
[
4
]
<<
" "
<<
m_RightLegIndexInVRML
[
5
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
0
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
0
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
1
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
1
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
2
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
2
]
<<
" "
...
@@ -324,12 +306,6 @@ Initialization()
...
@@ -324,12 +306,6 @@ Initialization()
<<
m_RightLegIndexinConfiguration
[
4
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
4
]
<<
" "
<<
m_RightLegIndexinConfiguration
[
5
]
);
<<
m_RightLegIndexinConfiguration
[
5
]
);
ODEBUG
(
"LeftLegIndex: "
ODEBUG
(
"LeftLegIndex: "
<<
m_LeftLegIndexInVRML
[
0
]
<<
" "
<<
m_LeftLegIndexInVRML
[
1
]
<<
" "
<<
m_LeftLegIndexInVRML
[
2
]
<<
" "
<<
m_LeftLegIndexInVRML
[
3
]
<<
" "
<<
m_LeftLegIndexInVRML
[
4
]
<<
" "
<<
m_LeftLegIndexInVRML
[
5
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
0
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
0
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
1
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
1
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
2
]
<<
" "
<<
m_LeftLegIndexinConfiguration
[
2
]
<<
" "
...
...
This diff is collapsed.
Click to expand it.
src/MotionGeneration/ComAndFootRealizationByGeometry.hh
+
0
−
9
View file @
f1380e5d
...
@@ -253,7 +253,6 @@ namespace PatternGeneratorJRL
...
@@ -253,7 +253,6 @@ namespace PatternGeneratorJRL
/*! \brief Initialization of internal maps of indexes */
/*! \brief Initialization of internal maps of indexes */
void
InitializationMaps
(
std
::
vector
<
CjrlJoint
*>
&
FromRootToFoot
,
void
InitializationMaps
(
std
::
vector
<
CjrlJoint
*>
&
FromRootToFoot
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
int
>
&
IndexInVRML
,
std
::
vector
<
int
>
&
IndexinConfiguration
);
std
::
vector
<
int
>
&
IndexinConfiguration
);
/*! Map shoulders and wrist
/*! Map shoulders and wrist
...
@@ -268,7 +267,6 @@ namespace PatternGeneratorJRL
...
@@ -268,7 +267,6 @@ namespace PatternGeneratorJRL
*/
*/
void
InitializeMapsForAHand
(
CjrlHand
*
aHand
,
void
InitializeMapsForAHand
(
CjrlHand
*
aHand
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
std
::
vector
<
CjrlJoint
*>
&
ActuatedJoints
,
vector
<
int
>
&
IndexesInVRML
,
vector
<
int
>
&
IndexesInConfiguration
,
vector
<
int
>
&
IndexesInConfiguration
,
CjrlJoint
*
&
associateShoulder
);
CjrlJoint
*
&
associateShoulder
);
...
@@ -367,13 +365,6 @@ namespace PatternGeneratorJRL
...
@@ -367,13 +365,6 @@ namespace PatternGeneratorJRL
/*! Conversion between the index of the plan and the robot DOFs. */
/*! Conversion between the index of the plan and the robot DOFs. */
std
::
vector
<
int
>
m_ConversionForUpperBodyFromLocalIndexToRobotDOFs
;
std
::
vector
<
int
>
m_ConversionForUpperBodyFromLocalIndexToRobotDOFs
;
/*! Keep the indexes for the legs of the robot in the VRML numbering system. */
std
::
vector
<
int
>
m_LeftLegIndexInVRML
;
std
::
vector
<
int
>
m_RightLegIndexInVRML
;
std
::
vector
<
int
>
m_LeftArmIndexInVRML
;
std
::
vector
<
int
>
m_RightArmIndexInVRML
;
std
::
vector
<
int
>
m_ChestIndexInVRML
;
/*! \name Keep the indexes into the Configuration numbering system.
/*! \name Keep the indexes into the Configuration numbering system.
@{
@{
...
...
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