Salome HOME
Fix for the "0021179: EDF 1654 SMESH GEOM: better look'n'feel" issue:
[modules/geom.git] / src / GEOMAlgo_NEW / GEOMAlgo_Clsf.cxx
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_Clsf.cxx
24 // Created:     Wed Nov 22 10:23:04 2006
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #include <GEOMAlgo_Clsf.hxx>
29
30 IMPLEMENT_STANDARD_HANDLE(GEOMAlgo_Clsf, GEOMAlgo_HAlgo);
31 IMPLEMENT_STANDARD_RTTIEXT(GEOMAlgo_Clsf, GEOMAlgo_HAlgo);
32
33 //=======================================================================
34 //function :
35 //purpose  :
36 //=======================================================================
37   GEOMAlgo_Clsf::GEOMAlgo_Clsf()
38 :
39   GEOMAlgo_HAlgo()
40 {
41   myState=TopAbs_UNKNOWN;
42   myPnt.SetCoord(99.,99.,99.);
43   myTolerance=0.0001;
44 }
45 //=======================================================================
46 //function : ~
47 //purpose  :
48 //=======================================================================
49   GEOMAlgo_Clsf::~GEOMAlgo_Clsf()
50 {
51 }
52 //=======================================================================
53 //function : SetTolerance
54 //purpose  :
55 //=======================================================================
56   void GEOMAlgo_Clsf::SetTolerance(const Standard_Real aT)
57 {
58   myTolerance=aT;
59 }
60 //=======================================================================
61 //function : Tolerance
62 //purpose  :
63 //=======================================================================
64   Standard_Real GEOMAlgo_Clsf::Tolerance()const
65 {
66   return myTolerance;
67 }
68 //=======================================================================
69 //function : SetPnt
70 //purpose  :
71 //=======================================================================
72   void GEOMAlgo_Clsf::SetPnt(const gp_Pnt& aP)
73 {
74   myPnt=aP;
75 }
76 //=======================================================================
77 //function : Pnt
78 //purpose  :
79 //=======================================================================
80   const gp_Pnt& GEOMAlgo_Clsf::Pnt()const
81 {
82   return myPnt;
83 }
84 //=======================================================================
85 //function : State
86 //purpose  :
87 //=======================================================================
88   TopAbs_State GEOMAlgo_Clsf::State() const
89 {
90   return myState;
91 }
92 //=======================================================================
93 //function : CanBeON
94 //purpose  :
95 //=======================================================================
96   Standard_Boolean GEOMAlgo_Clsf::CanBeON(const Handle(Geom_Curve)& ) const
97 {
98   return Standard_True;
99 }
100 //=======================================================================
101 //function : CanBeON
102 //purpose  :
103 //=======================================================================
104   Standard_Boolean GEOMAlgo_Clsf::CanBeON(const Handle(Geom_Surface)& ) const
105 {
106   return Standard_True;
107 }