Public Member Functions | |
JFKengine () | |
virtual String | className () const |
identifies this class type as a JFKengine | |
virtual Object & | clone () const |
makes a copy of this JFKengine | |
virtual Matrix | getForwardKinematics (const KinematicChain &chain, const Vector &q) const |
get the forward kinematics transform for the given chain, with joint parameter values q | |
virtual Matrix | getJacobian (const KinematicChain &chain, const Vector &q, bool includeOrientation=true) const |
get the Jacobian matrix for the given chain, with joint parameter values q | |
virtual array< base::Vector > | getJointOrigins (const KinematicChain &chain, const base::Vector &q) const |
computes the forward kinematics to return the joint origin locations | |
virtual array< base::Vector > | getLinkOrigins (const KinematicChain &chain, const base::Vector &q) const |
computes the forward kinematics to return the link origin locations | |
base::ExpressionMatrix | getForwardKinematics (const KinematicChain &chain) const |
forms symbolic forward kinematics expression matrix | |
base::ExpressionMatrix | getJacobian (const KinematicChain &chain, bool includeOrientation=true) const |
forms a symbolic Jacobian expression matrix | |
virtual bool | isSameKindAs (const ReferencedObject &) const |
virtual bool | isSameKindAs (const Object &) const |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
Protected Member Functions | |
JFKengine (const JFKengine &jfke) | |
copy constructor | |
Protected Attributes | |
bool | forwardKinematicsCached |
==true signals that A and T have already been calculated and are cached | |
array< base::ExpressionMatrix > | A |
array of matrices that give position and orientation with respect to previous frame | |
array< base::ExpressionMatrix > | T |
array of matrices that give position and orientation with respect to base | |
KinematicChain | chain_AT |
cached chain used to form A and T | |
bool | JCached |
==true signals that J has already been calculated and is cached | |
KinematicChain | chain_J |
cached chain used to form J | |
base::ExpressionMatrix | J |
contains the cached 6 x n Jacobian | |
int | _refCount |
bool | onUnreferenceEnabled |
Definition at line 42 of file JFKengine.
|
Referenced by clone(). |
|
copy constructor
|
|
identifies this class type as a JFKengine
Implements base::Object. |
|
makes a copy of this JFKengine
Definition at line 48 of file JFKengine. References JFKengine(), and NewObj. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 115 of file Referenced. References base::Referenced::onUnreferenceEnabled. |
|
forms symbolic forward kinematics expression matrix
|
|
get the forward kinematics transform for the given chain, with joint parameter values q
Implements robot::KinematicEvaluator. |
|
forms a symbolic Jacobian expression matrix
|
|
get the Jacobian matrix for the given chain, with joint parameter values q
Implements robot::KinematicEvaluator. |
|
computes the forward kinematics to return the joint origin locations
Implements robot::KinematicEvaluator. |
|
computes the forward kinematics to return the link origin locations
Implements robot::KinematicEvaluator. |
|
|
|
Definition at line 52 of file ReferencedObject. |
|
Called by unreference() if enabled via enableOnUnreferenceCall(true). Typically overridden in subclasses that wish to know about unreference() calls - for example to handle manually breaking cyclic references Reimplemented in robot::control::ControllableAdaptor::AdaptorControlInterface, and robot::control::ControllableAdaptor. Definition at line 121 of file Referenced. Referenced by base::Referenced::unreference(). |
|
Increment the reference count by one, indicating that this object has another pointer which is referencing it. Definition at line 65 of file Referenced. References base::Referenced::_refCount. |
|
Return the number pointers currently referencing this object. Definition at line 112 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::ControllableAdaptor::AdaptorControlInterface::onUnreference(). |
|
Decrement the reference count by one, indicating that a pointer to this object is referencing it. If the refence count goes to zero, it is assumed that this object is nolonger referenced and is automatically deleted. Definition at line 81 of file Referenced. References base::Referenced::_refCount, Exception, base::Referenced::onUnreference(), and base::Referenced::onUnreferenceEnabled. |
|
Definition at line 136 of file Referenced. Referenced by base::Referenced::reference(), base::Referenced::referenceCount(), base::Referenced::Referenced(), base::Referenced::unreference(), and base::Referenced::~Referenced(). |
|
array of matrices that give position and orientation with respect to previous frame
|
|
cached chain used to form A and T
|
|
cached chain used to form J
|
|
==true signals that A and T have already been calculated and are cached
|
|
contains the cached 6 x n Jacobian
|
|
==true signals that J has already been calculated and is cached
|
|
Definition at line 137 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall(), base::Referenced::Referenced(), and base::Referenced::unreference(). |
|
array of matrices that give position and orientation with respect to base
|