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.
1 parent 043125b commit b9ba798Copy full SHA for b9ba798
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed bug in `compas_rhino.scene.RhinoMeshObject.clear()`.
15
+
16
### Removed
17
18
src/compas_rhino/scene/meshobject.py
@@ -74,7 +74,7 @@ def clear(self):
74
75
"""
76
compas_rhino.objects.delete_objects(self.guids, purge=True)
77
- self.guids = []
+ self._guids = []
78
79
def clear_vertices(self):
80
"""Delete all vertices drawn by this scene object.
0 commit comments