-
Florent Lamiraux authored
rename handlePositionInJoint as objectPositionInJoint.
Florent Lamiraux authoredrename handlePositionInJoint as objectPositionInJoint.
axial-handle.cc 1.97 KiB
///
/// Copyright (c) 2014 CNRS
/// Authors: Florent Lamiraux
///
///
// This file is part of hpp-manipulation.
// hpp-manipulation is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation, either version
// 3 of the License, or (at your option) any later version.
//
// hpp-manipulation is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Lesser Public License for more details. You should have
// received a copy of the GNU Lesser General Public License along with
// hpp-manipulation. If not, see
// <http://www.gnu.org/licenses/>.
#include <boost/assign/list_of.hpp>
#include <fcl/math/transform.h>
#include <hpp/model/joint.hh>
#include <hpp/model/gripper.hh>
#include <hpp/constraints/relative-transformation.hh>
#include <hpp/manipulation/axial-handle.hh>
#include <hpp/manipulation/robot.hh>
namespace hpp {
namespace manipulation {
DifferentiableFunctionPtr_t AxialHandle::createGrasp
(const GripperPtr_t& gripper) const
{
using boost::assign::list_of;
std::vector <bool> mask = list_of (true)(true)(true)(false)(true)(true);
return RelativeTransformation::create
(gripper->joint()->robot(), gripper->joint (), joint(),
inverse (localPosition()) *
gripper->objectPositionInJoint (), mask);
}
HandlePtr_t AxialHandle::clone () const
{
AxialHandlePtr_t self = weakPtr_.lock ();
return AxialHandle::create (self->name (), self->localPosition (),
self->joint ());
}
std::ostream& AxialHandle::print (std::ostream& os) const
{
os << "name :" << name () << " (axial)" << std::endl;
os << "local position :" << localPosition () << std::endl;
os << "joint :" << joint ()->name () << std::endl;
return os;
}
} // namespace manipulation
} // namespace hpp