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