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
|
-- File: ApproxInt_Approx.cdl
-- Created: Wed Mar 17 10:55:07 1993
-- Author: Laurent BUCHARD
-- <lbr@sdsun2>
---Copyright: Matra Datavision 1993
generic class Approx from ApproxInt (
ThePSurface as any;
ThePSurfaceTool as any;
TheISurface as any;
TheISurfaceTool as any;
TheWLine as Transient)
uses
MCurvesToBSpCurve from Approx,
MultiBSpCurve from AppParCurves,
Pnt from gp,
Pnt2d from gp,
Vec from gp,
Vec2d from gp,
ParametrizationType from Approx
raises
OutOfRange from Standard,
NotDone from StdFail
class ThePrmPrmSvSurfaces instantiates PrmPrmSvSurfaces from ApproxInt (
ThePSurface,
ThePSurfaceTool,
TheWLine);
class TheImpPrmSvSurfaces instantiates ImpPrmSvSurfaces from ApproxInt (
ThePSurface,
ThePSurfaceTool,
TheISurface,
TheISurfaceTool,
TheWLine);
class TheMultiLine instantiates MultiLine from ApproxInt (
TheWLine,
SvSurfaces from ApproxInt);
class TheMultiLineTool instantiates MultiLineTool from ApproxInt(
TheMultiLine,
SvSurfaces from ApproxInt);
class TheComputeLine instantiates BSplComputeLine from Approx (
TheMultiLine,
TheMultiLineTool);
class TheComputeLineBezier instantiates ComputeLine from Approx (
TheMultiLine,
TheMultiLineTool);
is
Create
returns Approx from ApproxInt;
Perform(me: in out;
Surf1,Surf2 : ThePSurface;
aLine : TheWLine;
ApproxXYZ : Boolean from Standard = Standard_True;
ApproxU1V1 : Boolean from Standard = Standard_True;
ApproxU2V2 : Boolean from Standard = Standard_True;
indicemin : Integer from Standard = 0;
indicemax : Integer from Standard = 0)
is static;
Perform(me: in out;
aLine : TheWLine;
ApproxXYZ : Boolean from Standard = Standard_True;
ApproxU1V1 : Boolean from Standard = Standard_True;
ApproxU2V2 : Boolean from Standard = Standard_True;
indicemin : Integer from Standard = 0;
indicemax : Integer from Standard = 0)
is static;
SetParameters(me: in out; Tol3d : Real from Standard;
Tol2d : Real from Standard;
DegMin : Integer from Standard;
DegMax : Integer from Standard;
NbIterMax : Integer from Standard;
ApproxWithTangency : Boolean from Standard = Standard_True;
Parametrization : ParametrizationType from Approx = Approx_ChordLength)
is static;
SetParameters(me: in out; Tol3d : Real from Standard;
Tol2d : Real from Standard;
RelativeTol : Boolean from Standard;
DegMin : Integer from Standard;
DegMax : Integer from Standard;
NbIterMax : Integer from Standard;
NbPntMax : Integer from Standard;
ApproxWithTangency : Boolean from Standard = Standard_True;
Parametrization : ParametrizationType from Approx = Approx_ChordLength)
is static;
Perform(me:in out)
is static;
TolReached3d(me) returns Real from Standard
is static;
TolReached2d(me) returns Real from Standard
is static;
IsDone(me) returns Boolean from Standard
is static;
NbMultiCurves(me) returns Integer from Standard
is static ;
Value(me; Index: Integer from Standard)
---C++: return const &
returns MultiBSpCurve from AppParCurves
is static;
---- private methods
Perform(me: in out ;Surf1 : ThePSurface;
Surf2 : TheISurface;
aLine : TheWLine;
ApproxXYZ : Boolean from Standard;
ApproxU1V1 : Boolean from Standard;
ApproxU2V2 : Boolean from Standard;
indicemin : Integer from Standard;
indicemax : Integer from Standard)
is static private;
Perform(me: in out ;Surf1 : TheISurface;
Surf2 : ThePSurface;
aLine : TheWLine;
ApproxXYZ : Boolean from Standard;
ApproxU1V1 : Boolean from Standard;
ApproxU2V2 : Boolean from Standard;
indicemin : Integer from Standard;
indicemax : Integer from Standard)
is static private;
UpdateTolReached(me: in out)
is static private;
fields
myComputeLine : TheComputeLine from ApproxInt;
myComputeLineBezier : TheComputeLineBezier from ApproxInt;
myBezToBSpl : MCurvesToBSpCurve from Approx;
myTolReached : Boolean from Standard;
myApproxBez : Boolean from Standard;
myWithTangency : Boolean from Standard;
myTol3d : Real from Standard;
myTol2d : Real from Standard;
myRelativeTol : Boolean from Standard;
myDegMin : Integer from Standard;
myDegMax : Integer from Standard;
myNbPntMax : Integer from Standard;
myNbIterMax : Integer from Standard;
myMinFactorXYZ : Real from Standard;
myMinFactorUV : Real from Standard;
myTolReached3d : Real from Standard;
myTolReached2d : Real from Standard;
end Approx;
|