X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_MakeVolume.cpp;h=2b1c8b12498d0384fdd9f8f89fbd708c096e7a4f;hb=97917d3698f5a2f7fc9596e7c755ff8f6751e373;hp=50a69711bb9b184b86d8cf998b4d5aacdceb78e9;hpb=2c8455ba268cb7142fe59ee13421911385a1f423;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_MakeVolume.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_MakeVolume.cpp index 50a69711b..2b1c8b124 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_MakeVolume.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_MakeVolume.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_MakeVolume.h" @@ -27,7 +26,7 @@ //================================================================================================= std::shared_ptr GeomAlgoAPI_MakeVolume::make(const ListOfShape& theFaces) { - GeomAlgoAPI_MakeVolume aMkVolAlgo(theFaces); + GeomAlgoAPI_MakeVolume aMkVolAlgo(theFaces, false); GeomShapePtr aResult; if(aMkVolAlgo.isDone() && !aMkVolAlgo.shape()->isNull() && aMkVolAlgo.isValid()) aResult = aMkVolAlgo.shape(); @@ -35,8 +34,10 @@ std::shared_ptr GeomAlgoAPI_MakeVolume::make(const ListOfShape& t } //================================================================================================= -GeomAlgoAPI_MakeVolume::GeomAlgoAPI_MakeVolume(const ListOfShape& theFaces) +GeomAlgoAPI_MakeVolume::GeomAlgoAPI_MakeVolume( + const ListOfShape& theFaces, const bool theAvoidInternal) { + myAvoidInternal = theAvoidInternal; build(theFaces); } @@ -65,19 +66,13 @@ void GeomAlgoAPI_MakeVolume::build(const ListOfShape& theFaces) // parameters of the volume maker aVolumeMaker->SetArguments(anArgs); aVolumeMaker->SetIntersect(true); // split edges and faces - aVolumeMaker->SetAvoidInternalShapes(true); - aVolumeMaker->SetGlue(BOPAlgo_GlueShift); + aVolumeMaker->SetAvoidInternalShapes(myAvoidInternal); + aVolumeMaker->SetGlue(BOPAlgo_GlueOff); // building and getting result aVolumeMaker->Perform(); -#ifdef USE_OCCT_720 if (aVolumeMaker->HasErrors()) return; -#else - if(aVolumeMaker->ErrorStatus() != 0) { - return; - } -#endif TopoDS_Shape aResult = aVolumeMaker->Shape(); if(aResult.ShapeType() == TopAbs_COMPOUND) {