Within the list that is fed into robot.directlyMoveTo, what exactly are the values? What do they correspond to? Is there documentation anywhere? #60
-
For example, this is the initial position given, however, we are unable to determine what these values correspond to for the specific robot used in the provided 'test_dressing.py' file. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It’s documented as
|
Beta Was this translation helpful? Give feedback.
It’s documented as
directlyMoveTo(targetPose: list, targetRot: list = None)
Moves the robot to a target pose directly.
Args:
targetPose
(list): The target pose to move the robot to.targetRot
(list): The target rotation (optional).so the position is essentially a list with x y z elements for the robot to move its end effector to. The values in the starter script doesn’t matter because those are just the values of some random number to give you an idea about what to put as the parameters for the function. You need to figure out how to get that values. You can use the cube in the scene to help you visualize.