Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-manipulation
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
Show more breadcrumbs
Guilhem Saurel
hpp-manipulation
Commits
6605e17a
Commit
6605e17a
authored
9 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update to changes in hpp-core regarding Container class
parent
ecfaff1b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/hpp/manipulation/device.hh
+7
-0
7 additions, 0 deletions
include/hpp/manipulation/device.hh
include/hpp/manipulation/problem-solver.hh
+7
-0
7 additions, 0 deletions
include/hpp/manipulation/problem-solver.hh
src/problem-solver.cc
+8
-8
8 additions, 8 deletions
src/problem-solver.cc
with
22 additions
and
8 deletions
include/hpp/manipulation/device.hh
+
7
−
0
View file @
6605e17a
...
...
@@ -67,6 +67,13 @@ namespace hpp {
return
core
::
Container
<
Element
>::
get
(
name
);
}
/// Check if a Container has a key.
template
<
typename
Element
>
bool
has
(
const
std
::
string
&
name
)
const
{
return
core
::
Container
<
Element
>::
has
(
name
);
}
/// Get the keys of a container
template
<
typename
Element
,
typename
ReturnType
>
ReturnType
getKeys
()
const
...
...
This diff is collapsed.
Click to expand it.
include/hpp/manipulation/problem-solver.hh
+
7
−
0
View file @
6605e17a
...
...
@@ -136,6 +136,13 @@ namespace hpp {
return
Container
<
Element
>::
get
(
name
);
}
/// Check if a Container has a key.
template
<
typename
Element
>
bool
has
(
const
std
::
string
&
name
)
const
{
return
core
::
Container
<
Element
>::
has
(
name
);
}
/// Add an element to a container
template
<
typename
Element
>
void
add
(
const
std
::
string
&
name
,
const
Element
&
element
)
...
...
This diff is collapsed.
Click to expand it.
src/problem-solver.cc
+
8
−
8
View file @
6605e17a
...
...
@@ -161,21 +161,21 @@ namespace hpp {
ConvexShapeContactComplementPtr_t
>
constraints
(
ConvexShapeContactComplement
::
createPair
(
name
,
complementName
,
robot_
));
JointAndShapes_t
l
=
robot_
->
get
<
JointAndShapes_t
>
(
surface1
)
;
if
(
l
.
empty
())
throw
std
::
runtime_error
(
"First list of triangles not found."
);
if
(
!
robot_
->
has
<
JointAndShapes_t
>
(
surface1
)
)
throw
std
::
runtime_error
(
"First list of triangles not found."
);
JointAndShapes_t
l
=
robot_
->
get
<
JointAndShapes_t
>
(
surface1
);
for
(
JointAndShapes_t
::
const_iterator
it
=
l
.
begin
();
it
!=
l
.
end
();
++
it
)
{
constraints
.
first
->
addObject
(
ConvexShape
(
it
->
second
,
it
->
first
));
}
// Search first robot triangles
l
=
robot_
->
get
<
JointAndShapes_t
>
(
surface2
)
;
if
(
l
.
empty
())
{
if
(
robot_
->
has
<
JointAndShapes_t
>
(
surface2
)
)
l
=
robot_
->
get
<
JointAndShapes_t
>
(
surface2
);
// and then environment triangles.
else
if
(
has
<
JointAndShapes_t
>
(
surface2
))
l
=
get
<
JointAndShapes_t
>
(
surface2
);
if
(
l
.
empty
())
throw
std
::
runtime_error
(
"Second list of triangles not found."
);
}
else
throw
std
::
runtime_error
(
"Second list of triangles not found."
);
for
(
JointAndShapes_t
::
const_iterator
it
=
l
.
begin
();
it
!=
l
.
end
();
++
it
)
{
constraints
.
first
->
addFloor
(
ConvexShape
(
it
->
second
,
it
->
first
));
...
...
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