Salome HOME
a25c2e0a4f03e23207248c9f3256b274ff08455d
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeInfoFiller.hxx
1 //  Copyright (C) 2007-2008  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 #ifndef _GEOMAlgo_ShapeInfoFiller_HeaderFile
23 #define _GEOMAlgo_ShapeInfoFiller_HeaderFile
24
25 #ifndef _TopoDS_Shape_HeaderFile
26 #include <TopoDS_Shape.hxx>
27 #endif
28 #ifndef _GEOMAlgo_ShapeInfo_HeaderFile
29 #include <GEOMAlgo_ShapeInfo.hxx>
30 #endif
31 #ifndef _GEOMAlgo_IndexedDataMapOfShapeShapeInfo_HeaderFile
32 #include <GEOMAlgo_IndexedDataMapOfShapeShapeInfo.hxx>
33 #endif
34 #ifndef _Standard_Real_HeaderFile
35 #include <Standard_Real.hxx>
36 #endif
37 #ifndef _GEOMAlgo_Algo_HeaderFile
38 #include <GEOMAlgo_Algo.hxx>
39 #endif
40 class TopoDS_Shape;
41 class GEOMAlgo_ShapeInfo;
42 class TopoDS_Face;
43 class gp_Pln;
44 class gp_Sphere;
45 class gp_Cylinder;
46 class gp_Cone;
47 class gp_Torus;
48 class TopoDS_Solid;
49
50
51 #ifndef _Standard_HeaderFile
52 #include <Standard.hxx>
53 #endif
54 #ifndef _Standard_Macro_HeaderFile
55 #include <Standard_Macro.hxx>
56 #endif
57
58
59 class GEOMAlgo_ShapeInfoFiller  : public GEOMAlgo_Algo {
60
61 public:
62
63     void* operator new(size_t,void* anAddress) 
64       {
65         return anAddress;
66       }
67     void* operator new(size_t size) 
68       { 
69         return Standard::Allocate(size); 
70       }
71     void  operator delete(void *anAddress) 
72       { 
73         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
74       }
75  // Methods PUBLIC
76  // 
77
78
79 Standard_EXPORT GEOMAlgo_ShapeInfoFiller();
80 Standard_EXPORT virtual ~GEOMAlgo_ShapeInfoFiller();
81
82
83 Standard_EXPORT   void SetShape(const TopoDS_Shape& aS) ;
84
85
86 Standard_EXPORT  const TopoDS_Shape& Shape() const;
87
88
89 Standard_EXPORT   void SetTolerance(const Standard_Real aT) ;
90
91
92 Standard_EXPORT   Standard_Real Tolerance() const;
93
94
95 Standard_EXPORT  const GEOMAlgo_ShapeInfo& Info() const;
96
97
98 Standard_EXPORT  const GEOMAlgo_ShapeInfo& Info(const TopoDS_Shape& aS) const;
99
100
101 Standard_EXPORT virtual  void Perform() ;
102
103
104
105
106
107 protected:
108
109  // Methods PROTECTED
110  // 
111
112
113 Standard_EXPORT virtual  void CheckData() ;
114
115
116 Standard_EXPORT   void FillNbSubShapes(const TopoDS_Shape& aS,GEOMAlgo_ShapeInfo& aInfo) ;
117
118
119 Standard_EXPORT   void FillSubShapes(const TopoDS_Shape& aS) ;
120
121
122 Standard_EXPORT   void FillShape(const TopoDS_Shape& aS) ;
123
124
125 Standard_EXPORT   void FillVertex(const TopoDS_Shape& aS) ;
126
127
128 Standard_EXPORT   void FillEdge(const TopoDS_Shape& aS) ;
129
130
131 Standard_EXPORT   void FillFace(const TopoDS_Shape& aS) ;
132
133
134 Standard_EXPORT   void FillSolid(const TopoDS_Shape& aS) ;
135
136
137 Standard_EXPORT   void FillContainer(const TopoDS_Shape& aS) ;
138
139
140 Standard_EXPORT   void FillDetails(const TopoDS_Face& aF,const gp_Pln& aPln) ;
141
142
143 Standard_EXPORT   void FillDetails(const TopoDS_Face& aF,const gp_Sphere& aSph) ;
144
145
146 Standard_EXPORT   void FillDetails(const TopoDS_Face& aF,const gp_Cylinder& aCyl) ;
147
148
149 Standard_EXPORT   void FillDetails(const TopoDS_Face& aF,const gp_Cone& aCone) ;
150
151
152 Standard_EXPORT   void FillDetails(const TopoDS_Face& aF,const gp_Torus& aTorus) ;
153
154
155 Standard_EXPORT   void FillDetails(const TopoDS_Solid& aS) ;
156
157
158  // Fields PROTECTED
159  //
160 TopoDS_Shape myShape;
161 GEOMAlgo_ShapeInfo myEmptyInfo;
162 GEOMAlgo_IndexedDataMapOfShapeShapeInfo myMapInfo;
163 Standard_Real myTolerance;
164
165
166 private: 
167
168  // Methods PRIVATE
169  // 
170
171
172  // Fields PRIVATE
173  //
174
175
176 };
177
178
179
180
181
182 // other Inline functions and methods (like "C++: function call" methods)
183 //
184
185
186 #endif