Skip to content
Snippets Groups Projects
Commit 9c3ea5d8 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Fix AxialHandle::createPreGrasp

parent 845c1b50
No related branches found
No related tags found
No related merge requests found
...@@ -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.
......
...@@ -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)));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment