Salome HOME
Update mail address
[modules/geom.git] / src / PARTITION / Partition_Loop3d.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 //  GEOM PARTITION : partition algorithm
21 //
22 //  File   : Partition_Loop3d.hxx
23 //  Module : GEOM
24
25 #ifndef _Partition_Loop3d_HeaderFile
26 #define _Partition_Loop3d_HeaderFile
27
28 #ifndef _TopTools_ListOfShape_HeaderFile
29 #include <TopTools_ListOfShape.hxx>
30 #endif
31 #ifndef _TopTools_IndexedDataMapOfShapeListOfShape_HeaderFile
32 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
33 #endif
34 #ifndef _Standard_Boolean_HeaderFile
35 #include <Standard_Boolean.hxx>
36 #endif
37 #ifndef _Standard_Real_HeaderFile
38 #include <Standard_Real.hxx>
39 #endif
40 class TopoDS_Shape;
41 class TopTools_ListOfShape;
42 class TopTools_MapOfOrientedShape;
43 class TopoDS_Edge;
44 class TopoDS_Face;
45 class gp_Vec;
46
47
48 #ifndef _Standard_HeaderFile
49 #include <Standard.hxx>
50 #endif
51 #ifndef _Standard_Macro_HeaderFile
52 #include <Standard_Macro.hxx>
53 #endif
54
55 class Partition_Loop3d  {
56
57 public:
58
59     void* operator new(size_t,void* anAddress) 
60       {
61         return anAddress;
62       }
63     void* operator new(size_t size) 
64       { 
65         return Standard::Allocate(size); 
66       }
67     void  operator delete(void *anAddress) 
68       { 
69         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
70       }
71  // Methods PUBLIC
72  // 
73 Standard_EXPORT Partition_Loop3d();
74 Standard_EXPORT   void AddConstFaces(const TopoDS_Shape& S) ;
75 Standard_EXPORT   void AddSectionFaces(const TopoDS_Shape& S) ;
76 Standard_EXPORT  const TopTools_ListOfShape& MakeShells(const TopTools_MapOfOrientedShape& AvoidFacesMap) ;
77 Standard_EXPORT static  Standard_Boolean IsInside(const TopoDS_Edge& E,const TopoDS_Face& F1,const TopoDS_Face& F2,const Standard_Boolean CountDot,Standard_Real& Dot,Standard_Boolean& GoodOri) ;
78 Standard_EXPORT static  gp_Vec Normal(const TopoDS_Edge& E,const TopoDS_Face& F) ;
79
80
81
82
83
84 protected:
85
86  // Methods PROTECTED
87  // 
88
89
90  // Fields PROTECTED
91  //
92
93
94 private: 
95
96  // Methods PRIVATE
97  // 
98
99
100  // Fields PRIVATE
101  //
102 TopTools_ListOfShape myNewShells;
103 TopTools_ListOfShape myFaces;
104 TopTools_IndexedDataMapOfShapeListOfShape myEFMap;
105
106
107 };
108
109
110
111
112
113 // other Inline functions and methods (like "C++: function call" methods)
114 //
115
116
117 #endif