forked from tpaviot/pythonocc-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppDef.pyi
More file actions
605 lines (568 loc) · 37.4 KB
/
AppDef.pyi
File metadata and controls
605 lines (568 loc) · 37.4 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
from enum import IntEnum
from typing import overload, NewType, Optional, Tuple
from OCC.Core.Standard import *
from OCC.Core.NCollection import *
from OCC.Core.math import *
from OCC.Core.AppParCurves import *
from OCC.Core.TColStd import *
from OCC.Core.Approx import *
from OCC.Core.TColgp import *
from OCC.Core.gp import *
from OCC.Core.FEmTool import *
from OCC.Core.GeomAbs import *
class AppDef_Array1OfMultiPointConstraint:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, theLower: int, theUpper: int) -> None: ...
def __getitem__(self, index: int) -> AppDef_MultiPointConstraint: ...
def __setitem__(self, index: int, value: AppDef_MultiPointConstraint) -> None: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[AppDef_MultiPointConstraint]: ...
def next(self) -> AppDef_MultiPointConstraint: ...
__next__ = next
def Init(self, theValue: AppDef_MultiPointConstraint) -> None: ...
def Size(self) -> int: ...
def Length(self) -> int: ...
def IsEmpty(self) -> bool: ...
def Lower(self) -> int: ...
def Upper(self) -> int: ...
def IsDetectable(self) -> bool: ...
def IsAllocated(self) -> bool: ...
def First(self) -> AppDef_MultiPointConstraint: ...
def Last(self) -> AppDef_MultiPointConstraint: ...
def Value(self, theIndex: int) -> AppDef_MultiPointConstraint: ...
def SetValue(self, theIndex: int, theValue: AppDef_MultiPointConstraint) -> None: ...
class AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute(math_BFGS):
def __init__(self, F: math_MultipleVarFunctionWithGradient, StartingPoint: math_Vector, Tolerance3d: float, Tolerance2d: float, Eps: float, NbIterations: Optional[int] = 200) -> None: ...
def IsSolutionReached(self, F: math_MultipleVarFunctionWithGradient) -> bool: ...
class AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute(math_MultipleVarFunctionWithGradient):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, NbPol: int) -> None: ...
def CurveValue(self) -> AppParCurves_MultiBSpCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Error(self, IPoint: int, CurveIndex: int) -> float: ...
def FirstConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, FirstPoint: int) -> AppParCurves_Constraint: ...
def FunctionMatrix(self) -> math_Matrix: ...
def Gradient(self, X: math_Vector, G: math_Vector) -> bool: ...
def Index(self) -> math_IntegerVector: ...
def LastConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, LastPoint: int) -> AppParCurves_Constraint: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def NbVariables(self) -> int: ...
def NewParameters(self) -> math_Vector: ...
def SetFirstLambda(self, l1: float) -> None: ...
def SetLastLambda(self, l2: float) -> None: ...
def Value(self, X: math_Vector) -> Tuple[bool, float]: ...
def Values(self, X: math_Vector, G: math_Vector) -> Tuple[bool, float]: ...
class AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
def BSplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def BezierValue(self) -> AppParCurves_MultiCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Distance(self) -> math_Matrix: ...
def Error(self) -> Tuple[float, float, float]: ...
def ErrorGradient(self, Grad: math_Vector) -> Tuple[float, float, float]: ...
def FirstLambda(self) -> float: ...
def FunctionMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
def KIndex(self) -> math_IntegerVector: ...
def LastLambda(self) -> float: ...
@overload
def Perform(self, Parameters: math_Vector) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, V1c: math_Vector, V2c: math_Vector, l1: float, l2: float) -> None: ...
def Points(self) -> math_Matrix: ...
def Poles(self) -> math_Matrix: ...
class AppDef_BSplineCompute:
@overload
def __init__(self, Line: AppDef_MultiLine, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-3, Tolerance2d: Optional[float] = 1.0e-6, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, Line: AppDef_MultiLine, Parameters: math_Vector, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, Parameters: math_Vector, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
def ChangeValue(self) -> AppParCurves_MultiBSpCurve: ...
def Error(self) -> Tuple[float, float]: ...
def Init(self, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
def Interpol(self, Line: AppDef_MultiLine) -> None: ...
def IsAllApproximated(self) -> bool: ...
def IsToleranceReached(self) -> bool: ...
def Parameters(self) -> TColStd_Array1OfReal: ...
def Perform(self, Line: AppDef_MultiLine) -> None: ...
def SetConstraints(self, firstC: AppParCurves_Constraint, lastC: AppParCurves_Constraint) -> None: ...
def SetContinuity(self, C: int) -> None: ...
def SetDegrees(self, degreemin: int, degreemax: int) -> None: ...
def SetKnots(self, Knots: TColStd_Array1OfReal) -> None: ...
def SetKnotsAndMultiplicities(self, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger) -> None: ...
def SetParameters(self, ThePar: math_Vector) -> None: ...
def SetPeriodic(self, thePeriodic: bool) -> None: ...
def SetTolerances(self, Tolerance3d: float, Tolerance2d: float) -> None: ...
def Value(self) -> AppParCurves_MultiBSpCurve: ...
class AppDef_Compute:
@overload
def __init__(self, Line: AppDef_MultiLine, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-3, Tolerance2d: Optional[float] = 1.0e-6, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, Line: AppDef_MultiLine, Parameters: math_Vector, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, Parameters: math_Vector, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, Squares: Optional[bool] = False) -> None: ...
@overload
def __init__(self, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
def ChangeValue(self, Index: Optional[int] = 1) -> AppParCurves_MultiCurve: ...
def Error(self, Index: int) -> Tuple[float, float]: ...
def Init(self, degreemin: Optional[int] = 4, degreemax: Optional[int] = 8, Tolerance3d: Optional[float] = 1.0e-03, Tolerance2d: Optional[float] = 1.0e-06, NbIterations: Optional[int] = 5, cutting: Optional[bool] = True, parametrization: Optional[Approx_ParametrizationType] = Approx_ChordLength, Squares: Optional[bool] = False) -> None: ...
def IsAllApproximated(self) -> bool: ...
def IsToleranceReached(self) -> bool: ...
def NbMultiCurves(self) -> int: ...
def Parameters(self, Index: Optional[int] = 1) -> TColStd_Array1OfReal: ...
def Parametrization(self) -> Approx_ParametrizationType: ...
def Perform(self, Line: AppDef_MultiLine) -> None: ...
def SetConstraints(self, firstC: AppParCurves_Constraint, lastC: AppParCurves_Constraint) -> None: ...
def SetDegrees(self, degreemin: int, degreemax: int) -> None: ...
def SetTolerances(self, Tolerance3d: float, Tolerance2d: float) -> None: ...
def SplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def Value(self, Index: Optional[int] = 1) -> AppParCurves_MultiCurve: ...
class AppDef_Gradient_BFGSOfMyGradientOfCompute(math_BFGS):
def __init__(self, F: math_MultipleVarFunctionWithGradient, StartingPoint: math_Vector, Tolerance3d: float, Tolerance2d: float, Eps: float, NbIterations: Optional[int] = 200) -> None: ...
def IsSolutionReached(self, F: math_MultipleVarFunctionWithGradient) -> bool: ...
class AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute(math_BFGS):
def __init__(self, F: math_MultipleVarFunctionWithGradient, StartingPoint: math_Vector, Tolerance3d: float, Tolerance2d: float, Eps: float, NbIterations: Optional[int] = 200) -> None: ...
def IsSolutionReached(self, F: math_MultipleVarFunctionWithGradient) -> bool: ...
class AppDef_Gradient_BFGSOfTheGradient(math_BFGS):
def __init__(self, F: math_MultipleVarFunctionWithGradient, StartingPoint: math_Vector, Tolerance3d: float, Tolerance2d: float, Eps: float, NbIterations: Optional[int] = 200) -> None: ...
def IsSolutionReached(self, F: math_MultipleVarFunctionWithGradient) -> bool: ...
class AppDef_MultiLine:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, NbMult: int) -> None: ...
@overload
def __init__(self, tabMultiP: AppDef_Array1OfMultiPointConstraint) -> None: ...
@overload
def __init__(self, tabP3d: TColgp_Array1OfPnt) -> None: ...
@overload
def __init__(self, tabP2d: TColgp_Array1OfPnt2d) -> None: ...
def NbMultiPoints(self) -> int: ...
def NbPoints(self) -> int: ...
def SetValue(self, Index: int, MPoint: AppDef_MultiPointConstraint) -> None: ...
def Value(self, Index: int) -> AppDef_MultiPointConstraint: ...
class AppDef_MultiPointConstraint(AppParCurves_MultiPoint):
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, NbPoints: int, NbPoints2d: int) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt2d) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt, tabP2d: TColgp_Array1OfPnt2d) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt, tabP2d: TColgp_Array1OfPnt2d, tabVec: TColgp_Array1OfVec, tabVec2d: TColgp_Array1OfVec2d, tabCur: TColgp_Array1OfVec, tabCur2d: TColgp_Array1OfVec2d) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt, tabP2d: TColgp_Array1OfPnt2d, tabVec: TColgp_Array1OfVec, tabVec2d: TColgp_Array1OfVec2d) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt, tabVec: TColgp_Array1OfVec, tabCur: TColgp_Array1OfVec) -> None: ...
@overload
def __init__(self, tabP: TColgp_Array1OfPnt, tabVec: TColgp_Array1OfVec) -> None: ...
@overload
def __init__(self, tabP2d: TColgp_Array1OfPnt2d, tabVec2d: TColgp_Array1OfVec2d) -> None: ...
@overload
def __init__(self, tabP2d: TColgp_Array1OfPnt2d, tabVec2d: TColgp_Array1OfVec2d, tabCur2d: TColgp_Array1OfVec2d) -> None: ...
def Curv(self, Index: int) -> gp_Vec: ...
def Curv2d(self, Index: int) -> gp_Vec2d: ...
def IsCurvaturePoint(self) -> bool: ...
def IsTangencyPoint(self) -> bool: ...
def SetCurv(self, Index: int, Curv: gp_Vec) -> None: ...
def SetCurv2d(self, Index: int, Curv2d: gp_Vec2d) -> None: ...
def SetTang(self, Index: int, Tang: gp_Vec) -> None: ...
def SetTang2d(self, Index: int, Tang2d: gp_Vec2d) -> None: ...
def Tang(self, Index: int) -> gp_Vec: ...
def Tang2d(self, Index: int) -> gp_Vec2d: ...
class AppDef_MyBSplGradientOfBSplineCompute:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, Deg: int, Tol3d: float, Tol2d: float, NbIterations: Optional[int] = 1) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, Deg: int, Tol3d: float, Tol2d: float, NbIterations: int, lambda1: float, lambda2: float) -> None: ...
def AverageError(self) -> float: ...
def Error(self, Index: int) -> float: ...
def IsDone(self) -> bool: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def Value(self) -> AppParCurves_MultiBSpCurve: ...
class AppDef_MyGradientOfCompute:
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int, Tol3d: float, Tol2d: float, NbIterations: Optional[int] = 200) -> None: ...
def AverageError(self) -> float: ...
def Error(self, Index: int) -> float: ...
def IsDone(self) -> bool: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def Value(self) -> AppParCurves_MultiCurve: ...
class AppDef_MyGradientbisOfBSplineCompute:
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int, Tol3d: float, Tol2d: float, NbIterations: Optional[int] = 200) -> None: ...
def AverageError(self) -> float: ...
def Error(self, Index: int) -> float: ...
def IsDone(self) -> bool: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def Value(self) -> AppParCurves_MultiCurve: ...
class AppDef_MyLineTool:
@overload
@staticmethod
def Curvature(ML: AppDef_MultiLine, MPointIndex: int, tabV: TColgp_Array1OfVec) -> bool: ...
@overload
@staticmethod
def Curvature(ML: AppDef_MultiLine, MPointIndex: int, tabV2d: TColgp_Array1OfVec2d) -> bool: ...
@overload
@staticmethod
def Curvature(ML: AppDef_MultiLine, MPointIndex: int, tabV: TColgp_Array1OfVec, tabV2d: TColgp_Array1OfVec2d) -> bool: ...
@staticmethod
def FirstPoint(ML: AppDef_MultiLine) -> int: ...
@staticmethod
def LastPoint(ML: AppDef_MultiLine) -> int: ...
@staticmethod
def MakeMLBetween(ML: AppDef_MultiLine, I1: int, I2: int, NbPMin: int) -> AppDef_MultiLine: ...
@staticmethod
def MakeMLOneMorePoint(ML: AppDef_MultiLine, I1: int, I2: int, indbad: int, OtherLine: AppDef_MultiLine) -> bool: ...
@staticmethod
def NbP2d(ML: AppDef_MultiLine) -> int: ...
@staticmethod
def NbP3d(ML: AppDef_MultiLine) -> int: ...
@overload
@staticmethod
def Tangency(ML: AppDef_MultiLine, MPointIndex: int, tabV: TColgp_Array1OfVec) -> bool: ...
@overload
@staticmethod
def Tangency(ML: AppDef_MultiLine, MPointIndex: int, tabV2d: TColgp_Array1OfVec2d) -> bool: ...
@overload
@staticmethod
def Tangency(ML: AppDef_MultiLine, MPointIndex: int, tabV: TColgp_Array1OfVec, tabV2d: TColgp_Array1OfVec2d) -> bool: ...
@overload
@staticmethod
def Value(ML: AppDef_MultiLine, MPointIndex: int, tabPt: TColgp_Array1OfPnt) -> None: ...
@overload
@staticmethod
def Value(ML: AppDef_MultiLine, MPointIndex: int, tabPt2d: TColgp_Array1OfPnt2d) -> None: ...
@overload
@staticmethod
def Value(ML: AppDef_MultiLine, MPointIndex: int, tabPt: TColgp_Array1OfPnt, tabPt2d: TColgp_Array1OfPnt2d) -> None: ...
@staticmethod
def WhatStatus(ML: AppDef_MultiLine, I1: int, I2: int) -> Approx_Status: ...
class AppDef_ParFunctionOfMyGradientOfCompute(math_MultipleVarFunctionWithGradient):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int) -> None: ...
def CurveValue(self) -> AppParCurves_MultiCurve: ...
def Error(self, IPoint: int, CurveIndex: int) -> float: ...
def FirstConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, FirstPoint: int) -> AppParCurves_Constraint: ...
def Gradient(self, X: math_Vector, G: math_Vector) -> bool: ...
def LastConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, LastPoint: int) -> AppParCurves_Constraint: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def NbVariables(self) -> int: ...
def NewParameters(self) -> math_Vector: ...
def Value(self, X: math_Vector) -> Tuple[bool, float]: ...
def Values(self, X: math_Vector, G: math_Vector) -> Tuple[bool, float]: ...
class AppDef_ParFunctionOfMyGradientbisOfBSplineCompute(math_MultipleVarFunctionWithGradient):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int) -> None: ...
def CurveValue(self) -> AppParCurves_MultiCurve: ...
def Error(self, IPoint: int, CurveIndex: int) -> float: ...
def FirstConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, FirstPoint: int) -> AppParCurves_Constraint: ...
def Gradient(self, X: math_Vector, G: math_Vector) -> bool: ...
def LastConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, LastPoint: int) -> AppParCurves_Constraint: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def NbVariables(self) -> int: ...
def NewParameters(self) -> math_Vector: ...
def Value(self, X: math_Vector) -> Tuple[bool, float]: ...
def Values(self, X: math_Vector, G: math_Vector) -> Tuple[bool, float]: ...
class AppDef_ParFunctionOfTheGradient(math_MultipleVarFunctionWithGradient):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int) -> None: ...
def CurveValue(self) -> AppParCurves_MultiCurve: ...
def Error(self, IPoint: int, CurveIndex: int) -> float: ...
def FirstConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, FirstPoint: int) -> AppParCurves_Constraint: ...
def Gradient(self, X: math_Vector, G: math_Vector) -> bool: ...
def LastConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, LastPoint: int) -> AppParCurves_Constraint: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def NbVariables(self) -> int: ...
def NewParameters(self) -> math_Vector: ...
def Value(self, X: math_Vector) -> Tuple[bool, float]: ...
def Values(self, X: math_Vector, G: math_Vector) -> Tuple[bool, float]: ...
class AppDef_ParLeastSquareOfMyGradientOfCompute:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
def BSplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def BezierValue(self) -> AppParCurves_MultiCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Distance(self) -> math_Matrix: ...
def Error(self) -> Tuple[float, float, float]: ...
def ErrorGradient(self, Grad: math_Vector) -> Tuple[float, float, float]: ...
def FirstLambda(self) -> float: ...
def FunctionMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
def KIndex(self) -> math_IntegerVector: ...
def LastLambda(self) -> float: ...
@overload
def Perform(self, Parameters: math_Vector) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, V1c: math_Vector, V2c: math_Vector, l1: float, l2: float) -> None: ...
def Points(self) -> math_Matrix: ...
def Poles(self) -> math_Matrix: ...
class AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
def BSplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def BezierValue(self) -> AppParCurves_MultiCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Distance(self) -> math_Matrix: ...
def Error(self) -> Tuple[float, float, float]: ...
def ErrorGradient(self, Grad: math_Vector) -> Tuple[float, float, float]: ...
def FirstLambda(self) -> float: ...
def FunctionMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
def KIndex(self) -> math_IntegerVector: ...
def LastLambda(self) -> float: ...
@overload
def Perform(self, Parameters: math_Vector) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, V1c: math_Vector, V2c: math_Vector, l1: float, l2: float) -> None: ...
def Points(self) -> math_Matrix: ...
def Poles(self) -> math_Matrix: ...
class AppDef_ParLeastSquareOfTheGradient:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
def BSplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def BezierValue(self) -> AppParCurves_MultiCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Distance(self) -> math_Matrix: ...
def Error(self) -> Tuple[float, float, float]: ...
def ErrorGradient(self, Grad: math_Vector) -> Tuple[float, float, float]: ...
def FirstLambda(self) -> float: ...
def FunctionMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
def KIndex(self) -> math_IntegerVector: ...
def LastLambda(self) -> float: ...
@overload
def Perform(self, Parameters: math_Vector) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, V1c: math_Vector, V2c: math_Vector, l1: float, l2: float) -> None: ...
def Points(self) -> math_Matrix: ...
def Poles(self) -> math_Matrix: ...
class AppDef_ResConstraintOfMyGradientOfCompute:
def __init__(self, SSP: AppDef_MultiLine, SCurv: AppParCurves_MultiCurve, FirstPoint: int, LastPoint: int, Constraints: AppParCurves_HArray1OfConstraintCouple, Bern: math_Matrix, DerivativeBern: math_Matrix, Tolerance: Optional[float] = 1.0e-10) -> None: ...
def ConstraintDerivative(self, SSP: AppDef_MultiLine, Parameters: math_Vector, Deg: int, DA: math_Matrix) -> math_Matrix: ...
def ConstraintMatrix(self) -> math_Matrix: ...
def Duale(self) -> math_Vector: ...
def InverseMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
class AppDef_ResConstraintOfMyGradientbisOfBSplineCompute:
def __init__(self, SSP: AppDef_MultiLine, SCurv: AppParCurves_MultiCurve, FirstPoint: int, LastPoint: int, Constraints: AppParCurves_HArray1OfConstraintCouple, Bern: math_Matrix, DerivativeBern: math_Matrix, Tolerance: Optional[float] = 1.0e-10) -> None: ...
def ConstraintDerivative(self, SSP: AppDef_MultiLine, Parameters: math_Vector, Deg: int, DA: math_Matrix) -> math_Matrix: ...
def ConstraintMatrix(self) -> math_Matrix: ...
def Duale(self) -> math_Vector: ...
def InverseMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
class AppDef_ResConstraintOfTheGradient:
def __init__(self, SSP: AppDef_MultiLine, SCurv: AppParCurves_MultiCurve, FirstPoint: int, LastPoint: int, Constraints: AppParCurves_HArray1OfConstraintCouple, Bern: math_Matrix, DerivativeBern: math_Matrix, Tolerance: Optional[float] = 1.0e-10) -> None: ...
def ConstraintDerivative(self, SSP: AppDef_MultiLine, Parameters: math_Vector, Deg: int, DA: math_Matrix) -> math_Matrix: ...
def ConstraintMatrix(self) -> math_Matrix: ...
def Duale(self) -> math_Vector: ...
def InverseMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
class AppDef_SmoothCriterion(Standard_Transient):
def AssemblyTable(self) -> FEmTool_HAssemblyTable: ...
def DependenceTable(self) -> TColStd_HArray2OfInteger: ...
def ErrorValues(self) -> Tuple[float, float, float]: ...
def EstLength(self) -> float: ...
def GetCurve(self, C: FEmTool_Curve) -> None: ...
def GetEstimation(self) -> Tuple[float, float, float]: ...
def GetWeight(self) -> Tuple[float, float]: ...
def Gradient(self, Element: int, Dimension: int, G: math_Vector) -> None: ...
def Hessian(self, Element: int, Dimension1: int, Dimension2: int, H: math_Matrix) -> None: ...
def InputVector(self, X: math_Vector, AssTable: FEmTool_HAssemblyTable) -> None: ...
def QualityValues(self, J1min: float, J2min: float, J3min: float) -> Tuple[int, float, float, float]: ...
def SetCurve(self, C: FEmTool_Curve) -> None: ...
def SetEstimation(self, E1: float, E2: float, E3: float) -> None: ...
def SetParameters(self, Parameters: TColStd_HArray1OfReal) -> None: ...
@overload
def SetWeight(self, QuadraticWeight: float, QualityWeight: float, percentJ1: float, percentJ2: float, percentJ3: float) -> None: ...
@overload
def SetWeight(self, Weight: TColStd_Array1OfReal) -> None: ...
class AppDef_TheFunction(math_MultipleVarFunctionWithGradient):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int) -> None: ...
def CurveValue(self) -> AppParCurves_MultiCurve: ...
def Error(self, IPoint: int, CurveIndex: int) -> float: ...
def FirstConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, FirstPoint: int) -> AppParCurves_Constraint: ...
def Gradient(self, X: math_Vector, G: math_Vector) -> bool: ...
def LastConstraint(self, TheConstraints: AppParCurves_HArray1OfConstraintCouple, LastPoint: int) -> AppParCurves_Constraint: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def NbVariables(self) -> int: ...
def NewParameters(self) -> math_Vector: ...
def Value(self, X: math_Vector) -> Tuple[bool, float]: ...
def Values(self, X: math_Vector, G: math_Vector) -> Tuple[bool, float]: ...
class AppDef_TheGradient:
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, Parameters: math_Vector, Deg: int, Tol3d: float, Tol2d: float, NbIterations: Optional[int] = 200) -> None: ...
def AverageError(self) -> float: ...
def Error(self, Index: int) -> float: ...
def IsDone(self) -> bool: ...
def MaxError2d(self) -> float: ...
def MaxError3d(self) -> float: ...
def Value(self) -> AppParCurves_MultiCurve: ...
class AppDef_TheLeastSquares:
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, Parameters: math_Vector, NbPol: int) -> None: ...
@overload
def __init__(self, SSP: AppDef_MultiLine, Knots: TColStd_Array1OfReal, Mults: TColStd_Array1OfInteger, FirstPoint: int, LastPoint: int, FirstCons: AppParCurves_Constraint, LastCons: AppParCurves_Constraint, NbPol: int) -> None: ...
def BSplineValue(self) -> AppParCurves_MultiBSpCurve: ...
def BezierValue(self) -> AppParCurves_MultiCurve: ...
def DerivativeFunctionMatrix(self) -> math_Matrix: ...
def Distance(self) -> math_Matrix: ...
def Error(self) -> Tuple[float, float, float]: ...
def ErrorGradient(self, Grad: math_Vector) -> Tuple[float, float, float]: ...
def FirstLambda(self) -> float: ...
def FunctionMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
def KIndex(self) -> math_IntegerVector: ...
def LastLambda(self) -> float: ...
@overload
def Perform(self, Parameters: math_Vector) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, l1: float, l2: float) -> None: ...
@overload
def Perform(self, Parameters: math_Vector, V1t: math_Vector, V2t: math_Vector, V1c: math_Vector, V2c: math_Vector, l1: float, l2: float) -> None: ...
def Points(self) -> math_Matrix: ...
def Poles(self) -> math_Matrix: ...
class AppDef_TheResol:
def __init__(self, SSP: AppDef_MultiLine, SCurv: AppParCurves_MultiCurve, FirstPoint: int, LastPoint: int, Constraints: AppParCurves_HArray1OfConstraintCouple, Bern: math_Matrix, DerivativeBern: math_Matrix, Tolerance: Optional[float] = 1.0e-10) -> None: ...
def ConstraintDerivative(self, SSP: AppDef_MultiLine, Parameters: math_Vector, Deg: int, DA: math_Matrix) -> math_Matrix: ...
def ConstraintMatrix(self) -> math_Matrix: ...
def Duale(self) -> math_Vector: ...
def InverseMatrix(self) -> math_Matrix: ...
def IsDone(self) -> bool: ...
class AppDef_Variational:
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int, TheConstraints: AppParCurves_HArray1OfConstraintCouple, MaxDegree: Optional[int] = 14, MaxSegment: Optional[int] = 100, Continuity: Optional[GeomAbs_Shape] = GeomAbs_C2, WithMinMax: Optional[bool] = False, WithCutting: Optional[bool] = True, Tolerance: Optional[float] = 1.0, NbIterations: Optional[int] = 2) -> None: ...
def Approximate(self) -> None: ...
def AverageError(self) -> float: ...
def Continuity(self) -> GeomAbs_Shape: ...
def Criterium(self) -> Tuple[float, float, float]: ...
def CriteriumWeight(self) -> Tuple[float, float, float]: ...
def Distance(self, mat: math_Matrix) -> None: ...
def IsCreated(self) -> bool: ...
def IsDone(self) -> bool: ...
def IsOverConstrained(self) -> bool: ...
def Knots(self) -> TColStd_HArray1OfReal: ...
def MaxDegree(self) -> int: ...
def MaxError(self) -> float: ...
def MaxErrorIndex(self) -> int: ...
def MaxSegment(self) -> int: ...
def NbIterations(self) -> int: ...
def Parameters(self) -> TColStd_HArray1OfReal: ...
def QuadraticError(self) -> float: ...
def SetConstraints(self, aConstrainst: AppParCurves_HArray1OfConstraintCouple) -> bool: ...
def SetContinuity(self, C: GeomAbs_Shape) -> bool: ...
@overload
def SetCriteriumWeight(self, Percent1: float, Percent2: float, Percent3: float) -> None: ...
@overload
def SetCriteriumWeight(self, Order: int, Percent: float) -> None: ...
def SetKnots(self, knots: TColStd_HArray1OfReal) -> bool: ...
def SetMaxDegree(self, Degree: int) -> bool: ...
def SetMaxSegment(self, NbSegment: int) -> bool: ...
def SetNbIterations(self, Iter: int) -> None: ...
def SetParameters(self, param: TColStd_HArray1OfReal) -> None: ...
def SetTolerance(self, Tol: float) -> None: ...
def SetWithCutting(self, Cutting: bool) -> bool: ...
def SetWithMinMax(self, MinMax: bool) -> None: ...
def Tolerance(self) -> float: ...
def Value(self) -> AppParCurves_MultiBSpCurve: ...
def WithCutting(self) -> bool: ...
def WithMinMax(self) -> bool: ...
class AppDef_LinearCriteria(AppDef_SmoothCriterion):
def __init__(self, SSP: AppDef_MultiLine, FirstPoint: int, LastPoint: int) -> None: ...
def AssemblyTable(self) -> FEmTool_HAssemblyTable: ...
def DependenceTable(self) -> TColStd_HArray2OfInteger: ...
def ErrorValues(self) -> Tuple[float, float, float]: ...
def GetEstLength(self) -> float: ...
def SetEstLength(self, value: float) -> None: ...
def GetCurve(self, C: FEmTool_Curve) -> None: ...
def GetEstimation(self) -> Tuple[float, float, float]: ...
def GetWeight(self) -> Tuple[float, float]: ...
def Gradient(self, Element: int, Dimension: int, G: math_Vector) -> None: ...
def Hessian(self, Element: int, Dimension1: int, Dimension2: int, H: math_Matrix) -> None: ...
def InputVector(self, X: math_Vector, AssTable: FEmTool_HAssemblyTable) -> None: ...
def QualityValues(self, J1min: float, J2min: float, J3min: float) -> Tuple[int, float, float, float]: ...
def SetCurve(self, C: FEmTool_Curve) -> None: ...
def SetEstimation(self, E1: float, E2: float, E3: float) -> None: ...
def SetParameters(self, Parameters: TColStd_HArray1OfReal) -> None: ...
@overload
def SetWeight(self, QuadraticWeight: float, QualityWeight: float, percentJ1: float, percentJ2: float, percentJ3: float) -> None: ...
@overload
def SetWeight(self, Weight: TColStd_Array1OfReal) -> None: ...
# harray1 classes
class AppDef_HArray1OfMultiPointConstraint(AppDef_Array1OfMultiPointConstraint, Standard_Transient):
def __init__(self, theLower: int, theUpper: int) -> None: ...
def Array1(self) -> AppDef_Array1OfMultiPointConstraint: ...
# harray2 classes
# hsequence classes
AppDef_MyLineTool_Curvature = AppDef_MyLineTool.Curvature
AppDef_MyLineTool_Curvature = AppDef_MyLineTool.Curvature
AppDef_MyLineTool_Curvature = AppDef_MyLineTool.Curvature
AppDef_MyLineTool_FirstPoint = AppDef_MyLineTool.FirstPoint
AppDef_MyLineTool_LastPoint = AppDef_MyLineTool.LastPoint
AppDef_MyLineTool_MakeMLBetween = AppDef_MyLineTool.MakeMLBetween
AppDef_MyLineTool_MakeMLOneMorePoint = AppDef_MyLineTool.MakeMLOneMorePoint
AppDef_MyLineTool_NbP2d = AppDef_MyLineTool.NbP2d
AppDef_MyLineTool_NbP3d = AppDef_MyLineTool.NbP3d
AppDef_MyLineTool_Tangency = AppDef_MyLineTool.Tangency
AppDef_MyLineTool_Tangency = AppDef_MyLineTool.Tangency
AppDef_MyLineTool_Tangency = AppDef_MyLineTool.Tangency
AppDef_MyLineTool_Value = AppDef_MyLineTool.Value
AppDef_MyLineTool_Value = AppDef_MyLineTool.Value
AppDef_MyLineTool_Value = AppDef_MyLineTool.Value
AppDef_MyLineTool_WhatStatus = AppDef_MyLineTool.WhatStatus