Skip to content

Commit

Permalink
Merge pull request #394 from gramaziokohler/ref_side
Browse files Browse the repository at this point in the history
changed to 1 based ref-side label names
  • Loading branch information
chenkasirer authored Feb 13, 2025
2 parents 4661679 + f5df832 commit 5b57973
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 @@ -53,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Changed input type from `Element` to `Beam` in components that currently only support beams.
* Fixed drilling GH component not taking diameter as a string.
* Reworked `Wall` class to be defined with a standard polyline, frame and thickness.
* Changed labels in `Show_ref_sides` GH component to be 1-based to match the spec.

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def RunScript(self, Beam, RefSideIndex):
frame.point = surface.point_at(0, ht / 4.0)

self.pl.append(frame_to_rhino(frame))
self.txt.append("RS_{}".format(side_index))
self.txt.append(surface.name)
self.ht.append(ht)

return srfs
Expand Down

0 comments on commit 5b57973

Please sign in to comment.