07-31-2022, 07:54 AM
Yes, you can recalculate the target joints by first making the target a Cartesian target, let RoboDK recalculate the joints and then change it to a Joint Target.
This example shows the concept:
This example shows the concept:
Code:
target.setAsCartesianTarget()
target.setPose(new_pose)
target.setParam("Recalculate")
target.setAsJointTarget()
new_joints = target.Joints()