0024814: Avoid using explicit names of Handle classes
[occt.git] / src / Geom2dLProp / Geom2dLProp_Curve2dTool.cxx
1 // Created on: 1992-08-18
2 // Created by: Herve LEGRAND
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Geom2dLProp_Curve2dTool.ixx>
18 #include <Geom2d_Curve.hxx>
19 #include <GeomAbs_Shape.hxx>
20
21 void  Geom2dLProp_Curve2dTool::Value(const Handle(Geom2d_Curve)& C, 
22             const Standard_Real U, gp_Pnt2d& P)
23 {
24   P = C->Value(U);
25 }
26
27 void  Geom2dLProp_Curve2dTool::D1(const Handle(Geom2d_Curve)& C, 
28          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1)
29 {
30   C->D1(U, P, V1);
31 }
32
33 void  Geom2dLProp_Curve2dTool::D2(const Handle(Geom2d_Curve)& C, 
34          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2)
35 {
36   C->D2(U, P, V1, V2);
37 }
38
39 void  Geom2dLProp_Curve2dTool::D3(const Handle(Geom2d_Curve)& C, 
40          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2, gp_Vec2d& V3)
41 {
42   C->D3(U, P, V1, V2, V3);
43 }
44
45 Standard_Integer  Geom2dLProp_Curve2dTool::Continuity(const Handle(Geom2d_Curve)& C)
46 {
47   GeomAbs_Shape s = C->Continuity();
48   switch (s) {
49   case GeomAbs_C0:
50     return 0;
51   case GeomAbs_C1:
52     return 1;
53   case GeomAbs_C2:
54     return 2;
55   case GeomAbs_C3:
56     return 3;
57   case GeomAbs_G1:
58     return 0;
59   case GeomAbs_G2:
60     return 0;
61   case GeomAbs_CN:
62     return 3;
63   };
64   return 0;
65 }
66
67 Standard_Real  Geom2dLProp_Curve2dTool::FirstParameter(const Handle(Geom2d_Curve)& C)
68 {
69   return C->FirstParameter();
70 }
71
72 Standard_Real  Geom2dLProp_Curve2dTool::LastParameter(const Handle(Geom2d_Curve)& C)
73 {
74   return C->LastParameter();
75 }
76
77
78
79