From f40d4ac65b3127779457f3962ddb26e62551eb73 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 30 Jun 2014 22:16:34 -0300 Subject: [PATCH] Arch: disabled buggy wall auto-corners function --- src/Mod/Arch/ArchWall.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index e75b27ace..a9b690f4a 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -111,12 +111,15 @@ def mergeShapes(w1,w2): return None if w1.Base.Shape.Faces or w2.Base.Shape.Faces: return None + + # TODO fix this + return None eds = w1.Base.Shape.Edges + w2.Base.Shape.Edges import DraftGeomUtils w = DraftGeomUtils.findWires(eds) if len(w) == 1: - print "found common wire" + #print "found common wire" normal,length,width,height = w1.Proxy.getDefaultValues(w1) print w[0].Edges sh = w1.Proxy.getBase(w1,w[0],normal,width,height)