expose PyBullet.calculateInverseKinematics2 that allows to specify multiple IK end effector locations (not multiple orientations)
usage example: jointPoses = p.calculateInverseKinematics2(bodyUniqueId, [endEffectorLinkIndices], [endEffectorTargetWorldPositions])
This commit is contained in:
@@ -84,10 +84,10 @@ Jacobian::Jacobian(Tree* tree)
|
||||
Reset();
|
||||
}
|
||||
|
||||
Jacobian::Jacobian(bool useAngularJacobian, int nDof)
|
||||
Jacobian::Jacobian(bool useAngularJacobian, int nDof, int numEndEffectors)
|
||||
{
|
||||
m_tree = 0;
|
||||
m_nEffector = 1;
|
||||
m_nEffector = numEndEffectors;
|
||||
|
||||
if (useAngularJacobian)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user