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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
-- File: Curve.cdl
-- Created: Tue Jun 30 15:41:37 1992
-- Author: Laurent BUCHARD
-- <lbr@topsn3>
---Copyright: Matra Datavision 1992
class Curve from IntAna
---Purpose: Definition of a parametric Curve which is the result
-- of the intersection between two quadrics.
uses Pnt from gp,
Vec from gp,
Ax3 from gp,
Cone from gp,
Cylinder from gp,
SurfaceType from GeomAbs
raises DomainError from Standard
is
Create
---Purpose: Empty Constructor
returns Curve from IntAna;
SetCylinderQuadValues(me :in out;
Cylinder: Cylinder from gp;
Qxx,Qyy,Qzz,Qxy,Qxz,Qyz,Qx,Qy,Qz,Q1 : Real;
Tol,DomInf,DomSup : Real;
TwoZForATheta : Boolean from Standard;
ZIsPositive : Boolean from Standard)
---Purpose: Sets the parameters used to compute Points and Derivative
-- on the curve.
is static;
SetConeQuadValues(me :in out;
Cone: Cone from gp;
Qxx,Qyy,Qzz,Qxy,Qxz,Qyz,Qx,Qy,Qz,Q1 : Real;
Tol,DomInf,DomSup : Real;
TwoZForATheta : Boolean from Standard;
ZIsPositive : Boolean from Standard)
---Purpose: Sets the parameters used to compute Points and
-- Derivative on the curve.
is static;
IsOpen(me)
---Purpose: Returns TRUE if the curve is not infinite at the
-- last parameter or at the first parameter of the domain.
returns Boolean from Standard
is static;
Domain(me ; Theta1,Theta2 : out Real)
---Purpose: Returns the paramatric domain of the curve.
raises DomainError from Standard
-- The exception DomainError is raised if IsRestricted
-- returns False.
is static;
IsConstant(me)
---Purpose: Returns TRUE if the function is constant.
returns Boolean from Standard
is static;
IsFirstOpen(me)
---Purpose: Returns TRUE if the domain is open at the beginning.
returns Boolean from Standard
is static;
IsLastOpen(me)
---Purpose: Returns TRUE if the domain is open at the end.
returns Boolean from Standard
is static;
Value(me: in out ;
Theta: Real from Standard)
---Purpose: Returns the point at parameter Theta on the curve.
returns Pnt from gp
raises DomainError from Standard
-- The exception DomainError is raised if Theta is not in
-- the domain.
is static;
D1u(me: in out ; Theta: Real from Standard;
P: out Pnt from gp; V: out Vec from gp)
---Purpose: Returns the point and the first derivative at parameter
-- Theta on the curve.
returns Boolean from Standard
raises DomainError from Standard
-- The exception DomainError is raised if Theta is not in
-- the domain.
is static;
FindParameter(me; P: Pnt from gp; Para: out Real from Standard)
---Purpose: Tries to find the parameter of the point P on the curve.
-- If the method returns False, the "projection" is
-- impossible, and the value of Para is not significant.
-- If the method returns True, Para is the parameter of the
-- nearest intersection between the curve and the iso-theta
-- containing P.
returns Boolean from Standard
is static;
---------------------------------------------------------------
--
-- Implementation :
--
SetIsFirstOpen(me : in out; Flag: Boolean from Standard)
---Purpose: If flag is True, the Curve is not defined at the
-- first parameter of its domain.
--
is static;
SetIsLastOpen(me : in out; Flag: Boolean from Standard)
---Purpose: If flag is True, the Curve is not defined at the
-- first parameter of its domain.
is static;
InternalValue(me; Theta1,Theta2: Real from Standard)
---Purpose: Protected function.
returns Pnt from gp
is static protected;
InternalUVValue(me; Param: Real from Standard;
U,V,A,B,C,Co,Si,Di: out Real from Standard)
---Purpose: Protected function.
is static;
--
SetDomain(me:out;
Theta1:Real from Standard;
Theta2:Real from Standard)
raises DomainError from Standard;
--
fields
Z0Cte: Real from Standard;
Z0Sin: Real from Standard;
Z0Cos: Real from Standard;
Z0SinSin: Real from Standard;
Z0CosCos: Real from Standard;
Z0CosSin: Real from Standard;
Z1Cte: Real from Standard;
Z1Sin: Real from Standard;
Z1Cos: Real from Standard;
Z1SinSin: Real from Standard;
Z1CosCos: Real from Standard;
Z1CosSin: Real from Standard;
Z2Cte: Real from Standard;
Z2Sin: Real from Standard;
Z2Cos: Real from Standard;
Z2SinSin: Real from Standard;
Z2CosCos: Real from Standard;
Z2CosSin: Real from Standard;
TwoCurves : Boolean from Standard;
TakeZPositive : Boolean from Standard;
Tolerance : Real from Standard;
DomainInf : Real from Standard;
DomainSup : Real from Standard;
RestrictedInf : Boolean from Standard;
RestrictedSup : Boolean from Standard;
LastZ : Real from Standard;
LastDZ : Real from Standard;
firstbounded : Boolean from Standard;
lastbounded : Boolean from Standard;
typequadric : SurfaceType from GeomAbs;
RCyl : Real from Standard;
Angle : Real from Standard;
Ax3 : Ax3 from gp;
end Curve;
|