Skip to content

Commit

Permalink
change lip
Browse files Browse the repository at this point in the history
  • Loading branch information
fidoriel committed Mar 4, 2024
1 parent 7477033 commit 3d2b57b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boxes/generators/brick_sorter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class BrickSorter(Boxes):
)
)

bottom_edge: str = "h"
bottom_edge: str = "s"
level: str
radius: int
wiggle: float
Expand Down Expand Up @@ -89,7 +89,7 @@ def _sieve_level_index(self) -> int:

@property
def _outer_height_after_nesting(self) -> float:
return self.h - ((2 * self.thickness + 2) * self._sieve_level_index)
return self.h - ((4 * self.thickness + 2) * self._sieve_level_index)

def _xy_after_nesting(self, a: float) -> float:
return a - ((2 * self.thickness + self.wiggle) * self._sieve_level_index)
Expand Down

0 comments on commit 3d2b57b

Please sign in to comment.