X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_PaveFiller.cpp;h=de0eee7eb3697b91002beda20f49729683832a45;hb=a55586483e5dccc5466d6ec241e2147e210d839f;hp=76df6cbb93dc0510e0c8fec5f3840d37afce968b;hpb=6f2932a147e8e5b2eb226b8fea2c2bf9fec16a0e;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp index 76df6cbb9..de0eee7eb 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_PaveFiller.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAlgoAPI_PaveFiller.cpp -// Created: 27 August 2015 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2017 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include "GeomAlgoAPI_PaveFiller.h" @@ -15,7 +29,7 @@ #include //================================================================================================= -GeomAlgoAPI_PaveFiller::GeomAlgoAPI_PaveFiller(const ListOfShape& theListOfShape, +GeomAlgoAPI_PaveFiller::GeomAlgoAPI_PaveFiller(const ListOfShape& theListOfShape, const bool theIsMakeCompSolids) { build(theListOfShape, theIsMakeCompSolids); @@ -26,9 +40,9 @@ GeomAlgoAPI_PaveFiller::GeomAlgoAPI_PaveFiller(const ListOfShape& theListOfShape void GeomAlgoAPI_PaveFiller::build(const ListOfShape& theListOfShape, const bool theIsMakeCompSolids) { - BOPAlgo_PaveFiller aPaveFiller; - BOPCol_ListOfShape aListOfShape; - for(ListOfShape::const_iterator + 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(); if(aShape.ShapeType() == TopAbs_COMPOUND) { @@ -39,22 +53,18 @@ 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); + 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) { + aBuilder->PerformWithFiller(*aPaveFiller); + if (aBuilder->HasErrors()) return; - } TopoDS_Shape aResult = aBuilder->Shape(); if(aResult.ShapeType() == TopAbs_COMPOUND) {