summaryrefslogtreecommitdiff
path: root/inc/HLRBRep_Curve.lxx
blob: 9a2bcb40bb173b0f9644e738015b84f7189750c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// File:	HLRBRep_Curve.lxx
// Created:	Fri Mar 13 11:08:32 1992
// Author:	Christophe MARION
//		<cma@sdsun2>

#include <Standard_NotImplemented.hxx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec2d.hxx>
#include <gp_Lin2d.hxx>
#include <gp_Circ2d.hxx>
#include <gp_Elips2d.hxx>
#include <gp_Hypr2d.hxx>
#include <gp_Parab2d.hxx>
#include <HLRBRep_BCurveTool.hxx>

//=======================================================================
//function : Projector
//purpose  : 
//=======================================================================

inline void HLRBRep_Curve::Projector(const Standard_Address Proj)
{ myProj = Proj; }

//=======================================================================
//function : Curve
//purpose  : 
//=======================================================================

inline BRepAdaptor_Curve& HLRBRep_Curve::Curve()
{ return myCurve; }

//=======================================================================
//function : Value3D
//purpose  : 
//=======================================================================

inline gp_Pnt HLRBRep_Curve::Value3D(const Standard_Real U) const 
{
  gp_Pnt P;
  D0(U,P);
  return P;
}

//=======================================================================
//function : D0
//purpose  : 
//=======================================================================

inline void HLRBRep_Curve::D0(const Standard_Real U, gp_Pnt& P) const
{ HLRBRep_BCurveTool::D0(myCurve,U,P); }

//=======================================================================
//function : D1
//purpose  : 
//=======================================================================

inline void HLRBRep_Curve::D1(const Standard_Real U,
			      gp_Pnt& P,
			      gp_Vec& V) const
{ HLRBRep_BCurveTool::D1(myCurve,U,P,V); }

//=======================================================================
//function : FirstParameter
//purpose  : 
//=======================================================================

inline Standard_Real  HLRBRep_Curve::FirstParameter() const
{ return Parameter2d(HLRBRep_BCurveTool::FirstParameter(myCurve)); }

//=======================================================================
//function : LastParameter
//purpose  : 
//=======================================================================

inline Standard_Real  HLRBRep_Curve::LastParameter() const
{ return Parameter2d(HLRBRep_BCurveTool::LastParameter(myCurve)); }

//=======================================================================
//function : Continuity
//purpose  : 
//=======================================================================

inline GeomAbs_Shape  HLRBRep_Curve::Continuity() const
{ return HLRBRep_BCurveTool::Continuity(myCurve); }

//=======================================================================
//function : NbIntervals
//purpose  : 
//=======================================================================

inline Standard_Integer  HLRBRep_Curve::NbIntervals
  (const GeomAbs_Shape S)  
{ return HLRBRep_BCurveTool::NbIntervals(myCurve,S); }

//=======================================================================
//function : Intervals
//purpose  : 
//=======================================================================

inline void HLRBRep_Curve::Intervals(TColStd_Array1OfReal& Tab,
				     const GeomAbs_Shape Sh) 
{ HLRBRep_BCurveTool::Intervals(myCurve,Tab,Sh); }


//=======================================================================
//function : IsClosed
//purpose  : 
//=======================================================================

inline Standard_Boolean  HLRBRep_Curve::IsClosed()const 
{ return HLRBRep_BCurveTool::IsClosed(myCurve); }

//=======================================================================
//function : IsPeriodic
//purpose  : 
//=======================================================================

inline Standard_Boolean  HLRBRep_Curve::IsPeriodic()const 
{ return HLRBRep_BCurveTool::IsPeriodic(myCurve); }

//=======================================================================
//function : Period
//purpose  : 
//=======================================================================

inline Standard_Real  HLRBRep_Curve::Period()const 
{ return HLRBRep_BCurveTool::Period(myCurve); }

//=======================================================================
//function : Value
//purpose  : 
//=======================================================================

inline gp_Pnt2d HLRBRep_Curve::Value
  (const Standard_Real U) const 
{
  gp_Pnt2d P;
  D0(U,P);
  return P;
}

//=======================================================================
//function : Resolution
//purpose  : 
//=======================================================================

inline Standard_Real HLRBRep_Curve::Resolution
  (const Standard_Real R3d) const
{ return HLRBRep_BCurveTool::Resolution(myCurve,R3d); }

//=======================================================================
//function : GetType
//purpose  : 
//=======================================================================

inline GeomAbs_CurveType HLRBRep_Curve::GetType() const 
{ return myType; }

//=======================================================================
//function : Degree
//purpose  : 
//=======================================================================

inline Standard_Integer  HLRBRep_Curve::Degree() const
{ return HLRBRep_BCurveTool::Degree(myCurve); }


//=======================================================================
//function : NbPoles
//purpose  : 
//=======================================================================

inline Standard_Integer  HLRBRep_Curve::NbPoles() const
{ return HLRBRep_BCurveTool::NbPoles(myCurve); }

//=======================================================================
//function : NbKnots
//purpose  : 
//=======================================================================

inline Standard_Integer  HLRBRep_Curve::NbKnots() const
{ return HLRBRep_BCurveTool::NbKnots(myCurve); }


//=======================================================================
//function : IsRational
//purpose  : 
//=======================================================================

inline Standard_Boolean HLRBRep_Curve::IsRational() const
{
  return HLRBRep_BCurveTool::IsRational(myCurve);
}