0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[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
18 #include <Geom2d_Curve.hxx>
19 #include <Geom2dLProp_Curve2dTool.hxx>
20 #include <GeomAbs_Shape.hxx>
21 #include <gp_Pnt2d.hxx>
22 #include <gp_Vec2d.hxx>
23
24 void  Geom2dLProp_Curve2dTool::Value(const Handle(Geom2d_Curve)& C, 
25             const Standard_Real U, gp_Pnt2d& P)
26 {
27   P = C->Value(U);
28 }
29
30 void  Geom2dLProp_Curve2dTool::D1(const Handle(Geom2d_Curve)& C, 
31          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1)
32 {
33   C->D1(U, P, V1);
34 }
35
36 void  Geom2dLProp_Curve2dTool::D2(const Handle(Geom2d_Curve)& C, 
37          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2)
38 {
39   C->D2(U, P, V1, V2);
40 }
41
42 void  Geom2dLProp_Curve2dTool::D3(const Handle(Geom2d_Curve)& C, 
43          const Standard_Real U, gp_Pnt2d& P, gp_Vec2d& V1, gp_Vec2d& V2, gp_Vec2d& V3)
44 {
45   C->D3(U, P, V1, V2, V3);
46 }
47
48 Standard_Integer  Geom2dLProp_Curve2dTool::Continuity(const Handle(Geom2d_Curve)& C)
49 {
50   GeomAbs_Shape s = C->Continuity();
51   switch (s) {
52   case GeomAbs_C0:
53     return 0;
54   case GeomAbs_C1:
55     return 1;
56   case GeomAbs_C2:
57     return 2;
58   case GeomAbs_C3:
59     return 3;
60   case GeomAbs_G1:
61     return 0;
62   case GeomAbs_G2:
63     return 0;
64   case GeomAbs_CN:
65     return 3;
66   };
67   return 0;
68 }
69
70 Standard_Real  Geom2dLProp_Curve2dTool::FirstParameter(const Handle(Geom2d_Curve)& C)
71 {
72   return C->FirstParameter();
73 }
74
75 Standard_Real  Geom2dLProp_Curve2dTool::LastParameter(const Handle(Geom2d_Curve)& C)
76 {
77   return C->LastParameter();
78 }
79
80
81
82