10-15-2020, 12:49 PM
Hi,
To modify the position of the robot base, you can simply use the following:
Jeremy
To modify the position of the robot base, you can simply use the following:
Code:
RDK = robolink()
robot_base = RDK.Item('Robot Base Name', ITEM_TYPE_FRAME)
robot_base.setPose(4x4 mat with the position)
Jeremy