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