Salome HOME
Merge branch 'Port_SALOME_8.5.0'
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeVolume.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "GeomAlgoAPI_MakeVolume.h"
22
23 #include <GeomAlgoAPI_ShapeTools.h>
24
25 #include <BOPAlgo_MakerVolume.hxx>
26
27 //=================================================================================================
28 std::shared_ptr<GeomAPI_Shape> GeomAlgoAPI_MakeVolume::make(const ListOfShape& theFaces)
29 {
30   GeomAlgoAPI_MakeVolume aMkVolAlgo(theFaces, false);
31   GeomShapePtr aResult;
32   if(aMkVolAlgo.isDone() && !aMkVolAlgo.shape()->isNull() && aMkVolAlgo.isValid())
33     aResult = aMkVolAlgo.shape();
34   return aResult;
35 }
36
37 //=================================================================================================
38 GeomAlgoAPI_MakeVolume::GeomAlgoAPI_MakeVolume(
39   const ListOfShape& theFaces, const bool theAvoidInternal)
40 {
41   myAvoidInternal = theAvoidInternal;
42   build(theFaces);
43 }
44
45 static void convertToTopoDS(const ListOfShape& theShapes, TopTools_ListOfShape& theTopoDSShapes)
46 {
47   for (ListOfShape::const_iterator anIt = theShapes.begin(); anIt != theShapes.end(); ++anIt)
48     theTopoDSShapes.Append((*anIt)->impl<TopoDS_Shape>());
49 }
50
51 //=================================================================================================
52 void GeomAlgoAPI_MakeVolume::build(const ListOfShape& theFaces)
53 {
54   if (theFaces.empty()) {
55     return;
56   }
57
58   // create make volume opration
59   BOPAlgo_MakerVolume* aVolumeMaker = new BOPAlgo_MakerVolume;
60   this->setImpl(aVolumeMaker);
61   this->setBuilderType(OCCT_BOPAlgo_Builder);
62
63   // list of arguments
64   TopTools_ListOfShape anArgs;
65   convertToTopoDS(theFaces, anArgs);
66
67   // parameters of the volume maker
68   aVolumeMaker->SetArguments(anArgs);
69   aVolumeMaker->SetIntersect(true); // split edges and faces
70   aVolumeMaker->SetAvoidInternalShapes(myAvoidInternal);
71   aVolumeMaker->SetGlue(BOPAlgo_GlueOff);
72
73   // building and getting result
74   aVolumeMaker->Perform();
75   if (aVolumeMaker->HasErrors())
76     return;
77   TopoDS_Shape aResult = aVolumeMaker->Shape();
78
79   if(aResult.ShapeType() == TopAbs_COMPOUND) {
80     std::shared_ptr<GeomAPI_Shape> aGeomShape(new GeomAPI_Shape);
81     aGeomShape->setImpl(new TopoDS_Shape(aResult));
82     aResult = GeomAlgoAPI_ShapeTools::groupSharedTopology(aGeomShape)->impl<TopoDS_Shape>();
83   }
84
85   // Setting result.
86   if(aResult.IsNull()) {
87     return;
88   }
89   std::shared_ptr<GeomAPI_Shape> aShape(new GeomAPI_Shape());
90   aShape->setImpl(new TopoDS_Shape(aResult));
91   this->setShape(aShape);
92   this->setDone(true);
93 }