Skip to content

Commit 361cad3

Browse files
committed
Merge branch 'main' into rhino-interop
2 parents efccc6e + 7ef0ec8 commit 361cad3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Changed
1313

1414
* Fixed bug in combination of `compas_rhino.artists.MeshArtist.draw_mesh` and `compas_rhino.utilities.drawing.draw_mesh`.
15+
* Changed abstract method `compas.artists.MeshArtist.draw_mesh` to implemented method in `compas_plotters.artists.MeshArtist.draw_mesh`.
1516

1617
### Removed
1718

src/compas_plotters/artists/meshartist.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,9 @@ def draw(self,
238238
if self.show_faces:
239239
self.draw_faces(faces=faces, color=facecolor)
240240

241+
def draw_mesh(self):
242+
raise NotImplementedError
243+
241244
def draw_vertices(self,
242245
vertices: Optional[List[int]] = None,
243246
color: Optional[Union[str, Color, List[Color], Dict[int, Color]]] = None

0 commit comments

Comments
 (0)