Skip to content

Commit 12f7963

Browse files
committed
Add abstract method to base clas
1 parent c940f3e commit 12f7963

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/compas/artists/meshartist.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,10 @@ def draw_faces(self, faces=None, color=None, text=None):
326326
"""
327327
raise NotImplementedError
328328

329+
@abstractmethod
330+
def draw_mesh(self):
331+
raise NotImplementedError
332+
329333
@abstractmethod
330334
def clear_vertices(self):
331335
raise NotImplementedError

0 commit comments

Comments
 (0)