Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
BlockFix_PeriodicSurfaceModifier.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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, or (at your option) any later version.
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_PeriodicSurfaceModifier_HeaderFile
24 #define _BlockFix_PeriodicSurfaceModifier_HeaderFile
25 
26 #include <Standard.hxx>
27 #include <Standard_DefineHandle.hxx>
28 
30 
31 #include <Standard_Real.hxx>
32 #include <TopTools_DataMapOfShapeInteger.hxx>
33 #include <TColStd_IndexedMapOfTransient.hxx>
34 #include <BRepTools_Modification.hxx>
35 #include <Standard_Boolean.hxx>
36 #include <GeomAbs_Shape.hxx>
37 
38 #include <Basics_OCCTVersion.hxx>
39 
40 class TopoDS_Vertex;
41 class TopoDS_Edge;
42 class TopoDS_Face;
43 class TopLoc_Location;
44 class Geom_Surface;
45 class Geom_Curve;
46 class Geom2d_Curve;
47 class gp_Pnt;
48 
50 
52 
53 public:
54  Standard_EXPORT BlockFix_PeriodicSurfaceModifier();
55  Standard_EXPORT ~BlockFix_PeriodicSurfaceModifier();
56 
57  Standard_EXPORT void SetTolerance (const Standard_Real Toler) ;
58  Standard_EXPORT Standard_Boolean NewSurface (const TopoDS_Face& F,
59  Handle(Geom_Surface)& S,
60  TopLoc_Location& L,
61  Standard_Real& Tol,
62  Standard_Boolean& RevWires,
63  Standard_Boolean& RevFace);
64  Standard_EXPORT Standard_Boolean NewCurve (const TopoDS_Edge& E,
65  Handle(Geom_Curve)& C,
66  TopLoc_Location& L,
67  Standard_Real& Tol) ;
68  Standard_EXPORT Standard_Boolean NewPoint (const TopoDS_Vertex& V, gp_Pnt& P, Standard_Real& Tol);
69  Standard_EXPORT Standard_Boolean NewCurve2d (const TopoDS_Edge& E,
70  const TopoDS_Face& F,
71  const TopoDS_Edge& NewE,
72  const TopoDS_Face& NewF,
73  Handle(Geom2d_Curve)& C,
74  Standard_Real& Tol);
75  Standard_EXPORT Standard_Boolean NewParameter (const TopoDS_Vertex& V,
76  const TopoDS_Edge& E,
77  Standard_Real& P,
78  Standard_Real& Tol);
79  Standard_EXPORT GeomAbs_Shape Continuity (const TopoDS_Edge& E,
80  const TopoDS_Face& F1,
81  const TopoDS_Face& F2,
82  const TopoDS_Edge& NewE,
83  const TopoDS_Face& NewF1,
84  const TopoDS_Face& NewF2);
85 
86  OCCT_DEFINE_STANDARD_RTTIEXT(BlockFix_PeriodicSurfaceModifier,BRepTools_Modification)
87 
88 private:
89  Standard_Real myTolerance;
90  TopTools_DataMapOfShapeInteger myMapOfFaces;
91  TColStd_IndexedMapOfTransient myMapOfSurfaces;
92 
93 };
94 
95 #endif