/usr/include/kido/dynamics/JacobianNode.hpp is in libkido-dev 0.1.0+dfsg-2build9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | /*
* Copyright (c) 2015, Georgia Tech Research Corporation
* All rights reserved.
*
* Author(s): Michael X. Grey <mxgrey@gatech.edu>
*
* Georgia Tech Graphics Lab and Humanoid Robotics Lab
*
* Directed by Prof. C. Karen Liu and Prof. Mike Stilman
* <karenliu@cc.gatech.edu> <mstilman@cc.gatech.edu>
*
* This file is provided under the following "BSD-style" License:
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef KIDO_DYNAMICS_JACOBIANNODE_HPP_
#define KIDO_DYNAMICS_JACOBIANNODE_HPP_
#include <memory>
#include <unordered_set>
#include "kido/dynamics/Frame.hpp"
#include "kido/dynamics/Node.hpp"
#include "kido/dynamics/SmartPointer.hpp"
namespace kido {
namespace dynamics {
class Skeleton;
class DegreeOfFreedom;
class InverseKinematics;
/// The JacobianNode class serves as a common interface for BodyNodes and
/// EndEffectors to both be used as references for IK modules. This is a pure
/// abstract class.
class JacobianNode : public virtual Frame, public virtual Node
{
public:
/// This constructor only exists as a formality, because Entity and Frame
/// require it. Since this class is pure abstract and virutally inherits
/// Frame, the most derived class needs to call the constructor of Entity and
/// Frame anyway.
JacobianNode();
/// Virtual destructor
virtual ~JacobianNode();
/// Get a pointer to an IK module for this JacobianNode. If _createIfNull is
/// true, then the IK module will be generated if one does not already exist.
const std::shared_ptr<InverseKinematics>& getIK(bool _createIfNull = false);
/// Get a pointer to an IK module for this JacobianNode. The IK module will be
/// generated if one does not already exist. This function is actually the
/// same as getIK(true).
const std::shared_ptr<InverseKinematics>& getOrCreateIK();
/// Get a pointer to an IK module for this JacobianNode. Because this is a
/// const function, a new IK module cannot be created if one does not already
/// exist.
std::shared_ptr<const InverseKinematics> getIK() const;
/// Create a new IK module for this JacobianNode. If an IK module already
/// exists in this JacobianNode, it will be destroyed and replaced by a brand
/// new one.
const std::shared_ptr<InverseKinematics>& createIK();
/// Wipe away the IK module for this JacobianNode, leaving it as a nullptr.
void clearIK();
//----------------------------------------------------------------------------
/// \{ \name Structural Properties
//----------------------------------------------------------------------------
/// Return the Skeleton this JacobianNode is attached to
virtual std::shared_ptr<Skeleton> getSkeleton() = 0;
/// Return the Skeleton this JacobianNode is attached to
virtual std::shared_ptr<const Skeleton> getSkeleton() const = 0;
/// Return true if _genCoordIndex-th generalized coordinate
virtual bool dependsOn(size_t _genCoordIndex) const = 0;
/// The number of the generalized coordinates which affect this JacobianNode
virtual size_t getNumDependentGenCoords() const = 0;
/// Return a generalized coordinate index from the array index
/// (< getNumDependentDofs)
virtual size_t getDependentGenCoordIndex(size_t _arrayIndex) const = 0;
/// Indices of the generalized coordinates which affect this JacobianNode
virtual const std::vector<size_t>& getDependentGenCoordIndices() const = 0;
/// Same as getNumDependentGenCoords()
virtual size_t getNumDependentDofs() const = 0;
/// Get a pointer to the _indexth dependent DegreeOfFreedom for this BodyNode
virtual DegreeOfFreedom* getDependentDof(size_t _index) = 0;
/// Get a pointer to the _indexth dependent DegreeOfFreedom for this BodyNode
virtual const DegreeOfFreedom* getDependentDof(size_t _index) const = 0;
/// Return a std::vector of DegreeOfFreedom pointers that this Node depends on
virtual const std::vector<DegreeOfFreedom*>& getDependentDofs() = 0;
/// Return a std::vector of DegreeOfFreedom pointers that this Node depends on
virtual const std::vector<const DegreeOfFreedom*>& getDependentDofs() const = 0;
/// Returns a DegreeOfFreedom vector containing the dofs that form a Chain
/// leading up to this JacobianNode from the root of the Skeleton.
virtual const std::vector<const DegreeOfFreedom*> getChainDofs() const = 0;
/// \}
//----------------------------------------------------------------------------
/// \{ \name Jacobian Functions
//----------------------------------------------------------------------------
/// Return the generalized Jacobian targeting the origin of this JacobianNode.
/// The Jacobian is expressed in the Frame of this JacobianNode.
virtual const math::Jacobian& getJacobian() const = 0;
/// A version of getJacobian() that lets you specify a coordinate Frame to
/// express the Jacobian in.
virtual math::Jacobian getJacobian(const Frame* _inCoordinatesOf) const = 0;
/// Return the generalized Jacobian targeting an offset within the Frame of
/// this JacobianNode.
virtual math::Jacobian getJacobian(const Eigen::Vector3d& _offset) const = 0;
/// A version of getJacobian(const Eigen::Vector3d&) that lets you specify a
/// coordinate Frame to express the Jacobian in.
virtual math::Jacobian getJacobian(const Eigen::Vector3d& _offset,
const Frame* _inCoordinatesOf) const = 0;
/// Return the generalized Jacobian targeting the origin of this JacobianNode.
/// The Jacobian is expressed in the World Frame.
virtual const math::Jacobian& getWorldJacobian() const = 0;
/// Return the generalized Jacobian targeting an offset in this JacobianNode.
/// The _offset is expected in coordinates of this BodyNode Frame. The
/// Jacobian is expressed in the World Frame.
virtual math::Jacobian getWorldJacobian(
const Eigen::Vector3d& _offset) const = 0;
/// Return the linear Jacobian targeting the origin of this BodyNode. You can
/// specify a coordinate Frame to express the Jacobian in.
virtual math::LinearJacobian getLinearJacobian(
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// Return the generalized Jacobian targeting an offset within the Frame of
/// this BodyNode.
virtual math::LinearJacobian getLinearJacobian(
const Eigen::Vector3d& _offset,
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// Return the angular Jacobian targeting the origin of this BodyNode. You can
/// specify a coordinate Frame to express the Jacobian in.
virtual math::AngularJacobian getAngularJacobian(
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// Return the spatial time derivative of the generalized Jacobian targeting
/// the origin of this BodyNode. The Jacobian is expressed in this BodyNode's
/// coordinate Frame.
///
/// NOTE: Since this is a spatial time derivative, it should be used with
/// spatial vectors. If you are using classical linear and angular
/// acceleration vectors, then use getJacobianClassicDeriv(),
/// getLinearJacobianDeriv(), or getAngularJacobianDeriv() instead.
virtual const math::Jacobian& getJacobianSpatialDeriv() const = 0;
/// A version of getJacobianSpatialDeriv() that can return the Jacobian in
/// coordinates of any Frame.
///
/// NOTE: This Jacobian Derivative is only for use with spatial vectors. If
/// you are using classical linear and angular vectors, then use
/// getJacobianClassicDeriv(), getLinearJacobianDeriv(), or
/// getAngularJacobianDeriv() instead.
virtual math::Jacobian getJacobianSpatialDeriv(
const Frame* _inCoordinatesOf) const = 0;
/// Return the spatial time derivative of the generalized Jacobian targeting
/// an offset in the Frame of this BodyNode. The Jacobian is expressed in
/// this BodyNode's coordinate Frame.
///
/// NOTE: This Jacobian Derivative is only for use with spatial vectors. If
/// you are using classic linear and angular vectors, then use
/// getJacobianClassicDeriv(), getLinearJacobianDeriv(), or
/// getAngularJacobianDeriv() instead.
///
/// \sa getJacobianSpatialDeriv()
virtual math::Jacobian getJacobianSpatialDeriv(
const Eigen::Vector3d& _offset) const = 0;
/// A version of getJacobianSpatialDeriv(const Eigen::Vector3d&) that allows
/// an arbitrary coordinate Frame to be specified.
virtual math::Jacobian getJacobianSpatialDeriv(
const Eigen::Vector3d& _offset,
const Frame* _inCoordinatesOf) const = 0;
/// Return the classical time derivative of the generalized Jacobian targeting
/// the origin of this BodyNode. The Jacobian is expressed in the World
/// coordinate Frame.
///
/// NOTE: Since this is a classical time derivative, it should be used with
/// classical linear and angular vectors. If you are using spatial vectors,
/// use getJacobianSpatialDeriv() instead.
virtual const math::Jacobian& getJacobianClassicDeriv() const = 0;
/// A version of getJacobianClassicDeriv() that can return the Jacobian in
/// coordinates of any Frame.
///
/// NOTE: Since this is a classical time derivative, it should be used with
/// classical linear and angular vectors. If you are using spatial vectors,
/// use getJacobianSpatialDeriv() instead.
virtual math::Jacobian getJacobianClassicDeriv(
const Frame* _inCoordinatesOf) const = 0;
/// A version of getJacobianClassicDeriv() that can compute the Jacobian for
/// an offset within the Frame of this BodyNode. The offset must be expressed
/// in the coordinates of this BodyNode Frame.
///
/// NOTE: Since this is a classical time derivative, it should be used with
/// classical linear and angular vectors. If you are using spatial vectors,
/// use getJacobianSpatialDeriv() instead.
virtual math::Jacobian getJacobianClassicDeriv(
const Eigen::Vector3d& _offset,
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// Return the linear Jacobian (classical) time derivative, in terms of any
/// coordinate Frame.
///
/// NOTE: Since this is a classical time derivative, it should be used with
/// classical linear vectors. If you are using spatial vectors, use
/// getJacobianSpatialDeriv() instead.
virtual math::LinearJacobian getLinearJacobianDeriv(
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// A version of getLinearJacobianDeriv() that can compute the Jacobian for
/// an offset within the Frame of this BodyNode. The offset must be expressed
/// in coordinates of this BodyNode Frame.
///
/// NOTE: Since this is a classical time derivative, it should be used with
/// classical linear vectors. If you are using spatial vectors, use
/// getJacobianSpatialDeriv() instead.
virtual math::LinearJacobian getLinearJacobianDeriv(
const Eigen::Vector3d& _offset,
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// Return the angular Jacobian time derivative, in terms of any coordinate
/// Frame.
virtual math::AngularJacobian getAngularJacobianDeriv(
const Frame* _inCoordinatesOf = Frame::World()) const = 0;
/// \}
/// Notify this BodyNode and all its descendents that their Jacobians need to
/// be updated.
void notifyJacobianUpdate();
/// Notify this BodyNode and all its descendents that their Jacobian
/// derivatives need to be updated.
void notifyJacobianDerivUpdate();
protected:
/// Dirty flag for body Jacobian.
mutable bool mIsBodyJacobianDirty;
/// Dirty flag for world Jacobian
mutable bool mIsWorldJacobianDirty;
/// Dirty flag for spatial time derivative of body Jacobian.
mutable bool mIsBodyJacobianSpatialDerivDirty;
/// Dirty flag for the classic time derivative of the Jacobian
mutable bool mIsWorldJacobianClassicDerivDirty;
/// Inverse kinematics module which gets lazily created upon request
std::shared_ptr<InverseKinematics> mIK;
/// JacobianNode children that descend from this JacobianNode
std::unordered_set<JacobianNode*> mChildJacobianNodes;
};
} // namespace kido
} // namespace dynamics
#endif // KIDO_DYNAMICS_JACOBIANNODE_HPP_
|