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 5f89cfc + d7fe760 commit 4d83110Copy full SHA for 4d83110
CHANGELOG.rst
@@ -12,6 +12,8 @@ Unreleased
12
13
**Added**
14
15
+* Added ``name`` property to ``Tool`` class.
16
+
17
**Changed**
18
19
**Fixed**
src/compas_fab/robots/tool.py
@@ -57,6 +57,10 @@ def attached_collision_meshes(self):
57
acms.append(attached_collision_mesh)
58
return acms
59
60
+ @property
61
+ def name(self):
62
+ return self.tool_model.name
63
64
@property
65
def link_name(self):
66
return self.tool_model.link_name
0 commit comments