blob: aba2f19c017d61849cdbb8d508f5b413c8c41823 (
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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
-- File: Contap_Point.cdl
-- Created: Thu Mar 4 17:22:45 1993
-- Author: Jacques GOUSSARD
-- <jag@form4>
---Copyright: Matra Datavision 1993
generic class Point from Contap
(TheVertex as any;
TheArc as any)
---Purpose: Definition of a vertex on the contour line.
-- Most of the time, such a point is an intersection
-- between the contour and a restriction of the surface.
-- When it is not tyhe method IsOnArc return False.
-- Such a point is contains geometrical informations (see
-- the Value method) and logical informations.
uses Pnt from gp,
Transition from IntSurf
raises DomainError from Standard
is
Create
---Purpose: Empty constructor.
returns Point from Contap;
Create(Pt: Pnt from gp; U,V: Real from Standard)
---Purpose: Creates a point.
returns Point from Contap;
SetValue(me: in out; Pt: Pnt from gp; U,V: Real from Standard)
---Purpose: Sets the values for a point.
---C++: inline
is static;
SetParameter(me: in out; Para: Real from Standard)
---Purpose: Set the value of the parameter on the intersection line.
---C++: inline
is static;
SetVertex(me: in out; V: TheVertex)
---Purpose: Sets the values of a point which is a vertex on
-- the initial facet of restriction of one
-- of the surface.
---C++: inline
is static;
SetArc(me: in out; A: TheArc; Param: Real from Standard;
TLine,TArc: Transition from IntSurf)
---Purpose: Sets the value of the arc and of the parameter on
-- this arc of the point.
---C++: inline
is static;
SetMultiple(me: in out)
---C++: inline
is static;
SetInternal(me : in out)
---C++: inline
is static;
Value(me)
---Purpose: Returns the intersection point (geometric information).
returns Pnt from gp
---C++: return const&
---C++: inline
is static;
ParameterOnLine(me)
---Purpose: This method returns the parameter of the point
-- on the intersection line.
-- If the points does not belong to an intersection line,
-- the value returned does not have any sens.
returns Real from Standard
---C++: inline
is static;
Parameters(me; U1,V1: out Real from Standard)
---Purpose: Returns the parameters on the surface of the point.
---C++: inline
is static;
IsOnArc(me)
---Purpose: Returns True when the point is an intersection between
-- the contour and a restriction.
returns Boolean from Standard
---C++: inline
is static;
Arc(me)
---Purpose: Returns the arc of restriction containing the
-- vertex.
returns any TheArc
---C++: return const&
---C++: inline
raises DomainError from Standard
--- The exception DomianError is raised when IsOnArc
-- returns Standard_False.
is static;
ParameterOnArc(me)
---Purpose: Returns the parameter of the point on the
-- arc returned by the method Arc().
returns Real from Standard
---C++: inline
raises DomainError from Standard
--- The exception DomianError is raised when IsOnArc
-- returns Standard_False.
is static;
TransitionOnLine(me)
---Purpose: Returns the transition of the point on the contour.
returns Transition from IntSurf
---C++: inline
---C++: return const&
raises DomainError from Standard
--- The exception DomianError is raised when IsOnArc
-- returns Standard_False.
is static;
TransitionOnArc(me)
---Purpose: Returns the transition of the point on the arc.
returns Transition from IntSurf
---C++: inline
---C++: return const&
raises DomainError from Standard
--- The exception DomianError is raised when IsOnArc
-- returns Standard_False.
is static;
IsVertex(me)
---Purpose: Returns TRUE if the point is a vertex on the initial
-- restriction facet of the surface.
returns Boolean from Standard
---C++: inline
is static;
Vertex(me)
---Purpose: Returns the information about the point when it is
-- on the domain of the patch, i-e when the function
-- IsVertex returns True.
-- Otherwise, an exception is raised.
returns any TheVertex
---C++: return const&
---C++: inline
raises DomainError from Standard
is static;
IsMultiple(me)
---Purpose: Returns True if the point belongs to several
-- lines.
returns Boolean from Standard
---C++: inline
is static;
IsInternal(me)
---Purpose: Returns True if the point is an internal one, i.e
-- if the tangent to the line on the point and the
-- eye direction are parallel.
returns Boolean from Standard
---C++: inline
is static;
fields
pt : Pnt from gp;
uparam : Real from Standard;
vparam : Real from Standard;
paraline : Real from Standard;
onarc : Boolean from Standard;
arc : TheArc;
traline : Transition from IntSurf;
traarc : Transition from IntSurf;
prmarc : Real from Standard;
isvtx : Boolean from Standard;
vtx : TheVertex;
ismult : Boolean from Standard;
myInternal : Boolean from Standard;
end Point;
|