From f0955a3f4605124fe2bd710ebe6014445670442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Cerc=C3=B3s=20Pita?= Date: Wed, 1 Feb 2012 15:28:12 +0100 Subject: [PATCH] Fix error when try to fuse border into constant sections edges. Now constant edges are fused into border. --- src/Mod/Ship/shipOutlineDraw/Plot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Ship/shipOutlineDraw/Plot.py b/src/Mod/Ship/shipOutlineDraw/Plot.py index 155b6b0b6..7d21b2fbc 100644 --- a/src/Mod/Ship/shipOutlineDraw/Plot.py +++ b/src/Mod/Ship/shipOutlineDraw/Plot.py @@ -57,7 +57,8 @@ def Plot(scale, sections, shape): border = border.oldFuse(edges[i]) # Only group objects, don't try to build more complex entities border = border.oldFuse(edges[i].mirror(Vector(0.0, 0.0, 0.0),Vector(0.0, 1.0, 0.0))) # Fuse sections & borders - obj = sections.oldFuse(border) + # obj = sections.oldFuse(border) + obj = border.oldFuse(sections) # Send to 3D view Part.show(obj) objs = FreeCAD.ActiveDocument.Objects