From c998509a7e546406cdfc7fd6929d9c4f77e9e941 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sun, 8 May 2022 12:21:28 +0200 Subject: [PATCH] RectangularWall: Add new stackable edges bottom without finger holes and top with --- boxes/generators/rectangularWall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/boxes/generators/rectangularWall.py b/boxes/generators/rectangularWall.py index 6175649..8806ddf 100644 --- a/boxes/generators/rectangularWall.py +++ b/boxes/generators/rectangularWall.py @@ -39,19 +39,19 @@ class RectangularWall(Boxes): self.argparser.add_argument( "--bottom_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), default="e", help="edge type for bottom edge") self.argparser.add_argument( "--right_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), default="e", help="edge type for right edge") self.argparser.add_argument( "--top_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), default="e", help="edge type for top edge") self.argparser.add_argument( "--left_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSšŠuUvV"), default="e", help="edge type for left edge")