Salome HOME
681780b221045e034fcc1d8ddaed3faff6790658
[modules/shaper.git] / src / GeomAlgoImpl / GEOMAlgo_GluerAlgo.hxx
1 // Copyright (C) 2007-2023  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 // File:        GEOMAlgo_GluerAlgo.hxx
23 // Created:
24 // Author:      Peter KURNEV
25 //              <pkv@irinox>
26 //
27 #ifndef _GEOMAlgo_GluerAlgo_HeaderFile
28 #define _GEOMAlgo_GluerAlgo_HeaderFile
29
30 #include <GeomAlgoImpl.h>
31
32 #include <Standard_Macro.hxx>
33 #include <TopoDS_Shape.hxx>
34 #include <Standard_Real.hxx>
35 #include <Standard_Boolean.hxx>
36 #include <IntTools_Context.hxx>
37 #include <TopTools_DataMapOfShapeListOfShape.hxx>
38 #include <TopTools_DataMapOfShapeShape.hxx>
39
40
41 //=======================================================================
42 //class    : GEOMAlgo_GluerAlgo
43 //purpose  :
44 //=======================================================================
45 class GEOMAlgo_GluerAlgo {
46 public:
47
48   GEOMALGOIMPL_EXPORT
49     GEOMAlgo_GluerAlgo();
50
51   GEOMALGOIMPL_EXPORT
52     virtual ~GEOMAlgo_GluerAlgo();
53
54   GEOMALGOIMPL_EXPORT
55     virtual void SetArgument(const TopoDS_Shape& theShape) ;
56
57   GEOMALGOIMPL_EXPORT
58     const TopoDS_Shape& Argument() const;
59
60   GEOMALGOIMPL_EXPORT
61     void SetTolerance(const Standard_Real aT) ;
62
63   GEOMALGOIMPL_EXPORT
64     Standard_Real Tolerance() const;
65
66   GEOMALGOIMPL_EXPORT
67     void SetCheckGeometry(const Standard_Boolean aFlag) ;
68
69   GEOMALGOIMPL_EXPORT
70     Standard_Boolean CheckGeometry() const;
71
72   GEOMALGOIMPL_EXPORT
73     virtual  void Perform() ;
74
75   GEOMALGOIMPL_EXPORT
76     virtual  void Clear() ;
77
78   GEOMALGOIMPL_EXPORT
79     void SetContext(const Handle(IntTools_Context)&) ;
80
81   GEOMALGOIMPL_EXPORT
82     const Handle(IntTools_Context)& Context() ;
83
84   GEOMALGOIMPL_EXPORT
85     const TopTools_DataMapOfShapeListOfShape& Images() const;
86
87   GEOMALGOIMPL_EXPORT
88     const TopTools_DataMapOfShapeShape& Origins() const;
89
90 protected:
91   TopoDS_Shape myArgument;
92   Standard_Real myTolerance;
93   Standard_Boolean myCheckGeometry;
94   Handle(IntTools_Context) myContext;
95   TopTools_DataMapOfShapeListOfShape myImages;
96   TopTools_DataMapOfShapeShape myOrigins;
97 };
98
99 #endif