08-02-2022, 04:20 PM
(07-31-2022, 07:54 AM)Albert Wrote: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:
Code:target.setAsCartesianTarget()
target.setPose(new_pose)
target.setParam("Recalculate")
target.setAsJointTarget()
new_joints = target.Joints()
This is wonderful! Thank you so much Albert!