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
Humanoid Path Planner
hpp-manipulation
Commits
9c3ea5d8
Commit
9c3ea5d8
authored
8 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix AxialHandle::createPreGrasp
parent
845c1b50
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/hpp/manipulation/axial-handle.hh
+1
-1
1 addition, 1 deletion
include/hpp/manipulation/axial-handle.hh
src/axial-handle.cc
+6
-4
6 additions, 4 deletions
src/axial-handle.cc
with
7 additions
and
5 deletions
include/hpp/manipulation/axial-handle.hh
+
1
−
1
View file @
9c3ea5d8
...
@@ -69,7 +69,7 @@ namespace hpp {
...
@@ -69,7 +69,7 @@ namespace hpp {
/// \todo this function is never called. It should follow changes of
/// \todo this function is never called. It should follow changes of
/// Handle::createPreGrasp prototype.
/// Handle::createPreGrasp prototype.
virtual
NumericalConstraintPtr_t
createPreGrasp
virtual
NumericalConstraintPtr_t
createPreGrasp
(
const
GripperPtr_t
&
gripper
)
const
;
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
;
/// Create constraint that acts on the non-constrained axis of the
/// Create constraint that acts on the non-constrained axis of the
/// constraint generated by Handle::createPreGrasp.
/// constraint generated by Handle::createPreGrasp.
...
...
This diff is collapsed.
Click to expand it.
src/axial-handle.cc
+
6
−
4
View file @
9c3ea5d8
...
@@ -65,17 +65,19 @@ namespace hpp {
...
@@ -65,17 +65,19 @@ namespace hpp {
}
}
NumericalConstraintPtr_t
AxialHandle
::
createPreGrasp
NumericalConstraintPtr_t
AxialHandle
::
createPreGrasp
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
true
)(
true
)(
true
)(
true
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
false
);
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
*
Transform3f
(
fcl
::
Vec3f
(
shift
,
0
,
0
));
return
NumericalConstraintPtr_t
return
NumericalConstraintPtr_t
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
"Transformation_(
0
,1,1,1,1,0)_"
+
name
()
(
"Transformation_(
1
,1,1,1,1,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
()
,
transform
,
localPosition
(),
mask
)));
localPosition
(),
mask
)));
}
}
...
...
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