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