Salome HOME
Copyright update 2021
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_Clsf.hxx
1 // Copyright (C) 2007-2021  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 // File:        GEOMAlgo_Clsf.hxx
24 // Created:     Wed Nov 22 10:23:04 2006
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_Clsf_HeaderFile
29 #define _GEOMAlgo_Clsf_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_DefineHandle.hxx>
33 //#include <Handle_GEOMAlgo_Clsf.hxx>
34 #include <TopAbs_State.hxx>
35 #include <gp_Pnt.hxx>
36 #include <Standard_Real.hxx>
37 #include <GEOMAlgo_HAlgo.hxx>
38 #include <Standard_Boolean.hxx>
39 #include <Geom_Curve.hxx>
40 #include <Geom_Surface.hxx>
41
42 DEFINE_STANDARD_HANDLE(GEOMAlgo_Clsf, GEOMAlgo_HAlgo)
43
44 //=======================================================================
45 //class    : GEOMAlgo_Clsf
46 //purpose  :
47 //=======================================================================
48 class GEOMAlgo_Clsf : public GEOMAlgo_HAlgo
49 {
50  public:
51   Standard_EXPORT
52     void SetPnt(const gp_Pnt& aP) ;
53
54   Standard_EXPORT
55     const gp_Pnt& Pnt() const;
56
57   Standard_EXPORT
58     void SetTolerance(const Standard_Real aT) ;
59
60   Standard_EXPORT
61     Standard_Real Tolerance() const;
62
63   Standard_EXPORT
64     TopAbs_State State() const;
65
66   Standard_EXPORT
67     virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aCT) const;
68
69   Standard_EXPORT
70     virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
71
72   DEFINE_STANDARD_RTTIEXT(GEOMAlgo_Clsf,GEOMAlgo_HAlgo)
73
74  protected:
75   Standard_EXPORT
76     GEOMAlgo_Clsf();
77
78   Standard_EXPORT
79     virtual ~GEOMAlgo_Clsf();
80
81   TopAbs_State myState;
82   gp_Pnt myPnt;
83   Standard_Real myTolerance;
84 };
85 #endif