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

Fix use of Transform3f

parent 085c1216
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
namespace hpp { namespace hpp {
namespace manipulation { namespace manipulation {
static const matrix3_t I3 = matrix3_t::Identity();
NumericalConstraintPtr_t AxialHandle::createGrasp NumericalConstraintPtr_t AxialHandle::createGrasp
(const GripperPtr_t& gripper) const (const GripperPtr_t& gripper) const
...@@ -69,7 +70,7 @@ namespace hpp { ...@@ -69,7 +70,7 @@ namespace hpp {
using boost::assign::list_of; using boost::assign::list_of;
std::vector <bool> mask = list_of (true)(true)(true)(true)(true)(false); std::vector <bool> mask = list_of (true)(true)(true)(true)(true)(false);
Transform3f transform = gripper->objectPositionInJoint () Transform3f transform = gripper->objectPositionInJoint ()
* Transform3f (fcl::Vec3f (shift,0,0)); * Transform3f (I3, vector3_t (shift,0,0));
return NumericalConstraintPtr_t return NumericalConstraintPtr_t
(NumericalConstraint::create (RelativeTransformation::create (NumericalConstraint::create (RelativeTransformation::create
("Transformation_(1,1,1,1,1,0)_" + name () ("Transformation_(1,1,1,1,1,0)_" + name ()
...@@ -89,7 +90,7 @@ namespace hpp { ...@@ -89,7 +90,7 @@ namespace hpp {
std::vector <bool> mask = list_of (true)(false)(false)(false)(false) std::vector <bool> mask = list_of (true)(false)(false)(false)(false)
(false); (false);
Transform3f transform = gripper->objectPositionInJoint () Transform3f transform = gripper->objectPositionInJoint ()
* Transform3f (fcl::Vec3f (shift,0,0)); * Transform3f (I3, vector3_t (shift,0,0));
return NumericalConstraintPtr_t return NumericalConstraintPtr_t
(NumericalConstraint::create (RelativeTransformation::create (NumericalConstraint::create (RelativeTransformation::create
("Transformation_(1,0,0,0,0,0)_" + name () ("Transformation_(1,0,0,0,0,0)_" + name ()
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include <boost/assign/list_of.hpp> #include <boost/assign/list_of.hpp>
#include <pinocchio/multibody/joint/joint.hpp>
#include <pinocchio/multibody/joint/joint-free-flyer.hpp> #include <pinocchio/multibody/joint/joint-free-flyer.hpp>
#include <hpp/util/debug.hh> #include <hpp/util/debug.hh>
...@@ -38,6 +39,8 @@ ...@@ -38,6 +39,8 @@
namespace hpp { namespace hpp {
namespace manipulation { namespace manipulation {
namespace { namespace {
static const matrix3_t I3 = matrix3_t::Identity();
struct ZeroDiffFunc : public constraints::DifferentiableFunction { struct ZeroDiffFunc : public constraints::DifferentiableFunction {
ZeroDiffFunc (size_type sIn, size_type sInD, ZeroDiffFunc (size_type sIn, size_type sInD,
std::string name=std::string("Empty function")) std::string name=std::string("Empty function"))
...@@ -106,7 +109,7 @@ namespace hpp { ...@@ -106,7 +109,7 @@ namespace hpp {
using boost::assign::list_of; using boost::assign::list_of;
std::vector <bool> mask = list_of (true)(true)(true)(true)(true)(true); std::vector <bool> mask = list_of (true)(true)(true)(true)(true)(true);
Transform3f transform = gripper->objectPositionInJoint () Transform3f transform = gripper->objectPositionInJoint ()
* Transform3f (fcl::Vec3f (shift,0,0)); * Transform3f (I3, vector3_t (shift,0,0));
return NumericalConstraintPtr_t return NumericalConstraintPtr_t
(NumericalConstraint::create (RelativeTransformation::create (NumericalConstraint::create (RelativeTransformation::create
("Pregrasp_(1,1,1,1,1,1)_" + name () ("Pregrasp_(1,1,1,1,1,1)_" + name ()
......
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