Salome HOME
Bug 0020233: Infinite loop in boolean operation with a sphere with r=0
[modules/geom.git] / src / GEOMAlgo / BlockFix_PeriodicSurfaceModifier.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 _BlockFix_PeriodicSurfaceModifier_HeaderFile
23 #define _BlockFix_PeriodicSurfaceModifier_HeaderFile
24
25 #ifndef _Standard_HeaderFile
26 #include <Standard.hxx>
27 #endif
28 #ifndef _Handle_BlockFix_PeriodicSurfaceModifier_HeaderFile
29 #include <Handle_BlockFix_PeriodicSurfaceModifier.hxx>
30 #endif
31
32 #ifndef _Standard_Real_HeaderFile
33 #include <Standard_Real.hxx>
34 #endif
35 #ifndef _TopTools_DataMapOfShapeInteger_HeaderFile
36 #include <TopTools_DataMapOfShapeInteger.hxx>
37 #endif
38 #ifndef _TColStd_IndexedMapOfTransient_HeaderFile
39 #include <TColStd_IndexedMapOfTransient.hxx>
40 #endif
41 #ifndef _BRepTools_Modification_HeaderFile
42 #include <BRepTools_Modification.hxx>
43 #endif
44 #ifndef _Standard_Boolean_HeaderFile
45 #include <Standard_Boolean.hxx>
46 #endif
47 #ifndef _Handle_Geom_Surface_HeaderFile
48 #include <Handle_Geom_Surface.hxx>
49 #endif
50 #ifndef _Handle_Geom_Curve_HeaderFile
51 #include <Handle_Geom_Curve.hxx>
52 #endif
53 #ifndef _Handle_Geom2d_Curve_HeaderFile
54 #include <Handle_Geom2d_Curve.hxx>
55 #endif
56 #ifndef _GeomAbs_Shape_HeaderFile
57 #include <GeomAbs_Shape.hxx>
58 #endif
59 class TopoDS_Face;
60 class Geom_Surface;
61 class TopLoc_Location;
62 class TopoDS_Edge;
63 class Geom_Curve;
64 class TopoDS_Vertex;
65 class gp_Pnt;
66 class Geom2d_Curve;
67
68
69 class BlockFix_PeriodicSurfaceModifier : public BRepTools_Modification {
70
71 public:
72
73     void* operator new(size_t,void* anAddress) 
74       {
75         return anAddress;
76       }
77     void* operator new(size_t size) 
78       { 
79         return Standard::Allocate(size); 
80       }
81     void  operator delete(void *anAddress) 
82       { 
83         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
84       }
85  // Methods PUBLIC
86  // 
87 Standard_EXPORT BlockFix_PeriodicSurfaceModifier();
88 Standard_EXPORT   void SetTolerance(const Standard_Real Toler) ;
89 Standard_EXPORT   Standard_Boolean NewSurface(const TopoDS_Face& F,Handle(Geom_Surface)& S,TopLoc_Location& L,Standard_Real& Tol,Standard_Boolean& RevWires,Standard_Boolean& RevFace) ;
90 Standard_EXPORT   Standard_Boolean NewCurve(const TopoDS_Edge& E,Handle(Geom_Curve)& C,TopLoc_Location& L,Standard_Real& Tol) ;
91 Standard_EXPORT   Standard_Boolean NewPoint(const TopoDS_Vertex& V,gp_Pnt& P,Standard_Real& Tol) ;
92 Standard_EXPORT   Standard_Boolean NewCurve2d(const TopoDS_Edge& E,const TopoDS_Face& F,const TopoDS_Edge& NewE,const TopoDS_Face& NewF,Handle(Geom2d_Curve)& C,Standard_Real& Tol) ;
93 Standard_EXPORT   Standard_Boolean NewParameter(const TopoDS_Vertex& V,const TopoDS_Edge& E,Standard_Real& P,Standard_Real& Tol) ;
94 Standard_EXPORT   GeomAbs_Shape Continuity(const TopoDS_Edge& E,const TopoDS_Face& F1,const TopoDS_Face& F2,const TopoDS_Edge& NewE,const TopoDS_Face& NewF1,const TopoDS_Face& NewF2) ;
95 Standard_EXPORT ~BlockFix_PeriodicSurfaceModifier();
96
97
98
99
100  // Type management
101  //
102  Standard_EXPORT friend Handle_Standard_Type& BlockFix_PeriodicSurfaceModifier_Type_();
103  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
104  Standard_EXPORT Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
105
106 protected:
107
108  // Methods PROTECTED
109  // 
110
111
112  // Fields PROTECTED
113  //
114
115
116 private: 
117
118  // Methods PRIVATE
119  // 
120
121
122  // Fields PRIVATE
123  //
124 Standard_Real myTolerance;
125 TopTools_DataMapOfShapeInteger myMapOfFaces;
126 TColStd_IndexedMapOfTransient myMapOfSurfaces;
127
128
129 };
130
131
132
133
134
135 // other Inline functions and methods (like "C++: function call" methods)
136 //
137
138
139 #endif