We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58be573 + f75a3a4 commit e011ef2Copy full SHA for e011ef2
CHANGELOG.rst
@@ -16,6 +16,8 @@ Unreleased
16
17
**Fixed**
18
19
+* Fixed bug in ``add_attached_tool`` of ``PlanningScene``
20
+
21
**Deprecated**
22
23
**Removed**
src/compas_fab/robots/planning_scene.py
@@ -366,7 +366,8 @@ def add_attached_tool(self):
366
"""Add the robot's attached tool to the planning scene if tool is set."""
367
self.ensure_client()
368
if self.robot.attached_tool:
369
- self.add_attached_collision_mesh(self.robot.attached_tool.attached_collision_mesh)
+ for acm in self.robot.attached_tool.attached_collision_meshes:
370
+ self.add_attached_collision_mesh(acm)
371
372
def remove_attached_tool(self):
373
"""Remove the robot's attached tool from the planning scene."""
0 commit comments