Salome HOME
Merge branch 'OCCT780'
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IBooleanOperations.hxx
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _GEOMImpl_IBooleanOperations_HXX_
24 #define _GEOMImpl_IBooleanOperations_HXX_
25
26 #include "GEOM_IOperations.hxx"
27
28 #include <TColStd_HArray1OfInteger.hxx>
29 #include "list"
30
31 class GEOM_Engine;
32 class GEOM_Object;
33
34 class GEOMImpl_IBooleanOperations : public GEOM_IOperations {
35  public:
36   Standard_EXPORT GEOMImpl_IBooleanOperations(GEOM_Engine* theEngine);
37   Standard_EXPORT ~GEOMImpl_IBooleanOperations();
38
39   Standard_EXPORT Handle(GEOM_Object) MakeBoolean
40                                 (Handle(GEOM_Object)    theShape1,
41                                  Handle(GEOM_Object)    theShape2,
42                                  const Standard_Integer theOp,
43                                  const Standard_Boolean IsCheckSelfInte,
44                                  const Standard_Real    theFuzzyParam = -1.);
45
46   Standard_EXPORT Handle(GEOM_Object) MakeFuse
47                                 (Handle(GEOM_Object) theShape1,
48                                  Handle(GEOM_Object) theShape2,
49                                  const bool          IsCheckSelfInte,
50                                  const bool          IsRmExtraEdges,
51                                  const Standard_Real theFuzzyParam = -1.);
52
53   Standard_EXPORT Handle(GEOM_Object) MakeFuseList
54                   (const Handle(TColStd_HSequenceOfTransient)& theShapes,
55                    const bool                                  IsCheckSelfInte,
56                    const bool                                  IsRmExtraEdges,
57                    const Standard_Real                         theFuzzyParam = -1.);
58
59   Standard_EXPORT Handle(GEOM_Object) MakeCommonList
60                   (const Handle(TColStd_HSequenceOfTransient)& theShapes,
61                    const Standard_Boolean                      IsCheckSelfInte,
62                    const Standard_Real                         theFuzzyParam = -1.);
63
64   Standard_EXPORT Handle(GEOM_Object) MakeCutList
65                   (Handle(GEOM_Object)                         theMainShape,
66                    const Handle(TColStd_HSequenceOfTransient)& theShapes,
67                    const Standard_Boolean                      IsCheckSelfInte,
68                    const Standard_Real                         theFuzzyParam = -1.);
69
70   Standard_EXPORT Handle(GEOM_Object) MakePartition
71                   (const Handle(TColStd_HSequenceOfTransient)& theShapes,
72                    const Handle(TColStd_HSequenceOfTransient)& theTools,
73                    const Handle(TColStd_HSequenceOfTransient)& theKeepInside,
74                    const Handle(TColStd_HSequenceOfTransient)& theRemoveInside,
75                    const Standard_Integer                      theLimit,
76                    const Standard_Boolean                      theRemoveWebs,
77                    const Handle(TColStd_HArray1OfInteger)&     theMaterials,
78                    const Standard_Integer                      theKeepNonlimitShapes,
79                    const Standard_Boolean                      thePerformSelfIntersections,
80                    const Standard_Boolean                      IsCheckSelfInte,
81                    const Standard_Real                         theFuzzyParam = -1.);
82
83   Standard_EXPORT Handle(GEOM_Object) MakeHalfPartition (Handle(GEOM_Object) theShape,
84                                                          Handle(GEOM_Object) thePlane,
85                                                          const Standard_Real theFuzzyParam = -1.);
86
87 private:
88
89   Handle(TColStd_HSequenceOfTransient) getShapeFunctions
90                   (const Handle(TColStd_HSequenceOfTransient)& theObjects,
91                          TCollection_AsciiString &theDescription);
92
93 };
94
95 #endif