From 45aca9fb55ed473fb65980067d74cc7b325bdf9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Tr=C3=B6ger?= Date: Tue, 14 Jul 2015 18:15:00 +0200 Subject: [PATCH] fix loft top face location --- src/Mod/PartDesign/App/FeatureLoft.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/PartDesign/App/FeatureLoft.cpp b/src/Mod/PartDesign/App/FeatureLoft.cpp index bcb24e287..a079e4ca7 100644 --- a/src/Mod/PartDesign/App/FeatureLoft.cpp +++ b/src/Mod/PartDesign/App/FeatureLoft.cpp @@ -150,6 +150,7 @@ App::DocumentObjectExecReturn *Loft::execute(void) //build the top and bottom face, sew the shell and build the final solid TopoDS_Shape front = makeFace(wires); + front.Move(invObjLoc); std::vector backwires; for(std::vector& wires : wiresections) backwires.push_back(wires.back());