Skip to content

Commit

Permalink
Merge pull request #9 from jeroen94704/base_only
Browse files Browse the repository at this point in the history
Allow solid bin of 1 unit high to make a bin-base only
  • Loading branch information
jeroen94704 authored Jun 14, 2024
2 parents 286864d + 6594c49 commit 5a7d4e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions generators/solidbin/solidbin_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ def brick_floor(self, basePlane):
def outer_wall(self, basePlane):
"""Create the outer wall of the bin"""

if self.compartmentSizeZ == 0:
return

sizeZ = self.compartmentSizeZ

if self.settings.addStackingLip:
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"

0 comments on commit 5a7d4e6

Please sign in to comment.