Class ParallelLegPtr


  • public class ParallelLegPtr
    extends java.lang.Object
    Ptr stores a pointer and optionally takes ownership of the value.
    • Constructor Detail

      • ParallelLegPtr

        public ParallelLegPtr​(long cPtr,
                              boolean cMemoryOwn)
      • ParallelLegPtr

        public ParallelLegPtr()
        Default constructor yielding a NULL-pointer.
      • ParallelLegPtr

        public ParallelLegPtr​(ParallelLeg ptr)
        Do not take ownership of ptr.

        ptr can be null.

        The constructor is implicit on purpose.
    • Method Detail

      • delete

        public void delete()
      • deref

        public ParallelLeg deref()
        The pointer stored in the object.
      • __ref__

        public ParallelLeg __ref__()
        Dereferencing operator.
      • getDeref

        public ParallelLeg getDeref()
        Member access operator.
      • isShared

        public boolean isShared()
        check if this Ptr has shared ownership or none
        ownership
        Returns:
        true if Ptr has shared ownership, false if it has no ownership.
      • isNull

        public boolean isNull()
        checks if the pointer is null
        Returns:
        Returns true if the pointer is null
      • baseJend

        public Jacobian baseJend​(State state)
        Returns the base to end Jacobian
        Parameters:
        state - [in] State for which to calculate the Jacobian
        Returns:
        the Jacobian
      • baseJframe

        public Jacobian baseJframe​(Frame frame,
                                   State state)
        Returns the Jacobian of frame relative to base frame.
        Parameters:
        frame - [in] the frame to find Jacobian for.
        state - [in] State for which to calculate the Jacobian
        Returns:
        the Jacobian
      • baseTend

        public Transform3Dd baseTend​(State state)
        Returns the base to end transformation
        Parameters:
        state - [in] State for which to calculate the transform
        Returns:
        the transform
      • baseTframe

        public Transform3Dd baseTframe​(Frame frame,
                                       State state)
        Returns the transformation of a frame relative to the base.
        Parameters:
        frame - [in] the frame to find transformation to.
        state - [in] State for which to calculate the transform
        Returns:
        the transform
      • getKinematicChain

        public FrameVector getKinematicChain()
        Returns the kinematic chain of the leg
        Returns:
        list of frames
      • getBase

        public Frame getBase()
        the base of the leg
        Returns:
        the frame
      • getEnd

        public Frame getEnd()
        the end of the leg
        Returns:
        the frame
      • nrOfActiveJoints

        public long nrOfActiveJoints()
        Number of active joints
        Returns:
        number of active joints
      • nrOfPassiveJoints

        public long nrOfPassiveJoints()
        Number of passive joints
        Returns:
        number of passive joints
      • nrOfJoints

        public long nrOfJoints()
        Number of joints (both active and passive)
        Returns:
        number of joints
      • getActuatedJoints

        public JointPointerVector getActuatedJoints()
        Returns list of the actuated (active) joints
        Returns:
        list of joints
      • getUnactuatedJoints

        public JointPointerVector getUnactuatedJoints()
        Returns list of unactuated (passive) joints
        Returns:
        list of joints
      • getJointDOFs

        public long getJointDOFs()
        Get the total degrees of freedom (includes both active and passive joints).
        Returns:
        the total degrees of freedom.
      • getQ

        public Q getQ​(State state)
        Get configuration of the leg.
        Parameters:
        state - [in] the state with the configuration values.
        Returns:
        the configuration.
      • setQ

        public void setQ​(Q q,
                         State state)
        Sets q for the leg in the state
        Parameters:
        q - [in] q to set
        state - [out] the State to modify