Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_FinderShapeOn2.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_FinderShapeOn2_HeaderFile
21 #define _GEOMAlgo_FinderShapeOn2_HeaderFile
22
23 #ifndef _TopAbs_ShapeEnum_HeaderFile
24 #include <TopAbs_ShapeEnum.hxx>
25 #endif
26 #ifndef _GEOMAlgo_State_HeaderFile
27 #include <GEOMAlgo_State.hxx>
28 #endif
29 #ifndef _Standard_Integer_HeaderFile
30 #include <Standard_Integer.hxx>
31 #endif
32 #ifndef _Handle_GEOMAlgo_Clsf_HeaderFile
33 #include <Handle_GEOMAlgo_Clsf.hxx>
34 #endif
35 #ifndef _TopTools_ListOfShape_HeaderFile
36 #include <TopTools_ListOfShape.hxx>
37 #endif
38 #ifndef _GEOMAlgo_IndexedDataMapOfShapeState_HeaderFile
39 #include <GEOMAlgo_IndexedDataMapOfShapeState.hxx>
40 #endif
41 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
42 #include <GEOMAlgo_ShapeAlgo.hxx>
43 #endif
44 class GEOMAlgo_Clsf;
45 class TopTools_ListOfShape;
46 class TopoDS_Face;
47 class GEOMAlgo_ListOfPnt;
48 class TopoDS_Edge;
49 class GEOMAlgo_IndexedDataMapOfShapeState;
50
51
52 #ifndef _Standard_HeaderFile
53 #include <Standard.hxx>
54 #endif
55 #ifndef _Standard_Macro_HeaderFile
56 #include <Standard_Macro.hxx>
57 #endif
58
59
60 class GEOMAlgo_FinderShapeOn2  : public GEOMAlgo_ShapeAlgo {
61
62 public:
63
64     void* operator new(size_t,void* anAddress) 
65       {
66         return anAddress;
67       }
68     void* operator new(size_t size) 
69       { 
70         return Standard::Allocate(size); 
71       }
72     void  operator delete(void *anAddress) 
73       { 
74         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
75       }
76  // Methods PUBLIC
77  // 
78
79
80 Standard_EXPORT GEOMAlgo_FinderShapeOn2();
81 Standard_EXPORT virtual ~GEOMAlgo_FinderShapeOn2();
82
83
84 Standard_EXPORT   void SetClsf(const Handle(GEOMAlgo_Clsf)& aClsf) ;
85
86
87 Standard_EXPORT  const Handle_GEOMAlgo_Clsf& Clsf() const;
88
89
90 Standard_EXPORT   void SetShapeType(const TopAbs_ShapeEnum aST) ;
91
92
93 Standard_EXPORT   TopAbs_ShapeEnum ShapeType() const;
94
95
96 Standard_EXPORT   void SetState(const GEOMAlgo_State aSF) ;
97
98
99 Standard_EXPORT   GEOMAlgo_State State() const;
100
101
102 Standard_EXPORT   void SetNbPntsMin(const Standard_Integer aNb) ;
103
104
105 Standard_EXPORT   Standard_Integer NbPntsMin() const;
106
107
108 Standard_EXPORT   void SetNbPntsMax(const Standard_Integer aNb) ;
109
110
111 Standard_EXPORT   Standard_Integer NbPntsMax() const;
112
113
114 Standard_EXPORT virtual  void Perform() ;
115
116
117 Standard_EXPORT  const TopTools_ListOfShape& Shapes() const;
118
119
120 Standard_EXPORT  const GEOMAlgo_IndexedDataMapOfShapeState& MSS() const;
121
122
123
124
125
126 protected:
127
128  // Methods PROTECTED
129  // 
130
131
132 Standard_EXPORT virtual  void CheckData() ;
133
134
135 Standard_EXPORT   void ProcessVertices() ;
136
137
138 Standard_EXPORT   void ProcessEdges() ;
139
140
141 Standard_EXPORT   void ProcessFaces() ;
142
143
144 Standard_EXPORT   void ProcessSolids() ;
145
146
147 Standard_EXPORT   void InnerPoints(const TopoDS_Face& aF,GEOMAlgo_ListOfPnt& aLP) ;
148
149
150 Standard_EXPORT   void InnerPoints(const TopoDS_Edge& aE,GEOMAlgo_ListOfPnt& aLP) ;
151
152
153 Standard_EXPORT   void InnerPoints(const TopoDS_Edge& aE,const Standard_Integer aNbPnts,GEOMAlgo_ListOfPnt& aLP) ;
154
155
156  // Fields PROTECTED
157  //
158 TopAbs_ShapeEnum myShapeType;
159 GEOMAlgo_State myState;
160 Standard_Integer myNbPntsMin;
161 Standard_Integer myNbPntsMax;
162 Handle_GEOMAlgo_Clsf myClsf;
163 TopTools_ListOfShape myLS;
164 GEOMAlgo_IndexedDataMapOfShapeState myMSS;
165
166
167 private: 
168
169  // Methods PRIVATE
170  // 
171
172
173  // Fields PRIVATE
174  //
175
176
177 };
178
179
180
181
182
183 // other Inline functions and methods (like "C++: function call" methods)
184 //
185
186
187 #endif