RectangularWall: Add new stackable edges
bottom without finger holes and top with
This commit is contained in:
parent
aafc99b4a1
commit
c998509a7e
|
@ -39,19 +39,19 @@ class RectangularWall(Boxes):
|
||||||
|
|
||||||
self.argparser.add_argument(
|
self.argparser.add_argument(
|
||||||
"--bottom_edge", action="store",
|
"--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")
|
default="e", help="edge type for bottom edge")
|
||||||
self.argparser.add_argument(
|
self.argparser.add_argument(
|
||||||
"--right_edge", action="store",
|
"--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")
|
default="e", help="edge type for right edge")
|
||||||
self.argparser.add_argument(
|
self.argparser.add_argument(
|
||||||
"--top_edge", action="store",
|
"--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")
|
default="e", help="edge type for top edge")
|
||||||
self.argparser.add_argument(
|
self.argparser.add_argument(
|
||||||
"--left_edge", action="store",
|
"--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")
|
default="e", help="edge type for left edge")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue