Skip to content

Commit

Permalink
Merge branch 'main' into fix_expected_Array
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalocasas committed Aug 29, 2024
2 parents 8abff35 + ebaaa77 commit 6de0bbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

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

### Removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def RunScript(self, cg):
if not cg:
return None

return SceneObject(cg).draw()
return SceneObject(item=cg).draw()

0 comments on commit 6de0bbe

Please sign in to comment.