Warnings on vc14 were eliminated
[occt.git] / src / IntPatch / IntPatch_HCurve2dTool.lxx
1 // Created on: 1992-10-22
2 // Created by: Laurent BUCHARD
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 <GeomAbs_CurveType.hxx>
18 #include <GeomAbs_Shape.hxx>
19
20 #include <gp_Vec2d.hxx>
21 #include <gp_Lin2d.hxx>
22 #include <gp_Circ2d.hxx>
23 #include <gp_Elips2d.hxx>
24 #include <gp_Parab2d.hxx>
25 #include <gp_Hypr2d.hxx>
26
27 #include <Geom2d_BezierCurve.hxx>
28 #include <Geom2d_BSplineCurve.hxx>
29
30 #include <TColStd_Array1OfReal.hxx>
31
32 #include <Adaptor2d_HCurve2d.hxx>
33
34
35 //============================================================
36 inline Standard_Real IntPatch_HCurve2dTool::FirstParameter (const Handle(Adaptor2d_HCurve2d)& C) {
37   return(C->FirstParameter());
38 }
39 //============================================================
40 inline Standard_Real IntPatch_HCurve2dTool::LastParameter (const Handle(Adaptor2d_HCurve2d)& C) {
41   return(C->LastParameter());
42 }
43 //============================================================
44 inline GeomAbs_Shape IntPatch_HCurve2dTool::Continuity (const Handle(Adaptor2d_HCurve2d)& C) {
45   return(C->Continuity());
46 }
47 //============================================================
48 inline Standard_Integer IntPatch_HCurve2dTool::NbIntervals(const Handle(Adaptor2d_HCurve2d)& C,const GeomAbs_Shape Sh) {
49   return(C->NbIntervals(Sh));
50 }
51 //============================================================
52 inline void IntPatch_HCurve2dTool::Intervals(const Handle(Adaptor2d_HCurve2d)& C,
53                                              TColStd_Array1OfReal& Tab,
54                                              const GeomAbs_Shape Sh) {
55   C->Intervals(Tab,Sh);
56 }
57 //============================================================
58 inline Standard_Boolean IntPatch_HCurve2dTool::IsClosed(const Handle(Adaptor2d_HCurve2d)& C) {
59   return(C->IsClosed());
60 }
61 //============================================================
62 inline Standard_Boolean IntPatch_HCurve2dTool::IsPeriodic(const Handle(Adaptor2d_HCurve2d)& C) {
63   return(C->IsPeriodic());
64 }
65 //============================================================
66 inline Standard_Real IntPatch_HCurve2dTool::Period(const Handle(Adaptor2d_HCurve2d)& C) {
67   return(C->Period());
68 }
69 //============================================================
70 inline gp_Pnt2d IntPatch_HCurve2dTool::Value (const Handle(Adaptor2d_HCurve2d)& C,
71                                               const Standard_Real U) {
72   return(C->Value(U));
73 }
74 //============================================================
75 inline void IntPatch_HCurve2dTool::D0(const Handle(Adaptor2d_HCurve2d)& C,
76                                       const Standard_Real U,
77                                       gp_Pnt2d& P) {
78   C->D0(U,P);
79 }
80 //============================================================
81 inline void IntPatch_HCurve2dTool::D1 (const Handle(Adaptor2d_HCurve2d)& C,
82                                        const Standard_Real U,
83                                        gp_Pnt2d& P,
84                                        gp_Vec2d& T) {
85   C->D1(U,P,T);
86 }
87 //============================================================
88 inline void IntPatch_HCurve2dTool::D2 (const Handle(Adaptor2d_HCurve2d)& C,
89                                        const Standard_Real U,
90                                        gp_Pnt2d& P,
91                                        gp_Vec2d& T,
92                                        gp_Vec2d& N) {
93   C->D2(U,P,T,N);
94 }
95 //============================================================
96 inline void IntPatch_HCurve2dTool::D3 (const Handle(Adaptor2d_HCurve2d)& C,
97                                        const Standard_Real U,
98                                        gp_Pnt2d& P,
99                                        gp_Vec2d& V1,
100                                        gp_Vec2d& V2,
101                                        gp_Vec2d& V3) {
102   C->D3(U,P,V1,V2,V3);
103 }
104 //============================================================
105 inline gp_Vec2d IntPatch_HCurve2dTool::DN (const Handle(Adaptor2d_HCurve2d)& C,
106                                            const Standard_Real U,
107                                            const Standard_Integer N) {
108   return(C->DN(U,N));
109 }
110 //============================================================
111 inline Standard_Real IntPatch_HCurve2dTool::Resolution(const Handle(Adaptor2d_HCurve2d)& C,
112                                                        const Standard_Real R3d) {
113   return(C->Resolution(R3d));
114 }
115 //============================================================
116 inline GeomAbs_CurveType IntPatch_HCurve2dTool::GetType(const Handle(Adaptor2d_HCurve2d)& C) {
117   return(C->GetType());
118 }
119 //============================================================
120 inline gp_Lin2d IntPatch_HCurve2dTool::Line (const Handle(Adaptor2d_HCurve2d)& C) {
121   return(C->Line());
122 }
123 //============================================================
124 inline gp_Circ2d IntPatch_HCurve2dTool::Circle (const Handle(Adaptor2d_HCurve2d)& C) {
125   return(C->Circle());
126 }
127 //============================================================
128 inline gp_Elips2d IntPatch_HCurve2dTool::Ellipse (const Handle(Adaptor2d_HCurve2d)& C) {
129   return(C->Ellipse());
130 }
131 //============================================================
132 inline gp_Parab2d IntPatch_HCurve2dTool::Parabola (const Handle(Adaptor2d_HCurve2d)& C) {
133   return(C->Parabola());
134 }
135 //============================================================
136 inline gp_Hypr2d IntPatch_HCurve2dTool::Hyperbola (const Handle(Adaptor2d_HCurve2d)& C) {
137   return(C->Hyperbola());
138 }
139 //============================================================
140 inline Handle(Geom2d_BezierCurve) IntPatch_HCurve2dTool::Bezier (const Handle(Adaptor2d_HCurve2d)& C) {
141   return(C->Bezier());
142 }
143 //============================================================
144 inline Handle(Geom2d_BSplineCurve) IntPatch_HCurve2dTool::BSpline (const Handle(Adaptor2d_HCurve2d)& C) {
145   return(C->BSpline());
146 }
147 //============================================================