Skip to content

Commit 1c70bae

Browse files
committed
log
1 parent b1b5ea7 commit 1c70bae

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Changed
1616

17+
* Fixed backward compatibility problem with artists by adding back `Artist.build` and `Artist.build_as`.
18+
* Fixed backward compatibility problem with artists by adding `compas_rhino.artists.BaseArtist` alias for `compas_rhino.artists.RhinoArtist`.
19+
1720
### Removed
1821

1922

src/compas_blender/artists/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@
9696
from .torusartist import TorusArtist
9797

9898

99-
BaseArtist = BlenderArtist
100-
101-
10299
@plugin(category='drawing-utils', pluggable_name='clear', requires=['bpy'])
103100
def clear_blender():
104101
compas_blender.clear()
@@ -152,7 +149,6 @@ def new_artist_blender(cls, *args, **kwargs):
152149

153150

154151
__all__ = [
155-
'BaseArtist',
156152
'BlenderArtist',
157153
'BoxArtist',
158154
'CapsuleArtist',

src/compas_ghpython/artists/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@
112112
from .volmeshartist import VolMeshArtist
113113

114114

115-
BaseArtist = GHArtist
116-
117-
118115
ShapeArtist.default_color = (255, 255, 255)
119116

120117
MeshArtist.default_color = (0, 0, 0)
@@ -192,7 +189,6 @@ def new_artist_gh(cls, *args, **kwargs):
192189

193190

194191
__all__ = [
195-
'BaseArtist',
196192
'GHArtist',
197193
'ShapeArtist',
198194
'BoxArtist',

0 commit comments

Comments
 (0)