Skip to content

Commit a74776f

Browse files
committed
Implement abstract methods on gh's MeshArtist
1 parent d4ac48f commit a74776f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/compas_ghpython/artists/meshartist.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,15 @@ def draw_edges(self, edges=None, color=None):
162162
'name': "{}.edge.{}-{}".format(self.mesh.name, *edge)
163163
})
164164
return compas_ghpython.draw_lines(lines)
165+
166+
def clear_edges(self):
167+
"""GH Artists are state-less. Clear does not have any effect."""
168+
pass
169+
170+
def clear_vertices(self):
171+
"""GH Artists are state-less. Clear does not have any effect."""
172+
pass
173+
174+
def clear_faces(self):
175+
"""GH Artists are state-less. Clear does not have any effect."""
176+
pass

0 commit comments

Comments
 (0)