From be7115007dd5a4091bc4bc87213cc04d87754c52 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Mon, 24 May 2021 22:15:05 +0200 Subject: [PATCH] SlatwallPinRow: Make it actually work Remove finger joints from pinplate as there are not matching holes. Move finger holes on back plate to right place. --- boxes/generators/slatwallpinrow.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/boxes/generators/slatwallpinrow.py b/boxes/generators/slatwallpinrow.py index c4bdf44..84a7066 100644 --- a/boxes/generators/slatwallpinrow.py +++ b/boxes/generators/slatwallpinrow.py @@ -39,7 +39,6 @@ class PinEdge(edges.BaseEdge): class SlatwallPinRow(Boxes): """Outset and angled plate to mount stuff to""" - ui_group = "Unstable" ui_group = "SlatWall" def __init__(self): @@ -92,7 +91,7 @@ class SlatwallPinRow(Boxes): def backCB(self): t = self.thickness - self.fingerHolesAt(0, 2.5*t, self.x, 0) + self.fingerHolesAt(0, 2*t, self.x, 0) if self.angle < 0.001: return for i in range(1, self.hooks-1): @@ -175,7 +174,7 @@ class SlatwallPinRow(Boxes): self.x = x = n*self.pinspacing + (n)*(n-1)/2 *self.pinspacing_increment - self.rectangularWall(x, 3*t, [p, "f", "f", "f"], move="up") + self.rectangularWall(x, 3*t, [p, "e", "f", "e"], move="up") self.rectangularWall(x, self.h, "efef", callback=[self.frontCB], move="up") self.rectangularWall(x, self.h/2, "efef", callback=[self.backCB],