03-31-2023, 08:10 PM
(03-31-2023, 02:17 PM)Nour Wrote:Hi,
I'm trying to move the robot by a translated value of x,y,z with respect to the robot base in python . Can you please tell me which function does that ( linear not joints) .
Thanks
Nour
Hi Nour,
use the multiplication operator withtransl:
Code:
new_target = transl(x, y, z) * target.Pose()
Code:
new_target = target.Pose() * transl(x, y, z)