Package org.robwork.sdurw_invkin
Class ClosedFormIKCPtr
- java.lang.Object
-
- org.robwork.sdurw_invkin.ClosedFormIKCPtr
-
public class ClosedFormIKCPtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description ClosedFormIKCPtr()
Default constructor yielding a NULL-pointer.ClosedFormIKCPtr(long cPtr, boolean cMemoryOwn)
ClosedFormIKCPtr(ClosedFormIK ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClosedFormIK
__ref__()
Dereferencing operator.void
delete()
ClosedFormIK
deref()
The pointer stored in the object.boolean
equals(ClosedFormIK p)
static long
getCPtr(ClosedFormIKCPtr obj)
ClosedFormIK
getDeref()
Member access operator.FrameCPtr
getTCP()
Returns the Tool Center Point (TCP) used when solving the IK problem.
boolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownershipVectorQ
solve(Transform3D baseTend, State state)
Calculates the inverse kinematics
Given a desired \robabx{}{desired}{\mathbf{T}}
and the current state, the method solves the inverse kinematics
problem.
If the algorithm is able to identify multiple solutions (e.g.
-
-
-
Constructor Detail
-
ClosedFormIKCPtr
public ClosedFormIKCPtr(long cPtr, boolean cMemoryOwn)
-
ClosedFormIKCPtr
public ClosedFormIKCPtr()
Default constructor yielding a NULL-pointer.
-
ClosedFormIKCPtr
public ClosedFormIKCPtr(ClosedFormIK ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(ClosedFormIKCPtr obj)
-
delete
public void delete()
-
deref
public ClosedFormIK deref()
The pointer stored in the object.
-
__ref__
public ClosedFormIK __ref__()
Dereferencing operator.
-
getDeref
public ClosedFormIK getDeref()
Member access operator.
-
equals
public boolean equals(ClosedFormIK p)
-
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
-
solve
public VectorQ solve(Transform3D baseTend, State state)
Calculates the inverse kinematics
Given a desired \robabx{}{desired}{\mathbf{T}}
and the current state, the method solves the inverse kinematics
problem.
If the algorithm is able to identify multiple solutions (e.g. elbow
up and down) it will return all of these. Before returning a solution,
they may be checked to be within the bounds of the configuration space.
(See setCheckJointLimits(bool) )
- Parameters:
baseTend
- [in] Desired base to end transformation \robabx{}{desired}{\mathbf{T}}
state
- [in] State of the device from which to start the
iterations
- Returns:
- List of solutions. Notice that the list may be empty.
Note: The targets baseTend must be defined relative to the base of the
robot/device.
-
getTCP
public FrameCPtr getTCP()
Returns the Tool Center Point (TCP) used when solving the IK problem.
- Returns:
- The TCP Frame used when solving the IK.
-
-