PlanningScene.remove_attached_collision_mesh
- PlanningScene.remove_attached_collision_mesh(id)[source]
Remove an attached collision object from the planning scene.
- Parameters:
- id
str
The id of the
CollisionMesh
in theAttachedCollisionMesh
to remove from thePlanningScene
.
- id
- Returns:
None
Examples
>>> with RosClient() as client: ... robot = client.load_robot() ... scene = PlanningScene(robot) ... scene.remove_attached_collision_mesh('tip')