Part generalFuse enable SetRunParallel

Test case:

http://forum.freecadweb.org/viewtopic.php?f=10&t=18179&p=143225#p143225
This commit is contained in:
triplus 2016-11-02 15:52:42 +01:00 committed by GitHub
parent e892d09f2e
commit 3d26fec75a

View File

@ -1413,6 +1413,7 @@ TopoDS_Shape TopoShape::generalFuse(const std::vector<TopoDS_Shape> &sOthers, St
throw Base::AttributeError("GFA is available only in OCC 6.9.0 and up.");
#else
BRepAlgoAPI_BuilderAlgo mkGFA;
mkGFA.SetRunParallel(true);
TopTools_ListOfShape GFAArguments;
GFAArguments.Append(this->_Shape);
for (const TopoDS_Shape &it: sOthers) {