zosapi-stubs 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. ZOSAPI-stubs/Analysis/Data/__init__.pyi +658 -0
  2. ZOSAPI-stubs/Analysis/PhysicalOptics/__init__.pyi +245 -0
  3. ZOSAPI-stubs/Analysis/RayTracing/__init__.pyi +50 -0
  4. ZOSAPI-stubs/Analysis/Settings/Aberrations/__init__.pyi +441 -0
  5. ZOSAPI-stubs/Analysis/Settings/DiffractionEfficiency/__init__.pyi +80 -0
  6. ZOSAPI-stubs/Analysis/Settings/EncircledEnergy/__init__.pyi +216 -0
  7. ZOSAPI-stubs/Analysis/Settings/ExtendedScene/__init__.pyi +254 -0
  8. ZOSAPI-stubs/Analysis/Settings/Fans/__init__.pyi +55 -0
  9. ZOSAPI-stubs/Analysis/Settings/Materials/__init__.pyi +117 -0
  10. ZOSAPI-stubs/Analysis/Settings/Mtf/__init__.pyi +605 -0
  11. ZOSAPI-stubs/Analysis/Settings/Psf/__init__.pyi +221 -0
  12. ZOSAPI-stubs/Analysis/Settings/RMS/RMSField/__init__.pyi +16 -0
  13. ZOSAPI-stubs/Analysis/Settings/RMS/RMSFieldMap/__init__.pyi +17 -0
  14. ZOSAPI-stubs/Analysis/Settings/RMS/__init__.pyi +322 -0
  15. ZOSAPI-stubs/Analysis/Settings/RayTracing/__init__.pyi +102 -0
  16. ZOSAPI-stubs/Analysis/Settings/Spot/__init__.pyi +102 -0
  17. ZOSAPI-stubs/Analysis/Settings/Surface/__init__.pyi +284 -0
  18. ZOSAPI-stubs/Analysis/Settings/Wavefront/__init__.pyi +104 -0
  19. ZOSAPI-stubs/Analysis/Settings/__init__.pyi +429 -0
  20. ZOSAPI-stubs/Analysis/Tolerancing/QuickYield/__init__.pyi +115 -0
  21. ZOSAPI-stubs/Analysis/Tolerancing/__init__.pyi +127 -0
  22. ZOSAPI-stubs/Analysis/__init__.pyi +1338 -0
  23. ZOSAPI-stubs/Common/__init__.pyi +283 -0
  24. ZOSAPI-stubs/Editors/LDE/__init__.pyi +7632 -0
  25. ZOSAPI-stubs/Editors/MCE/__init__.pyi +342 -0
  26. ZOSAPI-stubs/Editors/MFE/__init__.pyi +679 -0
  27. ZOSAPI-stubs/Editors/NCE/__init__.pyi +10941 -0
  28. ZOSAPI-stubs/Editors/TDE/__init__.pyi +287 -0
  29. ZOSAPI-stubs/Editors/__init__.pyi +688 -0
  30. ZOSAPI-stubs/Preferences/__init__.pyi +152 -0
  31. ZOSAPI-stubs/SystemData/__init__.pyi +749 -0
  32. ZOSAPI-stubs/Tools/General/__init__.pyi +736 -0
  33. ZOSAPI-stubs/Tools/LMx/__init__.pyi +607 -0
  34. ZOSAPI-stubs/Tools/Optimization/__init__.pyi +173 -0
  35. ZOSAPI-stubs/Tools/RayTrace/__init__.pyi +602 -0
  36. ZOSAPI-stubs/Tools/Tolerancing/__init__.pyi +626 -0
  37. ZOSAPI-stubs/Tools/__init__.pyi +689 -0
  38. ZOSAPI-stubs/Wizards/__init__.pyi +808 -0
  39. ZOSAPI-stubs/__init__.pyi +649 -0
  40. ZOSAPI-stubs/py.typed +0 -0
  41. zosapi_stubs/__init__.py +37 -0
  42. zosapi_stubs/connection.py +307 -0
  43. zosapi_stubs/stubgen/__init__.py +5 -0
  44. zosapi_stubs/stubgen/cli.py +78 -0
  45. zosapi_stubs/stubgen/generator.py +570 -0
  46. zosapi_stubs/stubgen/xmldocs.py +166 -0
  47. zosapi_stubs-1.1.0.dist-info/METADATA +360 -0
  48. zosapi_stubs-1.1.0.dist-info/RECORD +51 -0
  49. zosapi_stubs-1.1.0.dist-info/WHEEL +4 -0
  50. zosapi_stubs-1.1.0.dist-info/entry_points.txt +2 -0
  51. zosapi_stubs-1.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,658 @@
