Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_Gluer.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _GEOMAlgo_Gluer_HeaderFile
21 #define _GEOMAlgo_Gluer_HeaderFile
22
23 #ifndef _Standard_Boolean_HeaderFile
24 #include <Standard_Boolean.hxx>
25 #endif
26 #ifndef _Standard_Real_HeaderFile
27 #include <Standard_Real.hxx>
28 #endif
29 #ifndef _TopTools_DataMapOfShapeListOfShape_HeaderFile
30 #include <TopTools_DataMapOfShapeListOfShape.hxx>
31 #endif
32 #ifndef _TopTools_DataMapOfShapeShape_HeaderFile
33 #include <TopTools_DataMapOfShapeShape.hxx>
34 #endif
35 #ifndef _Standard_Integer_HeaderFile
36 #include <Standard_Integer.hxx>
37 #endif
38 #ifndef _TopTools_ListOfShape_HeaderFile
39 #include <TopTools_ListOfShape.hxx>
40 #endif
41 #ifndef _TopTools_MapOfShape_HeaderFile
42 #include <TopTools_MapOfShape.hxx>
43 #endif
44 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
45 #include <GEOMAlgo_ShapeAlgo.hxx>
46 #endif
47 #ifndef _TopAbs_ShapeEnum_HeaderFile
48 #include <TopAbs_ShapeEnum.hxx>
49 #endif
50 #ifndef _TopoDS_Compound_HeaderFile
51 #include <TopoDS_Compound.hxx>
52 #endif
53 class TopTools_ListOfShape;
54 class TopoDS_Shape;
55 class TopoDS_Edge;
56 class GEOMAlgo_PassKeyShape;
57 class TopoDS_Face;
58 class TopoDS_Vertex;
59 class TopTools_DataMapOfShapeListOfShape;
60 class TopTools_DataMapOfShapeShape;
61
62
63 #ifndef _Standard_HeaderFile
64 #include <Standard.hxx>
65 #endif
66 #ifndef _Standard_Macro_HeaderFile
67 #include <Standard_Macro.hxx>
68 #endif
69
70
71 class GEOMAlgo_Gluer  : public GEOMAlgo_ShapeAlgo {
72
73 public:
74
75     void* operator new(size_t,void* anAddress) 
76       {
77         return anAddress;
78       }
79     void* operator new(size_t size) 
80       { 
81         return Standard::Allocate(size); 
82       }
83     void  operator delete(void *anAddress) 
84       { 
85         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
86       }
87  // Methods PUBLIC
88  // 
89
90
91 Standard_EXPORT GEOMAlgo_Gluer();
92 Standard_EXPORT virtual ~GEOMAlgo_Gluer();
93
94
95 Standard_EXPORT   void SetCheckGeometry(const Standard_Boolean aFlag) ;
96
97
98 Standard_EXPORT   Standard_Boolean CheckGeometry() const;
99
100
101 Standard_EXPORT   void SetKeepNonSolids(const Standard_Boolean aFlag) ;
102
103
104 Standard_EXPORT virtual  void Perform() ;
105
106
107 Standard_EXPORT   Standard_Integer AloneShapes() const;
108
109
110 Standard_EXPORT  const TopTools_ListOfShape& Modified(const TopoDS_Shape& S) ;
111
112
113 Standard_EXPORT  const TopTools_ListOfShape& Generated(const TopoDS_Shape& S) ;
114
115
116 Standard_EXPORT   Standard_Boolean IsDeleted(const TopoDS_Shape& S) ;
117
118
119 Standard_EXPORT  const TopTools_DataMapOfShapeListOfShape& Images() const;
120
121
122 Standard_EXPORT  const TopTools_DataMapOfShapeShape& Origins() const;
123
124
125
126
127
128 protected:
129
130  // Methods PROTECTED
131  // 
132
133
134 Standard_EXPORT virtual  void CheckData() ;
135
136
137 Standard_EXPORT virtual  void CheckResult() ;
138
139
140 Standard_EXPORT   void MakeVertices() ;
141
142
143 Standard_EXPORT   void MakeEdges() ;
144
145
146 Standard_EXPORT   void MakeFaces() ;
147
148
149 Standard_EXPORT   void MakeShapes(const TopAbs_ShapeEnum aType) ;
150
151
152 Standard_EXPORT   void MakeShells() ;
153
154
155 Standard_EXPORT   void MakeSubShapes(const TopoDS_Shape& theShape,
156                                      TopTools_MapOfShape& theMS,
157                                      TopoDS_Compound& theResult);
158
159
160 Standard_EXPORT   void MakeSolids() ;
161
162
163 Standard_EXPORT   void InnerTolerance() ;
164
165
166 Standard_EXPORT   void EdgePassKey(const TopoDS_Edge& aE,GEOMAlgo_PassKeyShape& aPK) ;
167
168
169 Standard_EXPORT   void FacePassKey(const TopoDS_Face& aF,GEOMAlgo_PassKeyShape& aPK) ;
170
171
172 Standard_EXPORT   void MakeVertex(const TopTools_ListOfShape& aLV,TopoDS_Vertex& aNewV) ;
173
174
175 Standard_EXPORT   void MakeEdge(const TopoDS_Edge& aEdge,TopoDS_Edge& aNewEdge) ;
176
177
178 Standard_EXPORT   void MakeFace(const TopoDS_Face& aFace,TopoDS_Face& aNewEdge) ;
179
180
181 Standard_EXPORT   Standard_Boolean IsToReverse(const TopoDS_Face& aFR,const TopoDS_Face& aF) ;
182
183
184 Standard_EXPORT   Standard_Boolean HasNewSubShape(const TopoDS_Shape& aS) const;
185
186
187  // Fields PROTECTED
188  //
189 Standard_Boolean myCheckGeometry;
190 Standard_Boolean myKeepNonSolids;
191 Standard_Real myTol;
192 TopTools_DataMapOfShapeListOfShape myImages;
193 TopTools_DataMapOfShapeShape myOrigins;
194 Standard_Integer myNbAlone;
195 TopTools_ListOfShape myGenerated;
196
197
198 private: 
199
200  // Methods PRIVATE
201  // 
202
203
204  // Fields PRIVATE
205  //
206
207
208 };
209
210
211
212
213
214 // other Inline functions and methods (like "C++: function call" methods)
215 //
216
217
218 #endif