Salome HOME
This commit was generated by cvs2git to create tag 'StableState1'.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_BuilderArea.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_BuilderArea_HeaderFile
21 #define _GEOMAlgo_BuilderArea_HeaderFile
22
23 #ifndef _TopTools_ListOfShape_HeaderFile
24 #include <TopTools_ListOfShape.hxx>
25 #endif
26 #ifndef _TopTools_MapOfOrientedShape_HeaderFile
27 #include <TopTools_MapOfOrientedShape.hxx>
28 #endif
29 #ifndef _IntTools_PContext_HeaderFile
30 #include <IntTools_PContext.hxx>
31 #endif
32 #ifndef _GEOMAlgo_Algo_HeaderFile
33 #include <GEOMAlgo_Algo.hxx>
34 #endif
35 class IntTools_Context;
36 class TopTools_ListOfShape;
37
38
39 #ifndef _Standard_HeaderFile
40 #include <Standard.hxx>
41 #endif
42 #ifndef _Standard_Macro_HeaderFile
43 #include <Standard_Macro.hxx>
44 #endif
45
46 //! The root class for algorithms to build <br>
47 //!          faces/solids from set of edges/faces <br>
48 class GEOMAlgo_BuilderArea  : public GEOMAlgo_Algo {
49
50 public:
51
52     void* operator new(size_t,void* anAddress) 
53       {
54         return anAddress;
55       }
56     void* operator new(size_t size) 
57       { 
58         return Standard::Allocate(size); 
59       }
60     void  operator delete(void *anAddress) 
61       { 
62         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
63       }
64  // Methods PUBLIC
65  // 
66
67 //! Sets cashed geometrical tools <br>
68 Standard_EXPORT   void SetContext(const IntTools_Context& theContext) ;
69
70 //! Sets edges/faces to process <br>
71 Standard_EXPORT   void SetShapes(const TopTools_ListOfShape& theLS) ;
72
73 //! Returns edges/faces to process <br>
74 Standard_EXPORT  const TopTools_ListOfShape& Shapes() const;
75
76 //! Returns wires/shells that have been built <br>
77 Standard_EXPORT  const TopTools_ListOfShape& Loops() const;
78
79 //! Returns faces/solids that have been built <br>
80 Standard_EXPORT  const TopTools_ListOfShape& Areas() const;
81
82
83
84
85
86 protected:
87
88  // Methods PROTECTED
89  // 
90
91 //!  Empty  constructor <br>
92 Standard_EXPORT GEOMAlgo_BuilderArea();
93 Standard_EXPORT virtual ~GEOMAlgo_BuilderArea();
94
95 //!  Collect the edges/faces that <br>
96 //!           a) are internal <br>
97 //!           b) are the same and have different orientation <br>
98 Standard_EXPORT virtual  void PerformShapesToAvoid() ;
99
100 //! Build draft faces/shells <br>
101 //!          a)myLoops - draft faces/shells that consist of <br>
102 //!                      boundary edges/faces <br>
103 //!          b)myLoopsInternal - draft faces/shells that contains <br>
104 //!                               inner edges/faces <br>
105 Standard_EXPORT virtual  void PerformLoops() ;
106
107 //! Build draft faces/solids that contains boundary faces <br>
108 Standard_EXPORT virtual  void PerformAreas() ;
109
110 //! Build finalized faces/solids with internal wires/shells <br>
111 Standard_EXPORT virtual  void PerformInternalShapes() ;
112
113
114  // Fields PROTECTED
115  //
116 TopTools_ListOfShape myShapes;
117 TopTools_ListOfShape myLoops;
118 TopTools_ListOfShape myLoopsInternal;
119 TopTools_MapOfOrientedShape myShapesToAvoid;
120 TopTools_ListOfShape myAreas;
121 IntTools_PContext myContext;
122
123
124 private: 
125
126  // Methods PRIVATE
127  // 
128
129
130  // Fields PRIVATE
131  //
132
133
134 };
135
136
137
138
139
140 // other Inline functions and methods (like "C++: function call" methods)
141 //
142
143
144 #endif