Skip to content

Commit 6de0bbe

Browse files
authored
Merge branch 'main' into fix_expected_Array
2 parents 8abff35 + ebaaa77 commit 6de0bbe

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
* Fixed args for `SceneObject` on Grasshopper `Draw` component.
1415
* Replaced use of `Rhino.Geometry.VertexColors.SetColors` with a for loop and `SetColor` in `compas_ghpyton` since the former requires a `System.Array`.
1516

1617
### Removed

src/compas_ghpython/components/Compas_ToRhinoGeometry/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ def RunScript(self, cg):
1212
if not cg:
1313
return None
1414

15-
return SceneObject(cg).draw()
15+
return SceneObject(item=cg).draw()

0 commit comments

Comments
 (0)