1
+ # Auto-generated by zosapi-stubgen — do not edit by hand.
2
+ # Re-run `zosapi-stubgen` to refresh after an OpticStudio upgrade.
3
+ from __future__ import annotations
4
+ from typing import (
5
+ Any, Dict, Generic, Iterable, Iterator, List,
6
+ Optional, overload, Sequence, Set, Tuple, TypeVar, Union,
7
+ )
8
+ from enum import IntEnum, IntFlag
9
+ from datetime import datetime, timedelta
10
+
11
+ import ZOSAPI.Analysis
12
+ import ZOSAPI.Common
13
+ import ZOSAPI.Tools
14
+
15
+ class IAR_:
16
+ """Properties and methods for retrieving analysis window data. This interface can be accessed via the IA_ interface. Note that not all analysis types currently return detailed results via this interface, however all analyses that support text output should support the GetTextFile method. See the OpticStudio manual for more information."""
17
+ @property
18
+ def MetaData(self) -> IAR_MetaData: ...
19
+ @property
20
+ def HeaderData(self) -> IAR_HeaderData: ...
21
+ @property
22
+ def NumberOfDataGrids(self) -> int: ...
23
+ @property
24
+ def DataGrids(self) -> List[IAR_DataGrid]: ...
25
+ @property
26
+ def NumberOfDataGridsRgb(self) -> int: ...
27
+ @property
28
+ def DataGridsRgb(self) -> List[IAR_DataGridRgb]: ...
29
+ @property
30
+ def NumberOfDataSeries(self) -> int: ...
31
+ @property
32
+ def DataSeries(self) -> List[IAR_DataSeries]: ...
33
+ @property
34
+ def NumberOfDataSeriesRgb(self) -> int: ...
35
+ @property
36
+ def DataSeriesRgb(self) -> List[IAR_DataSeriesRgb]: ...
37
+ @property
38
+ def NumberOfDataScatterPoints(self) -> int: ...
39
+ @property
40
+ def DataScatterPoints(self) -> List[IAR_DataScatterPoints]: ...
41
+ @property
42
+ def NumberOfDataScatterPointsRgb(self) -> int: ...
43
+ @property
44
+ def DataScatterPointsRgb(self) -> List[IAR_DataScatterPointsRgb]: ...
45
+ @property
46
+ def NumberOfRayData(self) -> int: ...
47
+ @property
48
+ def RayData(self) -> List[IAR_RayData]: ...
49
+ @property
50
+ def CriticalRayData(self) -> IAR_CriticalRayData: ...
51
+ @property
52
+ def PathAnalysisData(self) -> IAR_PathAnalysisData: ...
53
+ @property
54
+ def SpotData(self) -> IAR_SpotDataResultMatrix: ...
55
+ @property
56
+ def NumberOfMessages(self) -> int: ...
57
+ @property
58
+ def Messages(self) -> List[ZOSAPI.Analysis.IMessage]: ...
59
+ def GetDataGrid(self, index: int) -> IAR_DataGrid: ...
60
+ def GetDataGridRgb(self, index: int) -> IAR_DataGridRgb: ...
61
+ def GetDataScatterPoint(self, index: int) -> IAR_DataScatterPoints: ...
62
+ def GetDataScatterPointRgb(self, index: int) -> IAR_DataScatterPointsRgb: ...
63
+ def GetDataSeries(self, index: int) -> IAR_DataSeries: ...
64
+ def GetDataSeriesRgb(self, index: int) -> IAR_DataSeriesRgb: ...
65
+ def GetMessageAt(self, index: int) -> ZOSAPI.Analysis.IMessage: ...
66
+ def GetRayData(self, index: int) -> IAR_RayData: ...
67
+ def GetTextFile(self, Filename: str) -> bool:
68
+ """This function provides similar functionality to the DDE and ZPL commands GETTEXTFILE
69
+
70
+ Args:
71
+ Filename: The output filename to store the text results data.
72
+
73
+ Returns:
74
+ true if the output file was successfully created; otherwise, false.
75
+ """
76
+ ...
77
+
78
+ class IAR_CriticalRayData:
79
+ @property
80
+ def NumRays(self) -> int: ...
81
+ @property
82
+ def HeaderLabels(self) -> List[str]: ...
83
+ @property
84
+ def Rays(self) -> List[IAR_CriticalRayInfo]: ...
85
+ def GetRay(self, idx: int) -> IAR_CriticalRayInfo:
86
+ """Gets the specified ray.
87
+
88
+ Args:
89
+ idx: The index (0 to NumRays-1).
90
+ """
91
+ ...
92
+
93
+ class IAR_CriticalRayInfo:
94
+ @property
95
+ def FieldPoint(self) -> int: ...
96
+ @property
97
+ def RayType(self) -> ZOSAPI.Tools.CriticalRayType: ...
98
+ @property
99
+ def Pass(self) -> bool: ...
100
+ @property
101
+ def TerminationObject(self) -> int: ...
102
+ @property
103
+ def Wavelength(self) -> float: ...
104
+ @property
105
+ def XIn(self) -> float: ...
106
+ @property
107
+ def YIn(self) -> float: ...
108
+ @property
109
+ def ZIn(self) -> float: ...
110
+ @property
111
+ def LIn(self) -> float: ...
112
+ @property
113
+ def MIn(self) -> float: ...
114
+ @property
115
+ def NIn(self) -> float: ...
116
+ @property
117
+ def XTarget(self) -> float: ...
118
+ @property
119
+ def YTarget(self) -> float: ...
120
+ @property
121
+ def ZTarget(self) -> float: ...
122
+ @property
123
+ def LTarget(self) -> float: ...
124
+ @property
125
+ def MTarget(self) -> float: ...
126
+ @property
127
+ def NTarget(self) -> float: ...
128
+ @property
129
+ def XActual(self) -> float: ...
130
+ @property
131
+ def YActual(self) -> float: ...
132
+ @property
133
+ def ZActual(self) -> float: ...
134
+ @property
135
+ def LActual(self) -> float: ...
136
+ @property
137
+ def MActual(self) -> float: ...
138
+ @property
139
+ def NActual(self) -> float: ...
140
+
141
+ class IAR_DataGrid:
142
+ @property
143
+ def Description(self) -> str: ...
144
+ @property
145
+ def XLabel(self) -> str: ...
146
+ @property
147
+ def YLabel(self) -> str: ...
148
+ @property
149
+ def ValueLabel(self) -> str: ...
150
+ @property
151
+ def Nx(self) -> int: ...
152
+ @property
153
+ def Ny(self) -> int: ...
154
+ @property
155
+ def Dx(self) -> float: ...
156
+ @property
157
+ def Dy(self) -> float: ...
158
+ @property
159
+ def MinX(self) -> float: ...
160
+ @property
161
+ def MinY(self) -> float: ...
162
+ @property
163
+ def Values(self) -> List[float]: ...
164
+ @property
165
+ def ValueData(self) -> ZOSAPI.Common.IMatrixData: ...
166
+ def ConvertToRGB(self, translator: ZOSAPI.Analysis.IColorTranslator) -> IAR_DataGridRgb: ...
167
+ def X(self, rowX: int) -> float: ...
168
+ def XYZ(self, rowX: int, colY: int) -> IAR_XYZ: ...
169
+ def Y(self, colY: int) -> float: ...
170
+ def Z(self, rowX: int, colY: int) -> float: ...
171
+
172
+ class IAR_DataGridRgb:
173
+ @property
174
+ def Description(self) -> str: ...
175
+ @property
176
+ def XLabel(self) -> str: ...
177
+ @property
178
+ def YLabel(self) -> str: ...
179
+ @property
180
+ def ValueLabel(self) -> str: ...
181
+ @property
182
+ def Nx(self) -> int: ...
183
+ @property
184
+ def Ny(self) -> int: ...
185
+ @property
186
+ def Dx(self) -> float: ...
187
+ @property
188
+ def Dy(self) -> float: ...
189
+ @property
190
+ def MinX(self) -> float: ...
191
+ @property
192
+ def MinY(self) -> float: ...
193
+ @property
194
+ def Values(self) -> List[IAR_Rgb]: ...
195
+ def FillValues(self, fullSize: int) -> Tuple[List[float], List[float], List[float]]:
196
+ """Retries all RGB data at once, into the specified buffers.
197
+
198
+ Args:
199
+ fullSize: The full size (Nx * Ny).
200
+ rData: The r data.
201
+ gData: The g data.
202
+ bData: The b data.
203
+ """
204
+ ...
205
+ def GetValue(self, x: int, y: int) -> IAR_Rgb:
206
+ """Gets the specified point.
207
+
208
+ Args:
209
+ x: The row (0 to Nx-1).
210
+ y: The col (0 to Ny-1).
211
+ """
212
+ ...
213
+
214
+ class IAR_DataGridVector:
215
+ @property
216
+ def Description(self) -> str: ...
217
+ @property
218
+ def XLabel(self) -> str: ...
219
+ @property
220
+ def YLabel(self) -> str: ...
221
+ @property
222
+ def ValueLabel(self) -> str: ...
223
+ @property
224
+ def Nx(self) -> int: ...
225
+ @property
226
+ def Ny(self) -> int: ...
227
+ @property
228
+ def Dx(self) -> float: ...
229
+ @property
230
+ def Dy(self) -> float: ...
231
+ @property
232
+ def MinX(self) -> float: ...
233
+ @property
234
+ def MinY(self) -> float: ...
235
+ @property
236
+ def DeltaXValues(self) -> List[float]: ...
237
+ @property
238
+ def DeltaYValues(self) -> List[float]: ...
239
+ @property
240
+ def DeltaXValueData(self) -> ZOSAPI.Common.IMatrixData: ...
241
+ @property
242
+ def DeltaYValueData(self) -> ZOSAPI.Common.IMatrixData: ...
243
+ def DeltaX(self, rowX: int, colY: int) -> float: ...
244
+ def DeltaY(self, rowX: int, colY: int) -> float: ...
245
+ def X(self, rowX: int) -> float: ...
246
+ def Y(self, colY: int) -> float: ...
247
+
248
+ class IAR_DataScatterPoints:
249
+ @property
250
+ def Description(self) -> str: ...
251
+ @property
252
+ def NumPoints(self) -> int: ...
253
+ @property
254
+ def Points(self) -> List[IAR_ScatterPoint]: ...
255
+ @property
256
+ def XLabel(self) -> str: ...
257
+ @property
258
+ def YLabel(self) -> str: ...
259
+ @property
260
+ def ValueLabel(self) -> str: ...
261
+ def ConvertToRGB(self, translator: ZOSAPI.Analysis.IColorTranslator) -> IAR_DataScatterPointsRgb: ...
262
+ def FillPointValues(self, fullSize: int) -> Tuple[List[float], List[float], List[float]]:
263
+ """Retries all scatter data at once, into the specified buffers.
264
+
265
+ Args:
266
+ fullSize: The full size (same as NumPoints).
267
+ xData: The x data.
268
+ yData: The y data.
269
+ valueData: The value data.
270
+ """
271
+ ...
272
+ def GetPoint(self, idx: int) -> IAR_ScatterPoint:
273
+ """Gets the specified point.
274
+
275
+ Args:
276
+ idx: The index (0 to NumPoints-1).
277
+ """
278
+ ...
279
+
280
+ class IAR_DataScatterPointsRgb:
281
+ @property
282
+ def Description(self) -> str: ...
283
+ @property
284
+ def NumPoints(self) -> int: ...
285
+ @property
286
+ def Points(self) -> List[IAR_ScatterPointRgb]: ...
287
+ @property
288
+ def XLabel(self) -> str: ...
289
+ @property
290
+ def YLabel(self) -> str: ...
291
+ @property
292
+ def ValueLabel(self) -> str: ...
293
+ def FillPointValues(self, fullSize: int) -> Tuple[List[float], List[float], List[float], List[float], List[float]]:
294
+ """Retries all scatter data at once, into the specified buffers.
295
+
296
+ Args:
297
+ fullSize: The full size (same as NumPoints).
298
+ xData: The x data.
299
+ yData: The y data.
300
+ rData: The r data.
301
+ gData: The g data.
302
+ bData: The b data.
303
+ """
304
+ ...
305
+ def GetPoint(self, idx: int) -> IAR_ScatterPointRgb:
306
+ """Gets the specified point.
307
+
308
+ Args:
309
+ idx: The index (0 to NumPoints-1).
310
+ """
311
+ ...
312
+
313
+ class IAR_DataSeries:
314
+ @property
315
+ def Description(self) -> str: ...
316
+ @property
317
+ def XLabel(self) -> str: ...
318
+ @property
319
+ def XData(self) -> ZOSAPI.Common.IVectorData: ...
320
+ @property
321
+ def SeriesLabels(self) -> List[str]: ...
322
+ @property
323
+ def NumSeries(self) -> int: ...
324
+ @property
325
+ def YData(self) -> ZOSAPI.Common.IMatrixData: ...
326
+ def ConvertToRGB(self, translator: ZOSAPI.Analysis.IColorTranslator) -> IAR_DataSeriesRgb: ...
327
+
328
+ class IAR_DataSeriesRgb:
329
+ @property
330
+ def Description(self) -> str: ...
331
+ @property
332
+ def NumSeries(self) -> int: ...
333
+ @property
334
+ def XData(self) -> ZOSAPI.Common.IVectorData: ...
335
+ @property
336
+ def NumberOfRows(self) -> int: ...
337
+ @property
338
+ def YVals(self) -> List[IAR_Rgb]: ...
339
+ @property
340
+ def XLabel(self) -> str: ...
341
+ @property
342
+ def SeriesLabels(self) -> List[str]: ...
343
+ def FillYValues(self, fullSize: int) -> Tuple[List[float], List[float], List[float]]:
344
+ """Retries all RGB data at once, into the specified buffers.
345
+
346
+ Args:
347
+ fullSize: The full size (NumberOfRows * NumSeries).
348
+ rData: The r data.
349
+ gData: The g data.
350
+ bData: The b data.
351
+ """
352
+ ...
353
+ def GetYPoint(self, row: int, col: int) -> IAR_Rgb:
354
+ """Gets the specified point.
355
+
356
+ Args:
357
+ row: The row (0 to NumberOfRows-1).
358
+ col: The col (0 to NumSeries-1).
359
+ """
360
+ ...
361
+
362
+ class IAR_HeaderData:
363
+ @property
364
+ def Lines(self) -> List[str]: ...
365
+
366
+ class IAR_MetaData:
367
+ @property
368
+ def FeatureDescription(self) -> str: ...
369
+ @property
370
+ def LensFile(self) -> str: ...
371
+ @property
372
+ def LensTitle(self) -> str: ...
373
+ @property
374
+ def Date(self) -> datetime: ...
375
+
376
+ class IAR_PathAnalysisData:
377
+ @property
378
+ def TotalFluxIn(self) -> float: ...
379
+ @property
380
+ def TotalFluxOut(self) -> float: ...
381
+ @property
382
+ def TotalRays(self) -> int: ...
383
+ @property
384
+ def TotalHits(self) -> int: ...
385
+ @property
386
+ def NumPaths(self) -> int: ...
387
+ @property
388
+ def Paths(self) -> List[IAR_PathAnalysisEntry]: ...
389
+ def GetPathNumber(self, idx: int) -> IAR_PathAnalysisEntry:
390
+ """Gets data for the specified path.
391
+
392
+ Args:
393
+ idx: The path number (1 to NumPaths).
394
+ """
395
+ ...
396
+
397
+ class IAR_PathAnalysisEntry:
398
+ @property
399
+ def PathNumber(self) -> int: ...
400
+ @property
401
+ def RaysInPath(self) -> int: ...
402
+ @property
403
+ def HitsInPath(self) -> int: ...
404
+ @property
405
+ def GhostsInPath(self) -> int: ...
406
+ @property
407
+ def UniqueObjectsInPath(self) -> int: ...
408
+ @property
409
+ def TotalPathFlux(self) -> float: ...
410
+ @property
411
+ def NumberOfObjectsInPath(self) -> int: ...
412
+ @property
413
+ def PathObjectList(self) -> List[int]: ...
414
+ @property
415
+ def PathSource(self) -> int: ...
416
+ def GetPathObjectNumber(self, objectNumber: int) -> int: ...
417
+
418
+ class IAR_RayData:
419
+ @property
420
+ def Description(self) -> str: ...
421
+ @property
422
+ def NumRays(self) -> int: ...
423
+ @property
424
+ def Rays(self) -> List[IAR_RayInfo]: ...
425
+ def GetRay(self, idx: int) -> IAR_RayInfo:
426
+ """Gets the specified ray.
427
+
428
+ Args:
429
+ idx: The index (0 to NumRays-1).
430
+ """
431
+ ...
432
+
433
+ class IAR_RayInfo:
434
+ @property
435
+ def RayIndex(self) -> int:
436
+ """Indicates the source ray from which is the original ancestor for this segment"""
437
+ ...
438
+ @property
439
+ def Segment(self) -> int:
440
+ """Sequential from 0 to the total number of segments the generated from the origin ray"""
441
+ ...
442
+ @property
443
+ def Parent(self) -> int:
444
+ """Indicates which prior segment generated this one"""
445
+ ...
446
+ @property
447
+ def Level(self) -> int:
448
+ """Indicates how many segments this ray is away from the source ray"""
449
+ ...
450
+ @property
451
+ def In_object(self) -> int:
452
+ """Indicates which object the segment is traveling through"""
453
+ ...
454
+ @property
455
+ def Hit_object(self) -> int:
456
+ """Indicates which object the segment struck (if 0, the ray missed all objects and is terminated)"""
457
+ ...
458
+ @property
459
+ def Hit_face(self) -> int:
460
+ """Indicates which face the segment struck on the object"""
461
+ ...
462
+ @property
463
+ def X(self) -> float:
464
+ """Global X-coordinate of ray intercept"""
465
+ ...
466
+ @property
467
+ def Y(self) -> float:
468
+ """Global Y-coordinate of ray intercept"""
469
+ ...
470
+ @property
471
+ def Z(self) -> float:
472
+ """Global Z-coordinate of ray intercept"""
473
+ ...
474
+ @property
475
+ def L(self) -> float:
476
+ """Global X-direction cosine of the ray following the surface"""
477
+ ...
478
+ @property
479
+ def M(self) -> float:
480
+ """Global Y-direction cosine of the ray following the surface"""
481
+ ...
482
+ @property
483
+ def N(self) -> float:
484
+ """Global Z-direction cosine of the ray following the surface"""
485
+ ...
486
+ @property
487
+ def Nx(self) -> float:
488
+ """Global X-component of object normal vector at the ray segment-object intercept point"""
489
+ ...
490
+ @property
491
+ def Ny(self) -> float:
492
+ """Global Y-component of object normal vector at the ray segment-object intercept point"""
493
+ ...
494
+ @property
495
+ def Nz(self) -> float:
496
+ """Global Z-component of object normal vector at the ray segment-object intercept point"""
497
+ ...
498
+ @property
499
+ def Ex(self) -> float:
500
+ """Electric field X-component in global coordinate system"""
501
+ ...
502
+ @property
503
+ def Ey(self) -> float:
504
+ """Electric field Y-component in global coordinate system"""
505
+ ...
506
+ @property
507
+ def Ez(self) -> float:
508
+ """Electric field Z-component in global coordinate system"""
509
+ ...
510
+ @property
511
+ def PathLength(self) -> float:
512
+ """Ray path length from previous surface in lens-units"""
513
+ ...
514
+ @property
515
+ def OpticalPathLength(self) -> float:
516
+ """Ray optical path length (path*index of refraction) from previous surface in lens-units"""
517
+ ...
518
+ @property
519
+ def Wavelength(self) -> float:
520
+ """Wavelength in microns"""
521
+ ...
522
+ @property
523
+ def Vignetted(self) -> int:
524
+ """0 if not vignetted, else vignetted surface number"""
525
+ ...
526
+ @property
527
+ def Error(self) -> int:
528
+ """0 if no error"""
529
+ ...
530
+
531
+ class IAR_Rgb:
532
+ @property
533
+ def R(self) -> float: ...
534
+ @property
535
+ def G(self) -> float: ...
536
+ @property
537
+ def B(self) -> float: ...
538
+
539
+ class IAR_ScatterPoint:
540
+ @property
541
+ def X(self) -> float: ...
542
+ @property
543
+ def Y(self) -> float: ...
544
+ @property
545
+ def Value(self) -> float: ...
546
+
547
+ class IAR_ScatterPointRgb:
548
+ @property
549
+ def X(self) -> float: ...
550
+ @property
551
+ def Y(self) -> float: ...
552
+ @property
553
+ def Value(self) -> IAR_Rgb: ...
554
+
555
+ class IAR_SpotDataResult:
556
+ @property
557
+ def X(self) -> float: ...
558
+ @X.setter
559
+ def X(self, value: float) -> None: ...
560
+ @property
561
+ def Y(self) -> float: ...
562
+ @Y.setter
563
+ def Y(self, value: float) -> None: ...
564
+ @property
565
+ def Z(self) -> float: ...
566
+ @Z.setter
567
+ def Z(self, value: float) -> None: ...
568
+ @property
569
+ def L(self) -> float: ...
570
+ @L.setter
571
+ def L(self, value: float) -> None: ...
572
+ @property
573
+ def M(self) -> float: ...
574
+ @M.setter
575
+ def M(self, value: float) -> None: ...
576
+ @property
577
+ def N(self) -> float: ...
578
+ @N.setter
579
+ def N(self, value: float) -> None: ...
580
+ @property
581
+ def Detector_X(self) -> float: ...
582
+ @Detector_X.setter
583
+ def Detector_X(self, value: float) -> None: ...
584
+ @property
585
+ def Detector_Y(self) -> float: ...
586
+ @Detector_Y.setter
587
+ def Detector_Y(self, value: float) -> None: ...
588
+ @property
589
+ def Detector_Z(self) -> float: ...
590
+ @Detector_Z.setter
591
+ def Detector_Z(self, value: float) -> None: ...
592
+ @property
593
+ def RefCoord_X(self) -> float: ...
594
+ @RefCoord_X.setter
595
+ def RefCoord_X(self, value: float) -> None: ...
596
+ @property
597
+ def RefCoord_Y(self) -> float: ...
598
+ @RefCoord_Y.setter
599
+ def RefCoord_Y(self, value: float) -> None: ...
600
+ @property
601
+ def RMSSpot_X(self) -> float: ...
602
+ @RMSSpot_X.setter
603
+ def RMSSpot_X(self, value: float) -> None: ...
604
+ @property
605
+ def RMSSpot_Y(self) -> float: ...
606
+ @RMSSpot_Y.setter
607
+ def RMSSpot_Y(self, value: float) -> None: ...
608
+ @property
609
+ def RMSSpotSize(self) -> float: ...
610
+ @RMSSpotSize.setter
611
+ def RMSSpotSize(self, value: float) -> None: ...
612
+ @property
613
+ def GeoSpotSize(self) -> float: ...
614
+ @GeoSpotSize.setter
615
+ def GeoSpotSize(self, value: float) -> None: ...
616
+
617
+ class IAR_SpotDataResultMatrix:
618
+ @property
619
+ def HalfWidth_X(self) -> float: ...
620
+ @property
621
+ def HalfWidth_Y(self) -> float: ...
622
+ @property
623
+ def MaxRadius(self) -> float: ...
624
+ @property
625
+ def MeanRadius(self) -> float: ...
626
+ @property
627
+ def NumberOfFields(self) -> int: ...
628
+ @property
629
+ def NumberOfWavelengths(self) -> int: ...
630
+ def GetDetector_X_For(self, fieldN: int, waveN: int) -> float: ...
631
+ def GetDetector_Y_For(self, fieldN: int, waveN: int) -> float: ...
632
+ def GetDetector_Z_For(self, fieldN: int, waveN: int) -> float: ...
633
+ def GetGeoSpotSizeFor(self, fieldN: int, waveN: int) -> float: ...
634
+ def GetRMSSpotSizeFor(self, fieldN: int, waveN: int) -> float: ...
635
+ def GetRMSSpot_X_For(self, fieldN: int, waveN: int) -> float: ...
636
+ def GetRMSSpot_Y_For(self, fieldN: int, waveN: int) -> float: ...
637
+ def GetReferenceCoordinate_X_For(self, fieldN: int, waveN: int) -> float: ...
638
+ def GetReferenceCoordinate_Y_For(self, fieldN: int, waveN: int) -> float: ...
639
+ def Get_L_For(self, fieldN: int, waveN: int) -> float: ...
640
+ def Get_M_For(self, fieldN: int, waveN: int) -> float: ...
641
+ def Get_N_For(self, fieldN: int, waveN: int) -> float: ...
642
+ def Get_X_For(self, fieldN: int, waveN: int) -> float: ...
643
+ def Get_Y_For(self, fieldN: int, waveN: int) -> float: ...
644
+ def Get_Z_For(self, fieldN: int, waveN: int) -> float: ...
645
+
646
+ class IAR_Vector2D:
647
+ @property
648
+ def dx(self) -> float: ...
649
+ @property
650
+ def dy(self) -> float: ...
651
+
652
+ class IAR_XYZ:
653
+ @property
654
+ def X(self) -> float: ...
655
+ @property
656
+ def Y(self) -> float: ...
657
+ @property
658
+ def Z(self) -> float: ...