03-29-2024, 02:03 PM
Basically the feature described here: https://robodk.com/forum/Thread-How-to-a...ch+to+link.
I know there's an available workaround right now, but having this feature built-in would also be useful for my application, so I figured requesting it as a feature would be appropriate.
I'm also using this for collision detection. I may have to modify the 3D volume I am checking collisions against from time to time. Because of that, I would like to avoid having to rebuild my robot model each time this occurs. I have a different workaround going, which is the following code:
I know there's an available workaround right now, but having this feature built-in would also be useful for my application, so I figured requesting it as a feature would be appropriate.
I'm also using this for collision detection. I may have to modify the 3D volume I am checking collisions against from time to time. Because of that, I would like to avoid having to rebuild my robot model each time this occurs. I have a different workaround going, which is the following code:
Code:
ROBOT:rl.Item
OBJECT:rl.Item
ROBOT_LINK_NUMBER:int
OBJECT_POSE_WRT_LINK:rm.Mat
def move_robot_with_object():
OBJECT.setPoseAbs(ROBOT.ObjectLink(ROBOT_LINK_NUMBER).PoseAbs()*OBJECT_POSE_WRT_LINK)