HingeBox: Add support for split lids
This commit is contained in:
parent
d636e9f0eb
commit
b07983582e
|
@ -29,34 +29,59 @@ class HingeBox(Boxes):
|
||||||
self.argparser.add_argument(
|
self.argparser.add_argument(
|
||||||
"--lidheight", action="store", type=float, default=20.0,
|
"--lidheight", action="store", type=float, default=20.0,
|
||||||
help="height of lid in mm")
|
help="height of lid in mm")
|
||||||
|
self.argparser.add_argument(
|
||||||
|
"--splitlid", action="store", type=float, default=0.0,
|
||||||
|
help="split the lid in y direction (mm)")
|
||||||
|
|
||||||
def render(self):
|
def render(self):
|
||||||
self.open()
|
self.open()
|
||||||
|
|
||||||
x, y, h, hl = self.x, self.y, self.h, self.lidheight
|
x, y, h, hl = self.x, self.y, self.h, self.lidheight
|
||||||
|
s = self.splitlid
|
||||||
|
|
||||||
if self.outside:
|
if self.outside:
|
||||||
x = self.adjustSize(x)
|
x = self.adjustSize(x)
|
||||||
y = self.adjustSize(y)
|
y = self.adjustSize(y)
|
||||||
h = self.adjustSize(h)
|
h = self.adjustSize(h)
|
||||||
|
s = self.adjustSize(s, None) # reduce by half of the walls
|
||||||
|
|
||||||
|
if s > x or s < 0.0: s = 0.0
|
||||||
t = self.thickness
|
t = self.thickness
|
||||||
|
|
||||||
|
# bottom walls
|
||||||
|
if s:
|
||||||
|
self.rectangularWall(x, h, "FFuF", move="right")
|
||||||
|
else:
|
||||||
self.rectangularWall(x, h, "FFeF", move="right")
|
self.rectangularWall(x, h, "FFeF", move="right")
|
||||||
self.rectangularWall(y, h, "Ffef", move="up")
|
self.rectangularWall(y, h, "Ffef", move="up")
|
||||||
self.rectangularWall(y, h, "Ffef")
|
self.rectangularWall(y, h, "Ffef")
|
||||||
self.rectangularWall(x, h, "FFuF", move="left up")
|
self.rectangularWall(x, h, "FFuF", move="left up")
|
||||||
|
|
||||||
|
print(s, bool(s))
|
||||||
|
|
||||||
|
# lid
|
||||||
self.rectangularWall(x, hl, "UFFF", move="right")
|
self.rectangularWall(x, hl, "UFFF", move="right")
|
||||||
|
if s:
|
||||||
|
self.rectangularWall(s, hl, "eeFf", move="right")
|
||||||
|
self.rectangularWall(y-s, hl, "efFe", move="up")
|
||||||
|
self.rectangularWall(y-s, hl, "eeFf")
|
||||||
|
self.rectangularWall(s, hl, "efFe", move="left")
|
||||||
|
self.rectangularWall(x, hl, "UFFF", move="left up")
|
||||||
|
else:
|
||||||
self.rectangularWall(y, hl, "efFf", move="up")
|
self.rectangularWall(y, hl, "efFf", move="up")
|
||||||
self.rectangularWall(y, hl, "efFf")
|
self.rectangularWall(y, hl, "efFf")
|
||||||
self.rectangularWall(x, hl, "eFFF", move="left up")
|
self.rectangularWall(x, hl, "eFFF", move="left up")
|
||||||
|
|
||||||
self.rectangularWall(x, y, "ffff", move="right")
|
self.rectangularWall(x, y, "ffff", move="right only")
|
||||||
self.rectangularWall(x, y, "ffff")
|
self.rectangularWall(x, y, "ffff")
|
||||||
self.rectangularWall(x, y, "ffff", move="left up only")
|
if s:
|
||||||
self.edges['u'].parts()
|
self.rectangularWall(x, s, "ffef", move="left up")
|
||||||
|
self.rectangularWall(x, y-s, "efff", move="up")
|
||||||
|
else:
|
||||||
|
self.rectangularWall(x, y, "ffff", move="left up")
|
||||||
|
self.edges['u'].parts(move="up")
|
||||||
|
if s:
|
||||||
|
self.edges['u'].parts(move="up")
|
||||||
|
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue