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
|
-- File: GeomAPI_ProjectPointOnSurf.cdl
-- Created: Thu Mar 17 15:57:27 1994
-- Author: Bruno DUMORTIER
---Copyright: Matra Datavision 1994
class ProjectPointOnSurf from GeomAPI
--- Purpose:
-- This class implements methods for computing all the orthogonal
-- projections of a point onto a surface.
uses
Surface from Geom,
ExtPS from Extrema,
Pnt from gp,
Length from Quantity,
Parameter from Quantity,
--modified by NIZNHY-PKV Thu Apr 4 10:37:24 2002 f
Surface from GeomAdaptor
--modified by NIZNHY-PKV Thu Apr 4 10:37:28 2002 t
raises
OutOfRange from Standard,
NotDone from StdFail
is
Create
---Purpose: Creates an empty object. Use the
-- Init function for further initialization.
returns ProjectPointOnSurf from GeomAPI;
Create(P : Pnt from gp;
Surface : Surface from Geom)
---Purpose: Create the projection of a point <P> on a surface
-- <Surface>
---Level: Public
returns ProjectPointOnSurf from GeomAPI;
Create(P : Pnt from gp;
Surface : Surface from Geom;
Tolerance : Real from Standard)
---Purpose: Create the projection of a point <P> on a surface
-- <Surface>
---Level: Public
returns ProjectPointOnSurf from GeomAPI;
---Purpose: Create the projection of a point <P> on a surface
-- <Surface>. The solution are computed in the domain
-- [Umin,Usup] [Vmin,Vsup] of the surface.
---Level: Public
Create(P : Pnt from gp;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity;
Tolerance : Real from Standard)
returns ProjectPointOnSurf from GeomAPI;
Create(P : Pnt from gp;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity)
returns ProjectPointOnSurf from GeomAPI;
---Purpose: Init the projection of a point <P> on a surface
-- <Surface>
---Level: Public
Init(me : in out;
P : Pnt from gp;
Surface : Surface from Geom;
Tolerance : Real from Standard)
is static;
Init(me : in out;
P : Pnt from gp;
Surface : Surface from Geom)
is static;
---Purpose: Init the projection of a point <P> on a surface
-- <Surface>. The solution are computed in the domain
-- [Umin,Usup] [Vmin,Vsup] of the surface.
---Level: Public
Init(me : in out;
P : Pnt from gp;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity;
Tolerance : Real from Standard)
---Level: Public
is static;
Init(me : in out;
P : Pnt from gp;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity)
is static;
---Purpose: Init the projection for many points on a surface
-- <Surface>. The solutions will be computed in the domain
-- [Umin,Usup] [Vmin,Vsup] of the surface.
---Level: Public
Init(me : in out;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity;
Tolerance : Real from Standard)
is static;
Init(me : in out;
Surface : Surface from Geom;
Umin, Usup,
Vmin, Vsup : Parameter from Quantity)
is static;
Perform (me: in out; P: Pnt from gp)
---Purpose: Performs the projection of a point on the current surface.
---Level : Public.
is static;
IsDone (me) returns Boolean from Standard is static;
NbPoints(me)
---Purpose: Returns the number of computed orthogonal projection points.
-- Note: if projection fails, NbPoints returns 0.
returns Integer
---C++: alias "Standard_EXPORT operator Standard_Integer() const;"
is static;
Point(me; Index : Integer from Standard)
---Purpose: Returns the orthogonal projection
-- on the surface. Index is a number of a computed point.
-- Exceptions
-- Standard_OutOfRange if Index is not in the range [ 1,NbPoints ], where
-- NbPoints is the number of solution points.
returns Pnt from gp
raises OutOfRange from Standard
is static;
Parameters(me; Index : Integer from Standard;
U, V : out Parameter from Quantity)
---Purpose: Returns the parameters (U,V) on the
-- surface of the orthogonal projection. Index is a number of a
-- computed point.
-- Exceptions
-- Standard_OutOfRange if Index is not in the range [ 1,NbPoints ], where
-- NbPoints is the number of solution points.
raises OutOfRange from Standard
is static;
Distance(me; Index : Integer from Standard)
returns Length from Quantity
---Purpose: Computes the distance between the
-- point and its orthogonal projection on the surface. Index is a number
-- of a computed point.
-- Exceptions
-- Standard_OutOfRange if Index is not in the range [ 1,NbPoints ], where
-- NbPoints is the number of solution points.
raises OutOfRange from Standard
is static;
NearestPoint(me)
---Purpose: Returns the nearest orthogonal projection of the point
-- on the surface.
-- Exceptions
-- StdFail_NotDone if projection fails.
returns Pnt from gp
---C++: alias "Standard_EXPORT operator gp_Pnt() const;"
raises NotDone from StdFail
is static;
LowerDistanceParameters(me; U, V : out Parameter from Quantity)
---Purpose: Returns the parameters (U,V) on the
-- surface of the nearest computed orthogonal projection of the point.
-- Exceptions
-- StdFail_NotDone if projection fails.
raises NotDone from StdFail
is static;
LowerDistance(me)
---Purpose: Computes the distance between the
-- point and its nearest orthogonal projection on the surface.
-- Exceptions
-- StdFail_NotDone if projection fails.
returns Length from Quantity
---C++: alias "Standard_EXPORT operator Standard_Real() const;"
raises NotDone from StdFail
is static;
Extrema(me)
---Purpose: return the algorithmic object from Extrema
---Level: Advanced
---C++: return const&
---C++: inline
returns ExtPS from Extrema
is static;
Init(me : in out) is static private;
---Level: Private
fields
myIsDone : Boolean from Standard;
myIndex : Integer from Standard; -- index of the nearest solution
myExtPS : ExtPS from Extrema;
--modified by NIZNHY-PKV Thu Apr 4 10:36:31 2002 f
myGeomAdaptor: Surface from GeomAdaptor;
--modified by NIZNHY-PKV Thu Apr 4 10:36:33 2002 t
end ProjectPointOnSurf;
|