X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_PaveFiller.cpp;h=7a2e45baa02b9ae2d7dc8bc5f448105f0631695c;hb=b7f954c1e5b9da1fc425908ac4edfebb513ebf23;hp=95a3440720ba5d7060db63a7a2d57e83df7abb54;hpb=dc7d4d86b58b81684abc9b5a2be8ec30f210c2da;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp index 95a344072..7a2e45baa 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.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_PaveFiller.h" @@ -41,7 +40,7 @@ void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, const bool theIsMakeCompSolids) { BOPAlgo_PaveFiller* aPaveFiller = new BOPAlgo_PaveFiller; - BOPCol_ListOfShape aListOfShape; + TopTools_ListOfShape aListOfShape; for(ListOfShape::const_iterator anIt = theListOfShape.cbegin(); anIt != theListOfShape.cend(); anIt++) { const TopoDS_Shape& aShape = (*anIt)->impl(); @@ -55,30 +54,16 @@ void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, } aPaveFiller->SetArguments(aListOfShape); aPaveFiller->Perform(); -#ifdef USE_OCCT_720 if (aPaveFiller->HasErrors()) return; -#else - Standard_Integer iErr = aPaveFiller->ErrorStatus(); - if(iErr) { - return; - } -#endif BOPAlgo_Builder* aBuilder = new BOPAlgo_Builder(); this->setImpl(aBuilder); this->setBuilderType(OCCT_BOPAlgo_Builder); aBuilder->SetArguments(aListOfShape); aBuilder->PerformWithFiller(*aPaveFiller); -#ifdef USE_OCCT_720 if (aBuilder->HasErrors()) return; -#else - iErr = aBuilder->ErrorStatus(); - if(iErr) { - return; - } -#endif TopoDS_Shape aResult = aBuilder->Shape(); if(aResult.ShapeType() == TopAbs_COMPOUND) { @@ -87,11 +72,10 @@ void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, if(theIsMakeCompSolids && aResult.ShapeType() == TopAbs_COMPOUND) { std::shared_ptr aGeomShape(new GeomAPI_Shape); aGeomShape->setImpl(new TopoDS_Shape(aResult)); - ListOfShape aCompSolids, aFreeSolids; + ListOfShape aResults; aGeomShape = GeomAlgoAPI_ShapeTools::combineShapes(aGeomShape, GeomAPI_Shape::COMPSOLID, - aCompSolids, - aFreeSolids); + aResults); aResult = aGeomShape->impl(); }