0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / IntCurveSurface / IntCurveSurface_HCurveTool.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 CurveGen_hxx
18
19 #include <GeomAbs_CurveType.hxx>
20 #include <GeomAbs_Shape.hxx>
21
22 #include <gp_Vec.hxx>
23 #include <gp_Lin.hxx>
24 #include <gp_Circ.hxx>
25 #include <gp_Elips.hxx>
26 #include <gp_Parab.hxx>
27 #include <gp_Hypr.hxx>
28
29
30 #include <Geom_BezierCurve.hxx>
31 #include <Geom_BSplineCurve.hxx>
32
33 #include <TColStd_Array1OfReal.hxx>
34
35 //============================================================
36 inline Standard_Real IntCurveSurface_HCurveTool::FirstParameter (const CurveGen& C) {
37   return(C->FirstParameter());
38 }
39 //============================================================
40 inline Standard_Real IntCurveSurface_HCurveTool::LastParameter (const CurveGen& C) {
41   return(C->LastParameter());
42 }
43 //============================================================
44 inline GeomAbs_Shape IntCurveSurface_HCurveTool::Continuity (const CurveGen& C) {
45   return(C->Continuity());
46 }
47 //============================================================
48 inline Standard_Integer IntCurveSurface_HCurveTool::NbIntervals(const CurveGen& C,const GeomAbs_Shape Sh) {
49   return(C->NbIntervals(Sh));
50 }
51 //============================================================
52 inline void IntCurveSurface_HCurveTool::Intervals(const CurveGen& C,
53                                                              TColStd_Array1OfReal& Tab,
54                                                              const GeomAbs_Shape Sh) {
55   C->Intervals(Tab,Sh);
56 }
57 //============================================================
58 inline Standard_Boolean IntCurveSurface_HCurveTool::IsClosed(const CurveGen& C) {
59   return(C->IsClosed());
60 }
61 //============================================================
62 inline Standard_Boolean IntCurveSurface_HCurveTool::IsPeriodic(const CurveGen& C) {
63   return(C->IsPeriodic());
64 }
65 //============================================================
66 inline Standard_Real IntCurveSurface_HCurveTool::Period(const CurveGen& C) {
67   return(C->Period());
68 }
69 //============================================================
70 inline gp_Pnt IntCurveSurface_HCurveTool::Value (const CurveGen& C,
71                                                 const Standard_Real U) {
72   return(C->Value(U));
73 }
74 //============================================================
75 inline void IntCurveSurface_HCurveTool::D0(const CurveGen& C,
76                                           const Standard_Real U,
77                                           gp_Pnt& P) {
78   C->D0(U,P);
79 }
80 //============================================================
81 inline void IntCurveSurface_HCurveTool::D1 (const CurveGen& C,
82                                            const Standard_Real U,
83                                            gp_Pnt& P,
84                                            gp_Vec& T) {
85   C->D1(U,P,T);
86 }
87 //============================================================
88 inline void IntCurveSurface_HCurveTool::D2 (const CurveGen& C,
89                                            const Standard_Real U,
90                                            gp_Pnt& P,
91                                            gp_Vec& T,
92                                            gp_Vec& N) {
93   
94   C->D2(U,P,T,N);
95 }
96 //============================================================
97 inline void IntCurveSurface_HCurveTool::D3 (const CurveGen& C,
98                                            const Standard_Real U,
99                                            gp_Pnt& P,
100                                            gp_Vec& V1,
101                                            gp_Vec& V2,
102                                            gp_Vec& V3) {
103   
104   C->D3(U,P,V1,V2,V3);
105 }
106 //============================================================
107 inline gp_Vec IntCurveSurface_HCurveTool::DN (const CurveGen& C,
108                                              const Standard_Real U,
109                                              const Standard_Integer N) { 
110   
111   return(C->DN(U,N));
112 }
113 //============================================================
114 inline Standard_Real IntCurveSurface_HCurveTool::Resolution(const CurveGen& C,
115                                                            const Standard_Real R3d) {
116   return(C->Resolution(R3d));
117 }
118 //============================================================
119 inline GeomAbs_CurveType IntCurveSurface_HCurveTool::GetType(const CurveGen& C) {
120   return(C->GetType());
121 }
122 //============================================================
123 inline gp_Lin IntCurveSurface_HCurveTool::Line (const CurveGen& C) {
124   return(C->Line());
125 }
126 //============================================================
127 inline gp_Circ IntCurveSurface_HCurveTool::Circle (const CurveGen& C) {
128   return(C->Circle());
129 }
130 //============================================================
131 inline gp_Elips IntCurveSurface_HCurveTool::Ellipse (const CurveGen& C) {
132   return(C->Ellipse());
133 }
134 //============================================================
135 inline gp_Parab IntCurveSurface_HCurveTool::Parabola (const CurveGen& C) {
136   return(C->Parabola());
137 }
138 //============================================================
139 inline gp_Hypr IntCurveSurface_HCurveTool::Hyperbola (const CurveGen& C) {
140   return(C->Hyperbola());
141 }
142 //============================================================
143 inline Handle(Geom_BezierCurve) IntCurveSurface_HCurveTool::Bezier (const CurveGen& C) {
144   return(C->Bezier());
145 }
146 //============================================================
147 inline Handle(Geom_BSplineCurve) IntCurveSurface_HCurveTool::BSpline (const CurveGen& C) {
148   return(C->BSpline());
149 }
150 //============================================================
151
152
153
154
155
156
157
158
159
160
161
162
163
164