X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_PaveFiller.cpp;h=27af42e71a7ebaacad2f7a20cdcb184a637aecb6;hb=57f95f226733dbd01fcd42c4b1f842c71560b7d7;hp=96d77420561e8a34dd3dbffc8bbefee840470a2b;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp index 96d774205..27af42e71 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-2022 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,9 +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" @@ -27,20 +27,23 @@ #include #include + //================================================================================================= GeomAlgoAPI_PaveFiller::GeomAlgoAPI_PaveFiller(const ListOfShape& theListOfShape, - const bool theIsMakeCompSolids) + const bool theIsMakeCompSolids, + const double theFuzzy) { - build(theListOfShape, theIsMakeCompSolids); + build(theListOfShape, theIsMakeCompSolids, theFuzzy); } //================================================================================================= void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, - const bool theIsMakeCompSolids) + const bool theIsMakeCompSolids, + const double theFuzzy) { - BOPAlgo_PaveFiller aPaveFiller; - BOPCol_ListOfShape aListOfShape; + BOPAlgo_PaveFiller* aPaveFiller = new BOPAlgo_PaveFiller; + TopTools_ListOfShape aListOfShape; for(ListOfShape::const_iterator anIt = theListOfShape.cbegin(); anIt != theListOfShape.cend(); anIt++) { const TopoDS_Shape& aShape = (*anIt)->impl(); @@ -52,22 +55,20 @@ void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, aListOfShape.Append(aShape); } } - aPaveFiller.SetArguments(aListOfShape); - aPaveFiller.Perform(); - Standard_Integer iErr = aPaveFiller.ErrorStatus(); - if(iErr) { + aPaveFiller->SetArguments(aListOfShape); + if (theFuzzy > 0) aPaveFiller->SetFuzzyValue(theFuzzy); + aPaveFiller->Perform(); + if (aPaveFiller->HasErrors()) return; - } BOPAlgo_Builder* aBuilder = new BOPAlgo_Builder(); this->setImpl(aBuilder); this->setBuilderType(OCCT_BOPAlgo_Builder); aBuilder->SetArguments(aListOfShape); - aBuilder->PerformWithFiller(aPaveFiller); - iErr = aBuilder->ErrorStatus(); - if(iErr) { + if (theFuzzy > 0) aBuilder->SetFuzzyValue(theFuzzy); + aBuilder->PerformWithFiller(*aPaveFiller); + if (aBuilder->HasErrors()) return; - } TopoDS_Shape aResult = aBuilder->Shape(); if(aResult.ShapeType() == TopAbs_COMPOUND) { @@ -76,11 +77,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(); }