X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_UnifySameDomain.cpp;h=320c30d8fd31b8b7ab81c1093c22f938b416873a;hb=c4eab94a20a0d93100549a210582d46409fec1cc;hp=795a0fac19512a83a9fa9597b84b26200da83bfd;hpb=d53349fc84ed4d78c2085d4ce80da6511f8b2b05;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_UnifySameDomain.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_UnifySameDomain.cpp index 795a0fac1..320c30d8f 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_UnifySameDomain.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_UnifySameDomain.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "GeomAlgoAPI_UnifySameDomain.h" @@ -48,18 +47,18 @@ void GeomAlgoAPI_UnifySameDomain::build(const ListOfShape& theShapes) // Make compound. GeomShapePtr aCompound = GeomAlgoAPI_CompoundBuilder::compound(theShapes); - ListOfShape aCombined, aFree; + ListOfShape aResults; GeomAlgoAPI_ShapeTools::combineShapes( aCompound, GeomAPI_Shape::SHELL, - aCombined, - aFree); + aResults); - if(aFree.size() > 0 || aCombined.size() > 1) { + if(aResults.size() > 1 || + (aResults.size() == 1 && aResults.front()->shapeType() > GeomAPI_Shape::SHELL)) { return; } - const TopoDS_Shape& aShell = aCombined.front()->impl(); + const TopoDS_Shape& aShell = aResults.front()->impl(); std::shared_ptr aShape(new GeomAPI_Shape()); aShape->setImpl(new TopoDS_Shape(aShell));