blob: 83a73b84401ac9f6a9fbcd919261aa8d2ae65b70 (
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
|
-- File: ZerImpFunc.cdl
-- Created: Fri Mar 27 09:15:20 1992
-- Author: Isabelle GRIGNON
-- <isg@phobox>
---Copyright: Matra Datavision 1992
generic class ZerImpFunc from IntImp
(ThePSurface as any;
ThePSurfaceTool as any; -- as PSurfaceTool from IntImp(ThePSurface)
TheISurface as any;
TheISurfaceTool as any) -- as ISurfaceTool from IntImp(TheISurface)
inherits FunctionSetWithDerivatives from math
---Purpose: this function is associated to IWalking
-- it's the function : F(x,y,z)=0
-- where x=X(u,v), y=Y(u,v), z=Z(u,v)
uses Vector from math,
Matrix from math,
Pnt from gp,
Vec from gp,
Dir2d from gp
raises UndefinedDerivative from StdFail
is
Create
returns ZerImpFunc from IntImp;
Create(PS: ThePSurface;
IS: TheISurface)
returns ZerImpFunc from IntImp;
Create(IS: TheISurface)
returns ZerImpFunc from IntImp;
Set(me: in out; PS: ThePSurface)
---C++: inline
is static;
SetImplicitSurface(me: in out; IS: TheISurface)
---C++: inline
is static;
Set(me: in out; Tolerance: Real from Standard)
---C++: inline
is static;
NbVariables(me)
returns Integer from Standard
is static;
NbEquations(me)
returns Integer from Standard
is static;
Value(me : in out; X : Vector from math;
F : out Vector from math)
returns Boolean from Standard
is static;
Derivatives(me : in out; X : Vector from math;
D : out Matrix from math)
returns Boolean from Standard
is static;
Values(me : in out; X : Vector from math;
F : out Vector from math;
D : out Matrix from math)
returns Boolean from Standard
is static;
Root(me)
returns Real from Standard
---C++: inline
is static;
Tolerance(me)
---Purpose: Returns the value Tol so that if Abs(Func.Root())<Tol
-- the function is considered null.
--
---C++: inline
returns Real from Standard
is static;
Point(me)
returns Pnt from gp
---C++: return const&
---C++: inline
is static;
IsTangent(me : in out)
returns Boolean from Standard
is static;
Direction3d(me: in out)
returns Vec from gp
---C++: return const&
---C++: inline
raises UndefinedDerivative from StdFail
is static;
Direction2d(me: in out)
returns Dir2d from gp
---C++: return const&
---C++: inline
raises UndefinedDerivative from StdFail
is static;
PSurface(me)
returns ThePSurface
---C++: return const&
---C++: inline
is static;
ISurface(me)
returns TheISurface
---C++: return const&
---C++: inline
is static;
fields
surf : Address from Standard; --- ThePSurface;
func : Address from Standard; --- TheISurface;
u : Real from Standard;
v : Real from Standard;
tol : Real from Standard;
pntsol : Pnt from gp;
valf : Real from Standard;
computed : Boolean from Standard;
tangent : Boolean from Standard;
tgdu : Real from Standard;
tgdv : Real from Standard;
gradient : Vec from gp;
derived : Boolean from Standard;
d1u : Vec from gp;
d1v : Vec from gp;
d3d : Vec from gp;
d2d : Dir2d from gp;
end ZerImpFunc;
|