Salome HOME
fa620b4e3a093f5d6c9877aea89939cf5a6448ab
[modules/geom.git] / src / BlockFix / 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 #ifndef _BlockFix_SphereSpaceModifier_HeaderFile
23 #define _BlockFix_SphereSpaceModifier_HeaderFile
24
25 #include <Standard.hxx>
26 #include <Standard_DefineHandle.hxx>
27
28 #include <Standard_Real.hxx>
29 #include <TopTools_DataMapOfShapeInteger.hxx>
30 #include <TColStd_IndexedMapOfTransient.hxx>
31 #include <BRepTools_Modification.hxx>
32 #include <Standard_Boolean.hxx>
33 #include <Handle_Geom_Surface.hxx>
34 #include <Handle_Geom_Curve.hxx>
35 #include <Handle_Geom2d_Curve.hxx>
36 #include <GeomAbs_Shape.hxx>
37
38 class TopoDS_Face;
39 class Geom_Surface;
40 class TopLoc_Location;
41 class TopoDS_Edge;
42 class Geom_Curve;
43 class TopoDS_Vertex;
44 class gp_Pnt;
45 class Geom2d_Curve;
46
47 DEFINE_STANDARD_HANDLE(BlockFix_SphereSpaceModifier, BRepTools_Modification);
48
49 class BlockFix_SphereSpaceModifier : public BRepTools_Modification {
50
51 public:
52   Standard_EXPORT BlockFix_SphereSpaceModifier();
53   Standard_EXPORT ~BlockFix_SphereSpaceModifier();
54
55   Standard_EXPORT void SetTolerance (const Standard_Real Toler);
56   Standard_EXPORT Standard_Boolean NewSurface (const TopoDS_Face& F, Handle(Geom_Surface)& S,
57                                                TopLoc_Location& L, Standard_Real& Tol,
58                                                Standard_Boolean& RevWires, Standard_Boolean& RevFace);
59   Standard_EXPORT Standard_Boolean NewCurve (const TopoDS_Edge& E, Handle(Geom_Curve)& C,
60                                              TopLoc_Location& L, Standard_Real& Tol);
61   Standard_EXPORT Standard_Boolean NewPoint (const TopoDS_Vertex& V, gp_Pnt& P, Standard_Real& Tol);
62   Standard_EXPORT Standard_Boolean NewCurve2d (const TopoDS_Edge& E, const TopoDS_Face& F,
63                                                const TopoDS_Edge& NewE, const TopoDS_Face& NewF,
64                                                Handle(Geom2d_Curve)& C, Standard_Real& Tol);
65   Standard_EXPORT Standard_Boolean NewParameter (const TopoDS_Vertex& V, const TopoDS_Edge& E,
66                                                  Standard_Real& P, Standard_Real& Tol);
67   Standard_EXPORT GeomAbs_Shape Continuity (const TopoDS_Edge& E,
68                                             const TopoDS_Face& F1,const TopoDS_Face& F2,
69                                             const TopoDS_Edge& NewE,
70                                             const TopoDS_Face& NewF1, const TopoDS_Face& NewF2);
71   Standard_EXPORT Standard_Boolean ForRotation (const TopoDS_Face& F);
72
73   DEFINE_STANDARD_RTTI(BlockFix_SphereSpaceModifier);
74
75 private:
76   Standard_Real myTolerance;
77   TopTools_DataMapOfShapeInteger myMapOfFaces;
78   TColStd_IndexedMapOfTransient myMapOfSpheres;
79
80 };
81
82 #endif