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