Salome HOME
NPAL15298: geompy.KindOfShape(aShape) first version implemented.
[modules/geom.git] / src / NMTAlgo / NMTAlgo_Builder.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 _NMTAlgo_Builder_HeaderFile
21 #define _NMTAlgo_Builder_HeaderFile
22
23 #ifndef _BRepAlgo_Image_HeaderFile
24 #include <BRepAlgo_Image.hxx>
25 #endif
26 #ifndef _TopTools_IndexedMapOfShape_HeaderFile
27 #include <TopTools_IndexedMapOfShape.hxx>
28 #endif
29 #ifndef _TopTools_IndexedDataMapOfShapeListOfShape_HeaderFile
30 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
31 #endif
32 #ifndef _TopTools_IndexedDataMapOfShapeShape_HeaderFile
33 #include <TopTools_IndexedDataMapOfShapeShape.hxx>
34 #endif
35 #ifndef _NMTAlgo_Algo_HeaderFile
36 #include <NMTAlgo_Algo.hxx>
37 #endif
38 #ifndef _Standard_Boolean_HeaderFile
39 #include <Standard_Boolean.hxx>
40 #endif
41 class NMTTools_DSFiller;
42 class TopoDS_Edge;
43 class TopoDS_Face;
44
45
46 #ifndef _Standard_HeaderFile
47 #include <Standard.hxx>
48 #endif
49 #ifndef _Standard_Macro_HeaderFile
50 #include <Standard_Macro.hxx>
51 #endif
52
53 class NMTAlgo_Builder  : public NMTAlgo_Algo {
54
55 public:
56
57     void* operator new(size_t,void* anAddress) 
58       {
59         return anAddress;
60       }
61     void* operator new(size_t size) 
62       { 
63         return Standard::Allocate(size); 
64       }
65     void  operator delete(void *anAddress) 
66       { 
67         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
68       }
69  // Methods PUBLIC
70  // 
71 Standard_EXPORT NMTAlgo_Builder();
72 Standard_EXPORT virtual ~NMTAlgo_Builder();
73 Standard_EXPORT virtual  void Clear() ;
74 Standard_EXPORT virtual  void ComputeWithFiller(const NMTTools_DSFiller& aDSF) ;
75
76
77
78
79
80 protected:
81
82  // Methods PROTECTED
83  // 
84 Standard_EXPORT   void FillImagesEdges() ;
85 Standard_EXPORT   void FillIn2DParts() ;
86 Standard_EXPORT   void FillImagesFaces() ;
87 Standard_EXPORT   void FillSDFaces() ;
88 Standard_EXPORT   void SplitVertices() ;
89 Standard_EXPORT   Standard_Boolean IsSectionEdge(const TopoDS_Edge& E) const;
90 Standard_EXPORT   Standard_Boolean HasSameDomainF(const TopoDS_Face& F) const;
91 Standard_EXPORT   Standard_Boolean IsSameDomainF(const TopoDS_Face& F1,const TopoDS_Face& F2) const;
92
93
94  // Fields PROTECTED
95  //
96 BRepAlgo_Image myImagesEdges;
97 BRepAlgo_Image myImagesFaces;
98 TopTools_IndexedMapOfShape myQueryShapes;
99 TopTools_IndexedDataMapOfShapeListOfShape myIn2DParts;
100 TopTools_IndexedDataMapOfShapeListOfShape mySectionParts;
101 TopTools_IndexedDataMapOfShapeShape mySDFaces;
102
103
104 private: 
105
106  // Methods PRIVATE
107  // 
108
109
110  // Fields PRIVATE
111  //
112
113
114 };
115
116
117
118
119
120 // other Inline functions and methods (like "C++: function call" methods)
121 //
122
123
124 #endif