Salome HOME
98a8c0b3fd1f441d0587dd3cc19aab1d3fe31258
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeAlgo.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 // File:        GEOMAlgo_ShapeAlgo.hxx
24 // Created:     Tue Dec  7 12:06:54 2004
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
29 #define _GEOMAlgo_ShapeAlgo_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_Macro.hxx>
33 #include <TopoDS_Shape.hxx>
34 #include <Standard_Real.hxx>
35 #include <Handle_IntTools_Context.hxx>
36 #include <GEOMAlgo_Algo.hxx>
37
38 //=======================================================================
39 //class    : GEOMAlgo_ShapeAlgo
40 //purpose  :
41 //=======================================================================
42 class GEOMAlgo_ShapeAlgo  : public GEOMAlgo_Algo
43 {
44  public:
45
46   //! Sets cashed geometrical tools <br>
47   Standard_EXPORT
48     void SetContext(const Handle(IntTools_Context)& theContext) ;
49
50   //! Returns cashed geometrical tools <br>
51   Standard_EXPORT
52     const Handle_IntTools_Context& Context() const;
53
54   Standard_EXPORT
55     void SetShape(const TopoDS_Shape& aS) ;
56
57   Standard_EXPORT
58     void SetTolerance(const Standard_Real aT) ;
59
60   Standard_EXPORT
61     const TopoDS_Shape& Shape() const;
62
63   Standard_EXPORT
64     Standard_Real Tolerance() const;
65
66   Standard_EXPORT
67     const TopoDS_Shape& Result() const;
68
69   Standard_EXPORT
70     virtual  void Perform() ;
71
72 protected:
73   Standard_EXPORT
74     GEOMAlgo_ShapeAlgo();
75
76   Standard_EXPORT
77     virtual ~GEOMAlgo_ShapeAlgo();
78
79
80   TopoDS_Shape myShape;
81   Standard_Real myTolerance;
82   TopoDS_Shape myResult;
83   Handle_IntTools_Context myContext;
84 };
85 #endif