Skip to content

Commit

Permalink
Merge pull request #181 from gramaziokohler/width_height_bug_fix
Browse files Browse the repository at this point in the history
Width_height_bug_fix
  • Loading branch information
obucklin authored Jan 29, 2024
2 parents 55f2777 + a340b12 commit 2e182f9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified examples/Grasshopper/CT_NEW_UI_Example.3dm
Binary file not shown.
Binary file modified examples/Grasshopper/CT_NEW_UI_Example.gh
Binary file not shown.
4 changes: 2 additions & 2 deletions src/compas_timber/fabrication/btlx.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def __init__(self, beam):
self.beam = beam
self.key = beam.key
self.length = beam.length
self.width = beam.width
self.height = beam.height
self.width = beam.height
self.height = beam.width
self.frame = Frame(
self.beam.long_edges[2].closest_point(self.beam.blank_frame.point),
beam.frame.xaxis,
Expand Down

0 comments on commit 2e182f9

Please sign in to comment.