From be68061b170304e0e6fe88dada199d9449ff3c82 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Thu, 28 Jul 2022 22:33:33 +0200 Subject: [PATCH] DrillBox: Extend finger joints on sides to whole height --- boxes/generators/drillbox.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/boxes/generators/drillbox.py b/boxes/generators/drillbox.py index ad8617a..77ec32f 100644 --- a/boxes/generators/drillbox.py +++ b/boxes/generators/drillbox.py @@ -101,14 +101,18 @@ class DrillBox(_TopEdge): self.rectangularWall( x, h, [b, "f", t1, "F"], + ignore_widths=[1, 6], callback=[lambda: self.sideholes(x)], move="right") self.rectangularWall( y, h, [b, "f", t2, "F"], callback=[lambda: self.sideholes(y)], + ignore_widths=[1, 6], move="up") 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( x, h, [b, "f", t4, "F"], + ignore_widths=[1, 6], callback=[lambda: self.sideholes(x)], move="left up") if b != "e": self.rectangularWall(x, y, "ffff", move="right")