0024814: Avoid using explicit names of Handle classes
[occt.git] / src / Geom2dLProp / Geom2dLProp_Curve2dTool.cxx
CommitLineData
b311480e 1// Created on: 1992-08-18
2// Created by: Herve LEGRAND
3// Copyright (c) 1992-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <Geom2dLProp_Curve2dTool.ixx>
18#include <Geom2d_Curve.hxx>
19#include <GeomAbs_Shape.hxx>
20
857ffd5e 21void Geom2dLProp_Curve2dTool::Value(const Handle(Geom2d_Curve)& C,
7fd59977 22 const Standard_Real U, gp_Pnt2d& P)
23{
24 P = C->Value(U);
25}
26
857ffd5e 27void Geom2dLProp_Curve2dTool::D1(const Handle(Geom2d_Curve)& C,
7fd59977 28 const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1)
29{
30 C->D1(U, P, V1);
31}
32
857ffd5e 33void Geom2dLProp_Curve2dTool::D2(const Handle(Geom2d_Curve)& C,
7fd59977 34 const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2)
35{
36 C->D2(U, P, V1, V2);
37}
38
857ffd5e 39void Geom2dLProp_Curve2dTool::D3(const Handle(Geom2d_Curve)& C,
7fd59977 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
857ffd5e 45Standard_Integer Geom2dLProp_Curve2dTool::Continuity(const Handle(Geom2d_Curve)& C)
7fd59977 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
857ffd5e 67Standard_Real Geom2dLProp_Curve2dTool::FirstParameter(const Handle(Geom2d_Curve)& C)
7fd59977 68{
69 return C->FirstParameter();
70}
71
857ffd5e 72Standard_Real Geom2dLProp_Curve2dTool::LastParameter(const Handle(Geom2d_Curve)& C)
7fd59977 73{
74 return C->LastParameter();
75}
76
77
78
79