DrillBox: Extend finger joints on sides to whole height
This commit is contained in:
parent
8076566616
commit
be68061b17
|
@ -101,14 +101,18 @@ class DrillBox(_TopEdge):
|
||||||
|
|
||||||
self.rectangularWall(
|
self.rectangularWall(
|
||||||
x, h, [b, "f", t1, "F"],
|
x, h, [b, "f", t1, "F"],
|
||||||
|
ignore_widths=[1, 6],
|
||||||
callback=[lambda: self.sideholes(x)], move="right")
|
callback=[lambda: self.sideholes(x)], move="right")
|
||||||
self.rectangularWall(
|
self.rectangularWall(
|
||||||
y, h, [b, "f", t2, "F"], callback=[lambda: self.sideholes(y)],
|
y, h, [b, "f", t2, "F"], callback=[lambda: self.sideholes(y)],
|
||||||
|
ignore_widths=[1, 6],
|
||||||
move="up")
|
move="up")
|
||||||
self.rectangularWall(
|
self.rectangularWall(
|
||||||
y, h, [b, "f", t3, "F"], callback=[lambda: self.sideholes(y)])
|
y, h, [b, "f", t3, "F"], callback=[lambda: self.sideholes(y)],
|
||||||
|
ignore_widths=[1, 6])
|
||||||
self.rectangularWall(
|
self.rectangularWall(
|
||||||
x, h, [b, "f", t4, "F"],
|
x, h, [b, "f", t4, "F"],
|
||||||
|
ignore_widths=[1, 6],
|
||||||
callback=[lambda: self.sideholes(x)], move="left up")
|
callback=[lambda: self.sideholes(x)], move="left up")
|
||||||
if b != "e":
|
if b != "e":
|
||||||
self.rectangularWall(x, y, "ffff", move="right")
|
self.rectangularWall(x, y, "ffff", move="right")
|
||||||
|
|
Loading…
Reference in New Issue