From ff6a2b955a6e1de495726da06b021f4b3856328a Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sun, 2 Jan 2022 11:53:45 +0100 Subject: [PATCH] CardBox: Put lid pieces together to make it easier to understand that goes together --- boxes/generators/cardbox.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boxes/generators/cardbox.py b/boxes/generators/cardbox.py index 3244ee0..3748f7e 100644 --- a/boxes/generators/cardbox.py +++ b/boxes/generators/cardbox.py @@ -123,10 +123,11 @@ Add the top of the rails to the sides and the grip rail to the lid (still missin self.addPart(p) with self.saved_context(): - self.rectangularWall(x-t*.2, y, "Feee", move="right", label="Lid") + self.rectangularWall(x-t*.2, y, "eeFe", move="right", label="Lid") self.rectangularWall(x, y, "ffff", callback=[self.divider_bottom], move="right", label="Bottom") - self.rectangularWall(x, y, "EEEE", move="up only") + self.rectangularWall(x, y, "eEEE", move="up only") + self.rectangularWall(x-t*.2, t, "fEeE", move="up", label="Lid Lip") with self.saved_context(): self.rectangularWall(x, h+t, "FFEF", @@ -139,7 +140,6 @@ Add the top of the rails to the sides and the grip rail to the lid (still missin label="Front") self.rectangularWall(x, h+t, "EEEE", move="up only") - self.rectangularWall(x-t*.2, t, "fEeE", move="up", label="Lid Lip") with self.saved_context(): self.rectangularWall(y, h+t, "FfFf", move="right", label="Outer Side Left")