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
34c8148b
Commit
34c8148b
authored
7 years ago
by
Florent Lamiraux
Committed by
Florent Lamiraux florent@laas.fr
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add a method createGraspAndComplement in Handle classes
- create a constraint merging a grasp constraint and its complement.
parent
ec8d8640
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/hpp/manipulation/handle.hh
+9
-7
9 additions, 7 deletions
include/hpp/manipulation/handle.hh
with
9 additions
and
7 deletions
include/hpp/manipulation/handle.hh
+
9
−
7
View file @
34c8148b
...
@@ -99,23 +99,25 @@ namespace hpp {
...
@@ -99,23 +99,25 @@ namespace hpp {
/// \param gripper object containing the gripper information
/// \param gripper object containing the gripper information
/// \return the constraint of relative transformation between the handle
/// \return the constraint of relative transformation between the handle
/// and the gripper.
/// and the gripper.
/// \note The 6 DOFs of the relative transformation are constrained.
/// The degrees of freedom of the relative transformation that are
/// constrained are determined by the mask. \sa NumericalConstraint::mask.
/// The constraint is not parameterizable (has constant right hand side).
virtual
NumericalConstraintPtr_t
createGrasp
virtual
NumericalConstraintPtr_t
createGrasp
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
/// Create complement constraint of gripper grasping this handle
/// Create complement constraint of gripper grasping this handle
/// \param gripper object containing the gripper information
/// \param gripper object containing the gripper information
/// \return trivial constraint
/// \return complement constraint: constraint combined with its complement
/// \note for this base class, the complement constraint is trivial, i.e.
/// constitute a full relative transformation constraint.
/// it is of dimension 0.
/// The complement constraint is parameterizable (has non constant right
/// hand side).
virtual
NumericalConstraintPtr_t
createGraspComplement
virtual
NumericalConstraintPtr_t
createGraspComplement
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
/// Create constraint composed of grasp constraint and its complement
/// Create constraint composed of grasp constraint and its complement
/// \param gripper object containing the gripper information
/// \param gripper object containing the gripper information
/// \return the composition of grasp constraint and its complement.
/// \return the composition of grasp constraint and its complement, that
/// \note for this base class, this constraint is the same as the grasp
/// that is a full relative transformation constraint.
/// constraint.
virtual
NumericalConstraintPtr_t
createGraspAndComplement
virtual
NumericalConstraintPtr_t
createGraspAndComplement
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
(
const
GripperPtr_t
&
gripper
,
std
::
string
name
)
const
;
...
...
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