From e80a21a26a485fe6bf5325a96f8a7290307383e5 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Wed, 7 Jul 2021 18:54:34 +0200 Subject: [PATCH] Arch: Fix Arch_Wall: block joints where put on the wrong side of offset In the execute method block joints were put on the wrong side of the offset which lead to the first block in each row being larger than intended. --- src/Mod/Arch/ArchWall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index 78f1d2afe6..52684faeda 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -858,7 +858,7 @@ class _Wall(ArchComponent.Component): p2 = edge.valueAt(offset).add(p.negative()) sh = Part.LineSegment(p1,p2).toShape() if obj.Joint.Value: - sh = sh.extrude(t.multiply(obj.Joint.Value)) + sh = sh.extrude(-t.multiply(obj.Joint.Value)) sh = sh.extrude(n) if i == 0: cuts1.append(sh)