0024428: Implementation of LGPL license
[occt.git] / src / Adaptor3d / Adaptor3d_HVertex.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and / or modify it
6 // under the terms of the GNU Lesser General Public version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #include <Adaptor3d_HVertex.ixx>
15
16 #include <Precision.hxx>
17 #include <ElCLib.hxx>
18 #include <Adaptor2d_HCurve2d.hxx>
19
20
21 Adaptor3d_HVertex::Adaptor3d_HVertex ()
22 {}
23
24
25 Adaptor3d_HVertex::Adaptor3d_HVertex (const gp_Pnt2d& P,
26                                   const TopAbs_Orientation Or,
27                                   const Standard_Real Resolution):
28        myPnt(P),myTol(Resolution),myOri(Or)
29 {}
30
31
32 gp_Pnt2d Adaptor3d_HVertex::Value ()
33 {
34   return myPnt;
35 }
36
37 Standard_Real Adaptor3d_HVertex::Parameter (const Handle(Adaptor2d_HCurve2d)& C)
38 {
39   return ElCLib::Parameter(C->Line(),myPnt);
40 }
41
42 Standard_Real Adaptor3d_HVertex::Resolution (const Handle(Adaptor2d_HCurve2d)&)
43 {
44   return myTol;
45 }
46
47 TopAbs_Orientation Adaptor3d_HVertex::Orientation ()
48 {
49   return myOri;
50 }
51
52
53 Standard_Boolean Adaptor3d_HVertex::IsSame(const Handle(Adaptor3d_HVertex)& Other)
54 {
55   return (myPnt.Distance(Other->Value())<= Precision::Confusion());
56 }
57