fake-bpy-module 20240802__py3-none-any.whl → 20240804__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- aud/__init__.pyi +77 -77
- bmesh/ops/__init__.pyi +54 -36
- bmesh/types/__init__.pyi +24 -24
- bpy/ops/action/__init__.pyi +55 -32
- bpy/ops/anim/__init__.pyi +22 -22
- bpy/ops/armature/__init__.pyi +47 -20
- bpy/ops/asset/__init__.pyi +5 -2
- bpy/ops/boid/__init__.pyi +12 -2
- bpy/ops/brush/__init__.pyi +18 -12
- bpy/ops/buttons/__init__.pyi +10 -4
- bpy/ops/cachefile/__init__.pyi +12 -6
- bpy/ops/clip/__init__.pyi +54 -38
- bpy/ops/console/__init__.pyi +17 -6
- bpy/ops/constraint/__init__.pyi +28 -28
- bpy/ops/curve/__init__.pyi +72 -34
- bpy/ops/curves/__init__.pyi +16 -16
- bpy/ops/dpaint/__init__.pyi +4 -4
- bpy/ops/ed/__init__.pyi +5 -2
- bpy/ops/export_anim/__init__.pyi +3 -2
- bpy/ops/export_scene/__init__.pyi +55 -45
- bpy/ops/file/__init__.pyi +40 -16
- bpy/ops/font/__init__.pyi +59 -16
- bpy/ops/geometry/__init__.pyi +55 -20
- bpy/ops/gpencil/__init__.pyi +155 -122
- bpy/ops/graph/__init__.pyi +131 -52
- bpy/ops/grease_pencil/__init__.pyi +96 -58
- bpy/ops/image/__init__.pyi +77 -54
- bpy/ops/import_anim/__init__.pyi +11 -8
- bpy/ops/import_scene/__init__.pyi +20 -18
- bpy/ops/info/__init__.pyi +4 -4
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +6 -6
- bpy/ops/mask/__init__.pyi +13 -12
- bpy/ops/mball/__init__.pyi +6 -6
- bpy/ops/mesh/__init__.pyi +290 -150
- bpy/ops/nla/__init__.pyi +28 -20
- bpy/ops/node/__init__.pyi +43 -32
- bpy/ops/object/__init__.pyi +651 -210
- bpy/ops/outliner/__init__.pyi +113 -32
- bpy/ops/paint/__init__.pyi +65 -56
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +14 -14
- bpy/ops/pose/__init__.pyi +121 -44
- bpy/ops/preferences/__init__.pyi +9 -6
- bpy/ops/render/__init__.pyi +3 -2
- bpy/ops/rigidbody/__init__.pyi +45 -14
- bpy/ops/scene/__init__.pyi +69 -22
- bpy/ops/screen/__init__.pyi +78 -16
- bpy/ops/sculpt/__init__.pyi +131 -74
- bpy/ops/sculpt_curves/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +156 -60
- bpy/ops/sound/__init__.pyi +40 -16
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +65 -20
- bpy/ops/texture/__init__.pyi +2 -2
- bpy/ops/transform/__init__.pyi +344 -72
- bpy/ops/ui/__init__.pyi +9 -6
- bpy/ops/uilist/__init__.pyi +2 -2
- bpy/ops/uv/__init__.pyi +90 -66
- bpy/ops/view3d/__init__.pyi +36 -30
- bpy/ops/wm/__init__.pyi +443 -156
- bpy/types/__init__.pyi +56103 -30890
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/RECORD +73 -73
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +76 -63
- freestyle/utils/__init__.pyi +1 -1
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -970
- mathutils/bvhtree/__init__.pyi +2 -2
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/top_level.txt +0 -0
mathutils/__init__.pyi
CHANGED
|
@@ -104,83 +104,83 @@ class Color:
|
|
|
104
104
|
:type: float
|
|
105
105
|
"""
|
|
106
106
|
|
|
107
|
-
def copy(self) ->
|
|
107
|
+
def copy(self) -> typing_extensions.Self:
|
|
108
108
|
"""Returns a copy of this color.
|
|
109
109
|
|
|
110
110
|
:return: A copy of the color.
|
|
111
|
-
:rtype:
|
|
111
|
+
:rtype: typing_extensions.Self
|
|
112
112
|
"""
|
|
113
113
|
...
|
|
114
114
|
|
|
115
|
-
def freeze(self) ->
|
|
115
|
+
def freeze(self) -> typing_extensions.Self:
|
|
116
116
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
117
117
|
|
|
118
118
|
:return: An instance of this object.
|
|
119
|
-
:rtype:
|
|
119
|
+
:rtype: typing_extensions.Self
|
|
120
120
|
"""
|
|
121
121
|
...
|
|
122
122
|
|
|
123
|
-
def from_aces_to_scene_linear(self) ->
|
|
123
|
+
def from_aces_to_scene_linear(self) -> typing_extensions.Self:
|
|
124
124
|
"""Convert from ACES2065-1 linear to scene linear color space.
|
|
125
125
|
|
|
126
126
|
:return: A color in scene linear color space.
|
|
127
|
-
:rtype:
|
|
127
|
+
:rtype: typing_extensions.Self
|
|
128
128
|
"""
|
|
129
129
|
...
|
|
130
130
|
|
|
131
|
-
def from_rec709_linear_to_scene_linear(self) ->
|
|
131
|
+
def from_rec709_linear_to_scene_linear(self) -> typing_extensions.Self:
|
|
132
132
|
"""Convert from Rec.709 linear color space to scene linear color space.
|
|
133
133
|
|
|
134
134
|
:return: A color in scene linear color space.
|
|
135
|
-
:rtype:
|
|
135
|
+
:rtype: typing_extensions.Self
|
|
136
136
|
"""
|
|
137
137
|
...
|
|
138
138
|
|
|
139
|
-
def from_scene_linear_to_aces(self) ->
|
|
139
|
+
def from_scene_linear_to_aces(self) -> typing_extensions.Self:
|
|
140
140
|
"""Convert from scene linear to ACES2065-1 linear color space.
|
|
141
141
|
|
|
142
142
|
:return: A color in ACES2065-1 linear color space.
|
|
143
|
-
:rtype:
|
|
143
|
+
:rtype: typing_extensions.Self
|
|
144
144
|
"""
|
|
145
145
|
...
|
|
146
146
|
|
|
147
|
-
def from_scene_linear_to_rec709_linear(self) ->
|
|
147
|
+
def from_scene_linear_to_rec709_linear(self) -> typing_extensions.Self:
|
|
148
148
|
"""Convert from scene linear to Rec.709 linear color space.
|
|
149
149
|
|
|
150
150
|
:return: A color in Rec.709 linear color space.
|
|
151
|
-
:rtype:
|
|
151
|
+
:rtype: typing_extensions.Self
|
|
152
152
|
"""
|
|
153
153
|
...
|
|
154
154
|
|
|
155
|
-
def from_scene_linear_to_srgb(self) ->
|
|
155
|
+
def from_scene_linear_to_srgb(self) -> typing_extensions.Self:
|
|
156
156
|
"""Convert from scene linear to sRGB color space.
|
|
157
157
|
|
|
158
158
|
:return: A color in sRGB color space.
|
|
159
|
-
:rtype:
|
|
159
|
+
:rtype: typing_extensions.Self
|
|
160
160
|
"""
|
|
161
161
|
...
|
|
162
162
|
|
|
163
|
-
def from_scene_linear_to_xyz_d65(self) ->
|
|
163
|
+
def from_scene_linear_to_xyz_d65(self) -> typing_extensions.Self:
|
|
164
164
|
"""Convert from scene linear to CIE XYZ (Illuminant D65) color space.
|
|
165
165
|
|
|
166
166
|
:return: A color in XYZ color space.
|
|
167
|
-
:rtype:
|
|
167
|
+
:rtype: typing_extensions.Self
|
|
168
168
|
"""
|
|
169
169
|
...
|
|
170
170
|
|
|
171
|
-
def from_srgb_to_scene_linear(self) ->
|
|
171
|
+
def from_srgb_to_scene_linear(self) -> typing_extensions.Self:
|
|
172
172
|
"""Convert from sRGB to scene linear color space.
|
|
173
173
|
|
|
174
174
|
:return: A color in scene linear color space.
|
|
175
|
-
:rtype:
|
|
175
|
+
:rtype: typing_extensions.Self
|
|
176
176
|
"""
|
|
177
177
|
...
|
|
178
178
|
|
|
179
|
-
def from_xyz_d65_to_scene_linear(self) ->
|
|
179
|
+
def from_xyz_d65_to_scene_linear(self) -> typing_extensions.Self:
|
|
180
180
|
"""Convert from CIE XYZ (Illuminant D65) to scene linear color space.
|
|
181
181
|
|
|
182
182
|
:return: A color in scene linear color space.
|
|
183
|
-
:rtype:
|
|
183
|
+
:rtype: typing_extensions.Self
|
|
184
184
|
"""
|
|
185
185
|
...
|
|
186
186
|
|
|
@@ -191,154 +191,156 @@ class Color:
|
|
|
191
191
|
"""
|
|
192
192
|
...
|
|
193
193
|
|
|
194
|
-
def __get__(self, instance, owner) ->
|
|
194
|
+
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
195
195
|
"""
|
|
196
196
|
|
|
197
197
|
:param instance:
|
|
198
198
|
:param owner:
|
|
199
199
|
:return:
|
|
200
|
-
:rtype:
|
|
200
|
+
:rtype: typing_extensions.Self
|
|
201
201
|
"""
|
|
202
202
|
...
|
|
203
203
|
|
|
204
|
-
def __set__(
|
|
204
|
+
def __set__(
|
|
205
|
+
self, instance, value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
206
|
+
):
|
|
205
207
|
"""
|
|
206
208
|
|
|
207
209
|
:param instance:
|
|
208
210
|
:param value:
|
|
209
|
-
:type value: collections.abc.Sequence[float] |
|
|
211
|
+
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
210
212
|
"""
|
|
211
213
|
...
|
|
212
214
|
|
|
213
215
|
def __add__(
|
|
214
|
-
self, other: collections.abc.Sequence[float] |
|
|
215
|
-
) ->
|
|
216
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
217
|
+
) -> typing_extensions.Self:
|
|
216
218
|
"""
|
|
217
219
|
|
|
218
220
|
:param other:
|
|
219
|
-
:type other: collections.abc.Sequence[float] |
|
|
221
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
220
222
|
:return:
|
|
221
|
-
:rtype:
|
|
223
|
+
:rtype: typing_extensions.Self
|
|
222
224
|
"""
|
|
223
225
|
...
|
|
224
226
|
|
|
225
227
|
def __sub__(
|
|
226
|
-
self, other: collections.abc.Sequence[float] |
|
|
227
|
-
) ->
|
|
228
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
229
|
+
) -> typing_extensions.Self:
|
|
228
230
|
"""
|
|
229
231
|
|
|
230
232
|
:param other:
|
|
231
|
-
:type other: collections.abc.Sequence[float] |
|
|
233
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
232
234
|
:return:
|
|
233
|
-
:rtype:
|
|
235
|
+
:rtype: typing_extensions.Self
|
|
234
236
|
"""
|
|
235
237
|
...
|
|
236
238
|
|
|
237
|
-
def __mul__(self, other: float | int) ->
|
|
239
|
+
def __mul__(self, other: float | int) -> typing_extensions.Self:
|
|
238
240
|
"""
|
|
239
241
|
|
|
240
242
|
:param other:
|
|
241
243
|
:type other: float | int
|
|
242
244
|
:return:
|
|
243
|
-
:rtype:
|
|
245
|
+
:rtype: typing_extensions.Self
|
|
244
246
|
"""
|
|
245
247
|
...
|
|
246
248
|
|
|
247
|
-
def __truediv__(self, other: float | int) ->
|
|
249
|
+
def __truediv__(self, other: float | int) -> typing_extensions.Self:
|
|
248
250
|
"""
|
|
249
251
|
|
|
250
252
|
:param other:
|
|
251
253
|
:type other: float | int
|
|
252
254
|
:return:
|
|
253
|
-
:rtype:
|
|
255
|
+
:rtype: typing_extensions.Self
|
|
254
256
|
"""
|
|
255
257
|
...
|
|
256
258
|
|
|
257
259
|
def __radd__(
|
|
258
|
-
self, other: collections.abc.Sequence[float] |
|
|
259
|
-
) ->
|
|
260
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
261
|
+
) -> typing_extensions.Self:
|
|
260
262
|
"""
|
|
261
263
|
|
|
262
264
|
:param other:
|
|
263
|
-
:type other: collections.abc.Sequence[float] |
|
|
265
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
264
266
|
:return:
|
|
265
|
-
:rtype:
|
|
267
|
+
:rtype: typing_extensions.Self
|
|
266
268
|
"""
|
|
267
269
|
...
|
|
268
270
|
|
|
269
271
|
def __rsub__(
|
|
270
|
-
self, other: collections.abc.Sequence[float] |
|
|
271
|
-
) ->
|
|
272
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
273
|
+
) -> typing_extensions.Self:
|
|
272
274
|
"""
|
|
273
275
|
|
|
274
276
|
:param other:
|
|
275
|
-
:type other: collections.abc.Sequence[float] |
|
|
277
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
276
278
|
:return:
|
|
277
|
-
:rtype:
|
|
279
|
+
:rtype: typing_extensions.Self
|
|
278
280
|
"""
|
|
279
281
|
...
|
|
280
282
|
|
|
281
|
-
def __rmul__(self, other: float | int) ->
|
|
283
|
+
def __rmul__(self, other: float | int) -> typing_extensions.Self:
|
|
282
284
|
"""
|
|
283
285
|
|
|
284
286
|
:param other:
|
|
285
287
|
:type other: float | int
|
|
286
288
|
:return:
|
|
287
|
-
:rtype:
|
|
289
|
+
:rtype: typing_extensions.Self
|
|
288
290
|
"""
|
|
289
291
|
...
|
|
290
292
|
|
|
291
|
-
def __rtruediv__(self, other: float | int) ->
|
|
293
|
+
def __rtruediv__(self, other: float | int) -> typing_extensions.Self:
|
|
292
294
|
"""
|
|
293
295
|
|
|
294
296
|
:param other:
|
|
295
297
|
:type other: float | int
|
|
296
298
|
:return:
|
|
297
|
-
:rtype:
|
|
299
|
+
:rtype: typing_extensions.Self
|
|
298
300
|
"""
|
|
299
301
|
...
|
|
300
302
|
|
|
301
303
|
def __iadd__(
|
|
302
|
-
self, other: collections.abc.Sequence[float] |
|
|
303
|
-
) ->
|
|
304
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
305
|
+
) -> typing_extensions.Self:
|
|
304
306
|
"""
|
|
305
307
|
|
|
306
308
|
:param other:
|
|
307
|
-
:type other: collections.abc.Sequence[float] |
|
|
309
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
308
310
|
:return:
|
|
309
|
-
:rtype:
|
|
311
|
+
:rtype: typing_extensions.Self
|
|
310
312
|
"""
|
|
311
313
|
...
|
|
312
314
|
|
|
313
315
|
def __isub__(
|
|
314
|
-
self, other: collections.abc.Sequence[float] |
|
|
315
|
-
) ->
|
|
316
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
317
|
+
) -> typing_extensions.Self:
|
|
316
318
|
"""
|
|
317
319
|
|
|
318
320
|
:param other:
|
|
319
|
-
:type other: collections.abc.Sequence[float] |
|
|
321
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
320
322
|
:return:
|
|
321
|
-
:rtype:
|
|
323
|
+
:rtype: typing_extensions.Self
|
|
322
324
|
"""
|
|
323
325
|
...
|
|
324
326
|
|
|
325
|
-
def __imul__(self, other: float | int) ->
|
|
327
|
+
def __imul__(self, other: float | int) -> typing_extensions.Self:
|
|
326
328
|
"""
|
|
327
329
|
|
|
328
330
|
:param other:
|
|
329
331
|
:type other: float | int
|
|
330
332
|
:return:
|
|
331
|
-
:rtype:
|
|
333
|
+
:rtype: typing_extensions.Self
|
|
332
334
|
"""
|
|
333
335
|
...
|
|
334
336
|
|
|
335
|
-
def __itruediv__(self, other: float | int) ->
|
|
337
|
+
def __itruediv__(self, other: float | int) -> typing_extensions.Self:
|
|
336
338
|
"""
|
|
337
339
|
|
|
338
340
|
:param other:
|
|
339
341
|
:type other: float | int
|
|
340
342
|
:return:
|
|
341
|
-
:rtype:
|
|
343
|
+
:rtype: typing_extensions.Self
|
|
342
344
|
"""
|
|
343
345
|
...
|
|
344
346
|
|
|
@@ -431,19 +433,19 @@ class Euler:
|
|
|
431
433
|
:type: float
|
|
432
434
|
"""
|
|
433
435
|
|
|
434
|
-
def copy(self) ->
|
|
436
|
+
def copy(self) -> typing_extensions.Self:
|
|
435
437
|
"""Returns a copy of this euler.
|
|
436
438
|
|
|
437
439
|
:return: A copy of the euler.
|
|
438
|
-
:rtype:
|
|
440
|
+
:rtype: typing_extensions.Self
|
|
439
441
|
"""
|
|
440
442
|
...
|
|
441
443
|
|
|
442
|
-
def freeze(self) ->
|
|
444
|
+
def freeze(self) -> typing_extensions.Self:
|
|
443
445
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
444
446
|
|
|
445
447
|
:return: An instance of this object.
|
|
446
|
-
:rtype:
|
|
448
|
+
:rtype: typing_extensions.Self
|
|
447
449
|
"""
|
|
448
450
|
...
|
|
449
451
|
|
|
@@ -461,12 +463,12 @@ class Euler:
|
|
|
461
463
|
| Quaternion
|
|
462
464
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
463
465
|
| collections.abc.Sequence[float]
|
|
464
|
-
|
|
|
466
|
+
| typing_extensions.Self,
|
|
465
467
|
):
|
|
466
468
|
"""Rotates the euler by another mathutils value.
|
|
467
469
|
|
|
468
470
|
:param other: rotation component of mathutils value
|
|
469
|
-
:type other: Matrix | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] |
|
|
471
|
+
:type other: Matrix | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
470
472
|
"""
|
|
471
473
|
...
|
|
472
474
|
|
|
@@ -509,22 +511,24 @@ class Euler:
|
|
|
509
511
|
"""
|
|
510
512
|
...
|
|
511
513
|
|
|
512
|
-
def __get__(self, instance, owner) ->
|
|
514
|
+
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
513
515
|
"""
|
|
514
516
|
|
|
515
517
|
:param instance:
|
|
516
518
|
:param owner:
|
|
517
519
|
:return:
|
|
518
|
-
:rtype:
|
|
520
|
+
:rtype: typing_extensions.Self
|
|
519
521
|
"""
|
|
520
522
|
...
|
|
521
523
|
|
|
522
|
-
def __set__(
|
|
524
|
+
def __set__(
|
|
525
|
+
self, instance, value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
526
|
+
):
|
|
523
527
|
"""
|
|
524
528
|
|
|
525
529
|
:param instance:
|
|
526
530
|
:param value:
|
|
527
|
-
:type value: collections.abc.Sequence[float] |
|
|
531
|
+
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
528
532
|
"""
|
|
529
533
|
...
|
|
530
534
|
|
|
@@ -641,24 +645,26 @@ class Matrix:
|
|
|
641
645
|
"""
|
|
642
646
|
|
|
643
647
|
@classmethod
|
|
644
|
-
def Diagonal(
|
|
648
|
+
def Diagonal(
|
|
649
|
+
cls, vector: Vector | collections.abc.Sequence[float]
|
|
650
|
+
) -> typing_extensions.Self:
|
|
645
651
|
"""Create a diagonal (scaling) matrix using the values from the vector.
|
|
646
652
|
|
|
647
653
|
:param vector: The vector of values for the diagonal.
|
|
648
654
|
:type vector: Vector | collections.abc.Sequence[float]
|
|
649
655
|
:return: A diagonal matrix.
|
|
650
|
-
:rtype:
|
|
656
|
+
:rtype: typing_extensions.Self
|
|
651
657
|
"""
|
|
652
658
|
...
|
|
653
659
|
|
|
654
660
|
@classmethod
|
|
655
|
-
def Identity(cls, size: int) ->
|
|
661
|
+
def Identity(cls, size: int) -> typing_extensions.Self:
|
|
656
662
|
"""Create an identity matrix.
|
|
657
663
|
|
|
658
664
|
:param size: The size of the identity matrix to construct [2, 4].
|
|
659
665
|
:type size: int
|
|
660
666
|
:return: A new identity matrix.
|
|
661
|
-
:rtype:
|
|
667
|
+
:rtype: typing_extensions.Self
|
|
662
668
|
"""
|
|
663
669
|
...
|
|
664
670
|
|
|
@@ -668,7 +674,7 @@ class Matrix:
|
|
|
668
674
|
location: Vector | collections.abc.Sequence[float] | None,
|
|
669
675
|
rotation: Euler | Quaternion | collections.abc.Sequence[float] | None,
|
|
670
676
|
scale: Vector | collections.abc.Sequence[float] | None,
|
|
671
|
-
) ->
|
|
677
|
+
) -> typing_extensions.Self:
|
|
672
678
|
"""Create a matrix combining translation, rotation and scale,
|
|
673
679
|
acting as the inverse of the decompose() method.Any of the inputs may be replaced with None if not needed.
|
|
674
680
|
|
|
@@ -679,14 +685,14 @@ class Matrix:
|
|
|
679
685
|
:param scale: The scale component.
|
|
680
686
|
:type scale: Vector | collections.abc.Sequence[float] | None
|
|
681
687
|
:return: Combined transformation matrix.
|
|
682
|
-
:rtype:
|
|
688
|
+
:rtype: typing_extensions.Self
|
|
683
689
|
"""
|
|
684
690
|
...
|
|
685
691
|
|
|
686
692
|
@classmethod
|
|
687
693
|
def OrthoProjection(
|
|
688
694
|
cls, axis: Vector | collections.abc.Sequence[float] | str, size: int
|
|
689
|
-
) ->
|
|
695
|
+
) -> typing_extensions.Self:
|
|
690
696
|
"""Create a matrix to represent an orthographic projection.
|
|
691
697
|
|
|
692
698
|
:param axis: Can be any of the following: ['X', 'Y', 'XY', 'XZ', 'YZ'],
|
|
@@ -696,7 +702,7 @@ class Matrix:
|
|
|
696
702
|
:param size: The size of the projection matrix to construct [2, 4].
|
|
697
703
|
:type size: int
|
|
698
704
|
:return: A new projection matrix.
|
|
699
|
-
:rtype:
|
|
705
|
+
:rtype: typing_extensions.Self
|
|
700
706
|
"""
|
|
701
707
|
...
|
|
702
708
|
|
|
@@ -706,7 +712,7 @@ class Matrix:
|
|
|
706
712
|
angle: float,
|
|
707
713
|
size: int,
|
|
708
714
|
axis: Vector | collections.abc.Sequence[float] | str | None = "",
|
|
709
|
-
) ->
|
|
715
|
+
) -> typing_extensions.Self:
|
|
710
716
|
"""Create a matrix representing a rotation.
|
|
711
717
|
|
|
712
718
|
:param angle: The angle of rotation desired, in radians.
|
|
@@ -717,7 +723,7 @@ class Matrix:
|
|
|
717
723
|
(optional when size is 2).
|
|
718
724
|
:type axis: Vector | collections.abc.Sequence[float] | str | None
|
|
719
725
|
:return: A new rotation matrix.
|
|
720
|
-
:rtype:
|
|
726
|
+
:rtype: typing_extensions.Self
|
|
721
727
|
"""
|
|
722
728
|
...
|
|
723
729
|
|
|
@@ -727,7 +733,7 @@ class Matrix:
|
|
|
727
733
|
factor: float,
|
|
728
734
|
size: int,
|
|
729
735
|
axis: Vector | collections.abc.Sequence[float] | None = [],
|
|
730
|
-
) ->
|
|
736
|
+
) -> typing_extensions.Self:
|
|
731
737
|
"""Create a matrix representing a scaling.
|
|
732
738
|
|
|
733
739
|
:param factor: The factor of scaling to apply.
|
|
@@ -737,12 +743,12 @@ class Matrix:
|
|
|
737
743
|
:param axis: Direction to influence scale. (optional).
|
|
738
744
|
:type axis: Vector | collections.abc.Sequence[float] | None
|
|
739
745
|
:return: A new scale matrix.
|
|
740
|
-
:rtype:
|
|
746
|
+
:rtype: typing_extensions.Self
|
|
741
747
|
"""
|
|
742
748
|
...
|
|
743
749
|
|
|
744
750
|
@classmethod
|
|
745
|
-
def Shear(cls, plane: str, size: int, factor: float) ->
|
|
751
|
+
def Shear(cls, plane: str, size: int, factor: float) -> typing_extensions.Self:
|
|
746
752
|
"""Create a matrix to represent an shear transformation.
|
|
747
753
|
|
|
748
754
|
:param plane: Can be any of the following: ['X', 'Y', 'XY', 'XZ', 'YZ'],
|
|
@@ -754,20 +760,20 @@ class Matrix:
|
|
|
754
760
|
pass a pair of floats corresponding with the plane axis.
|
|
755
761
|
:type factor: float
|
|
756
762
|
:return: A new shear matrix.
|
|
757
|
-
:rtype:
|
|
763
|
+
:rtype: typing_extensions.Self
|
|
758
764
|
"""
|
|
759
765
|
...
|
|
760
766
|
|
|
761
767
|
@classmethod
|
|
762
768
|
def Translation(
|
|
763
769
|
cls, vector: Vector | collections.abc.Sequence[float]
|
|
764
|
-
) ->
|
|
770
|
+
) -> typing_extensions.Self:
|
|
765
771
|
"""Create a matrix representing a translation.
|
|
766
772
|
|
|
767
773
|
:param vector: The translation vector.
|
|
768
774
|
:type vector: Vector | collections.abc.Sequence[float]
|
|
769
775
|
:return: An identity matrix with a translation.
|
|
770
|
-
:rtype:
|
|
776
|
+
:rtype: typing_extensions.Self
|
|
771
777
|
"""
|
|
772
778
|
...
|
|
773
779
|
|
|
@@ -775,19 +781,19 @@ class Matrix:
|
|
|
775
781
|
"""Set the matrix to its adjugate.`Adjugate matrix <https://en.wikipedia.org/wiki/Adjugate_matrix>`__ on Wikipedia."""
|
|
776
782
|
...
|
|
777
783
|
|
|
778
|
-
def adjugated(self) ->
|
|
784
|
+
def adjugated(self) -> typing_extensions.Self:
|
|
779
785
|
"""Return an adjugated copy of the matrix.
|
|
780
786
|
|
|
781
787
|
:return: the adjugated matrix.
|
|
782
|
-
:rtype:
|
|
788
|
+
:rtype: typing_extensions.Self
|
|
783
789
|
"""
|
|
784
790
|
...
|
|
785
791
|
|
|
786
|
-
def copy(self) ->
|
|
792
|
+
def copy(self) -> typing_extensions.Self:
|
|
787
793
|
"""Returns a copy of this matrix.
|
|
788
794
|
|
|
789
795
|
:return: an instance of itself
|
|
790
|
-
:rtype:
|
|
796
|
+
:rtype: typing_extensions.Self
|
|
791
797
|
"""
|
|
792
798
|
...
|
|
793
799
|
|
|
@@ -807,11 +813,11 @@ class Matrix:
|
|
|
807
813
|
"""
|
|
808
814
|
...
|
|
809
815
|
|
|
810
|
-
def freeze(self) ->
|
|
816
|
+
def freeze(self) -> typing_extensions.Self:
|
|
811
817
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
812
818
|
|
|
813
819
|
:return: An instance of this object.
|
|
814
|
-
:rtype:
|
|
820
|
+
:rtype: typing_extensions.Self
|
|
815
821
|
"""
|
|
816
822
|
...
|
|
817
823
|
|
|
@@ -822,13 +828,13 @@ class Matrix:
|
|
|
822
828
|
def invert(
|
|
823
829
|
self,
|
|
824
830
|
fallback: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
825
|
-
|
|
|
831
|
+
| typing_extensions.Self = None,
|
|
826
832
|
):
|
|
827
833
|
"""Set the matrix to its inverse.`Inverse matrix <https://en.wikipedia.org/wiki/Inverse_matrix>`__ on Wikipedia.
|
|
828
834
|
|
|
829
835
|
:param fallback: Set the matrix to this value when the inverse cannot be calculated
|
|
830
836
|
(instead of raising a `ValueError` exception).
|
|
831
|
-
:type fallback: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
837
|
+
:type fallback: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
832
838
|
"""
|
|
833
839
|
...
|
|
834
840
|
|
|
@@ -840,40 +846,41 @@ class Matrix:
|
|
|
840
846
|
"""
|
|
841
847
|
...
|
|
842
848
|
|
|
843
|
-
def inverted(self, fallback: typing.Any = None) ->
|
|
849
|
+
def inverted(self, fallback: typing.Any = None) -> typing_extensions.Self:
|
|
844
850
|
"""Return an inverted copy of the matrix.
|
|
845
851
|
|
|
846
852
|
:param fallback: return this when the inverse can't be calculated
|
|
847
853
|
(instead of raising a `ValueError`).
|
|
848
854
|
:type fallback: typing.Any
|
|
849
855
|
:return: the inverted matrix or fallback when given.
|
|
850
|
-
:rtype:
|
|
856
|
+
:rtype: typing_extensions.Self
|
|
851
857
|
"""
|
|
852
858
|
...
|
|
853
859
|
|
|
854
|
-
def inverted_safe(self) ->
|
|
860
|
+
def inverted_safe(self) -> typing_extensions.Self:
|
|
855
861
|
"""Return an inverted copy of the matrix, will never error.
|
|
856
862
|
If degenerated (e.g. zero scale on an axis), add some epsilon to its diagonal, to get an invertible one.
|
|
857
863
|
If tweaked matrix is still degenerated, return the identity matrix instead.
|
|
858
864
|
|
|
859
865
|
:return: the inverted matrix.
|
|
860
|
-
:rtype:
|
|
866
|
+
:rtype: typing_extensions.Self
|
|
861
867
|
"""
|
|
862
868
|
...
|
|
863
869
|
|
|
864
870
|
def lerp(
|
|
865
871
|
self,
|
|
866
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
872
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
873
|
+
| typing_extensions.Self,
|
|
867
874
|
factor: float,
|
|
868
|
-
) ->
|
|
875
|
+
) -> typing_extensions.Self:
|
|
869
876
|
"""Returns the interpolation of two matrices. Uses polar decomposition, see "Matrix Animation and Polar Decomposition", Shoemake and Duff, 1992.
|
|
870
877
|
|
|
871
878
|
:param other: value to interpolate with.
|
|
872
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
879
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
873
880
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
874
881
|
:type factor: float
|
|
875
882
|
:return: The interpolated matrix.
|
|
876
|
-
:rtype:
|
|
883
|
+
:rtype: typing_extensions.Self
|
|
877
884
|
"""
|
|
878
885
|
...
|
|
879
886
|
|
|
@@ -881,11 +888,11 @@ class Matrix:
|
|
|
881
888
|
"""Normalize each of the matrix columns."""
|
|
882
889
|
...
|
|
883
890
|
|
|
884
|
-
def normalized(self) ->
|
|
891
|
+
def normalized(self) -> typing_extensions.Self:
|
|
885
892
|
"""Return a column normalized matrix
|
|
886
893
|
|
|
887
894
|
:return: a column normalized matrix
|
|
888
|
-
:rtype:
|
|
895
|
+
:rtype: typing_extensions.Self
|
|
889
896
|
"""
|
|
890
897
|
...
|
|
891
898
|
|
|
@@ -899,36 +906,36 @@ class Matrix:
|
|
|
899
906
|
| Quaternion
|
|
900
907
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
901
908
|
| collections.abc.Sequence[float]
|
|
902
|
-
|
|
|
909
|
+
| typing_extensions.Self,
|
|
903
910
|
):
|
|
904
911
|
"""Rotates the matrix by another mathutils value.
|
|
905
912
|
|
|
906
913
|
:param other: rotation component of mathutils value
|
|
907
|
-
:type other: Euler | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] |
|
|
914
|
+
:type other: Euler | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
908
915
|
"""
|
|
909
916
|
...
|
|
910
917
|
|
|
911
|
-
def to_2x2(self) ->
|
|
918
|
+
def to_2x2(self) -> typing_extensions.Self:
|
|
912
919
|
"""Return a 2x2 copy of this matrix.
|
|
913
920
|
|
|
914
921
|
:return: a new matrix.
|
|
915
|
-
:rtype:
|
|
922
|
+
:rtype: typing_extensions.Self
|
|
916
923
|
"""
|
|
917
924
|
...
|
|
918
925
|
|
|
919
|
-
def to_3x3(self) ->
|
|
926
|
+
def to_3x3(self) -> typing_extensions.Self:
|
|
920
927
|
"""Return a 3x3 copy of this matrix.
|
|
921
928
|
|
|
922
929
|
:return: a new matrix.
|
|
923
|
-
:rtype:
|
|
930
|
+
:rtype: typing_extensions.Self
|
|
924
931
|
"""
|
|
925
932
|
...
|
|
926
933
|
|
|
927
|
-
def to_4x4(self) ->
|
|
934
|
+
def to_4x4(self) -> typing_extensions.Self:
|
|
928
935
|
"""Return a 4x4 copy of this matrix.
|
|
929
936
|
|
|
930
937
|
:return: a new matrix.
|
|
931
|
-
:rtype:
|
|
938
|
+
:rtype: typing_extensions.Self
|
|
932
939
|
"""
|
|
933
940
|
...
|
|
934
941
|
|
|
@@ -980,11 +987,11 @@ class Matrix:
|
|
|
980
987
|
"""Set the matrix to its transpose.`Transpose <https://en.wikipedia.org/wiki/Transpose>`__ on Wikipedia."""
|
|
981
988
|
...
|
|
982
989
|
|
|
983
|
-
def transposed(self) ->
|
|
990
|
+
def transposed(self) -> typing_extensions.Self:
|
|
984
991
|
"""Return a new, transposed matrix.
|
|
985
992
|
|
|
986
993
|
:return: a transposed matrix
|
|
987
|
-
:rtype:
|
|
994
|
+
:rtype: typing_extensions.Self
|
|
988
995
|
"""
|
|
989
996
|
...
|
|
990
997
|
|
|
@@ -1007,26 +1014,27 @@ class Matrix:
|
|
|
1007
1014
|
"""
|
|
1008
1015
|
...
|
|
1009
1016
|
|
|
1010
|
-
def __get__(self, instance, owner) ->
|
|
1017
|
+
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
1011
1018
|
"""
|
|
1012
1019
|
|
|
1013
1020
|
:param instance:
|
|
1014
1021
|
:param owner:
|
|
1015
1022
|
:return:
|
|
1016
|
-
:rtype:
|
|
1023
|
+
:rtype: typing_extensions.Self
|
|
1017
1024
|
"""
|
|
1018
1025
|
...
|
|
1019
1026
|
|
|
1020
1027
|
def __set__(
|
|
1021
1028
|
self,
|
|
1022
1029
|
instance,
|
|
1023
|
-
value: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1030
|
+
value: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1031
|
+
| typing_extensions.Self,
|
|
1024
1032
|
):
|
|
1025
1033
|
"""
|
|
1026
1034
|
|
|
1027
1035
|
:param instance:
|
|
1028
1036
|
:param value:
|
|
1029
|
-
:type value: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1037
|
+
:type value: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1030
1038
|
"""
|
|
1031
1039
|
...
|
|
1032
1040
|
|
|
@@ -1088,51 +1096,54 @@ class Matrix:
|
|
|
1088
1096
|
|
|
1089
1097
|
def __add__(
|
|
1090
1098
|
self,
|
|
1091
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1092
|
-
|
|
1099
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1100
|
+
| typing_extensions.Self,
|
|
1101
|
+
) -> typing_extensions.Self:
|
|
1093
1102
|
"""
|
|
1094
1103
|
|
|
1095
1104
|
:param other:
|
|
1096
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1105
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1097
1106
|
:return:
|
|
1098
|
-
:rtype:
|
|
1107
|
+
:rtype: typing_extensions.Self
|
|
1099
1108
|
"""
|
|
1100
1109
|
...
|
|
1101
1110
|
|
|
1102
1111
|
def __sub__(
|
|
1103
1112
|
self,
|
|
1104
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1105
|
-
|
|
1113
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1114
|
+
| typing_extensions.Self,
|
|
1115
|
+
) -> typing_extensions.Self:
|
|
1106
1116
|
"""
|
|
1107
1117
|
|
|
1108
1118
|
:param other:
|
|
1109
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1119
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1110
1120
|
:return:
|
|
1111
|
-
:rtype:
|
|
1121
|
+
:rtype: typing_extensions.Self
|
|
1112
1122
|
"""
|
|
1113
1123
|
...
|
|
1114
1124
|
|
|
1115
|
-
def __mul__(self, other: float | int) ->
|
|
1125
|
+
def __mul__(self, other: float | int) -> typing_extensions.Self:
|
|
1116
1126
|
"""
|
|
1117
1127
|
|
|
1118
1128
|
:param other:
|
|
1119
1129
|
:type other: float | int
|
|
1120
1130
|
:return:
|
|
1121
|
-
:rtype:
|
|
1131
|
+
:rtype: typing_extensions.Self
|
|
1122
1132
|
"""
|
|
1123
1133
|
...
|
|
1124
1134
|
|
|
1125
1135
|
@typing.overload
|
|
1126
1136
|
def __matmul__(
|
|
1127
1137
|
self,
|
|
1128
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1129
|
-
|
|
1138
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1139
|
+
| typing_extensions.Self,
|
|
1140
|
+
) -> typing_extensions.Self:
|
|
1130
1141
|
"""
|
|
1131
1142
|
|
|
1132
1143
|
:param other:
|
|
1133
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1144
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1134
1145
|
:return:
|
|
1135
|
-
:rtype:
|
|
1146
|
+
:rtype: typing_extensions.Self
|
|
1136
1147
|
"""
|
|
1137
1148
|
...
|
|
1138
1149
|
|
|
@@ -1149,47 +1160,49 @@ class Matrix:
|
|
|
1149
1160
|
|
|
1150
1161
|
def __radd__(
|
|
1151
1162
|
self,
|
|
1152
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1153
|
-
|
|
1163
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1164
|
+
| typing_extensions.Self,
|
|
1165
|
+
) -> typing_extensions.Self:
|
|
1154
1166
|
"""
|
|
1155
1167
|
|
|
1156
1168
|
:param other:
|
|
1157
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1169
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1158
1170
|
:return:
|
|
1159
|
-
:rtype:
|
|
1171
|
+
:rtype: typing_extensions.Self
|
|
1160
1172
|
"""
|
|
1161
1173
|
...
|
|
1162
1174
|
|
|
1163
1175
|
def __rsub__(
|
|
1164
1176
|
self,
|
|
1165
|
-
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1166
|
-
|
|
1177
|
+
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1178
|
+
| typing_extensions.Self,
|
|
1179
|
+
) -> typing_extensions.Self:
|
|
1167
1180
|
"""
|
|
1168
1181
|
|
|
1169
1182
|
:param other:
|
|
1170
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] |
|
|
1183
|
+
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1171
1184
|
:return:
|
|
1172
|
-
:rtype:
|
|
1185
|
+
:rtype: typing_extensions.Self
|
|
1173
1186
|
"""
|
|
1174
1187
|
...
|
|
1175
1188
|
|
|
1176
|
-
def __rmul__(self, other: float | int) ->
|
|
1189
|
+
def __rmul__(self, other: float | int) -> typing_extensions.Self:
|
|
1177
1190
|
"""
|
|
1178
1191
|
|
|
1179
1192
|
:param other:
|
|
1180
1193
|
:type other: float | int
|
|
1181
1194
|
:return:
|
|
1182
|
-
:rtype:
|
|
1195
|
+
:rtype: typing_extensions.Self
|
|
1183
1196
|
"""
|
|
1184
1197
|
...
|
|
1185
1198
|
|
|
1186
|
-
def __imul__(self, other: float | int) ->
|
|
1199
|
+
def __imul__(self, other: float | int) -> typing_extensions.Self:
|
|
1187
1200
|
"""
|
|
1188
1201
|
|
|
1189
1202
|
:param other:
|
|
1190
1203
|
:type other: float | int
|
|
1191
1204
|
:return:
|
|
1192
|
-
:rtype:
|
|
1205
|
+
:rtype: typing_extensions.Self
|
|
1193
1206
|
"""
|
|
1194
1207
|
...
|
|
1195
1208
|
|
|
@@ -1263,49 +1276,51 @@ class Quaternion:
|
|
|
1263
1276
|
"""Set the quaternion to its conjugate (negate x, y, z)."""
|
|
1264
1277
|
...
|
|
1265
1278
|
|
|
1266
|
-
def conjugated(self) ->
|
|
1279
|
+
def conjugated(self) -> typing_extensions.Self:
|
|
1267
1280
|
"""Return a new conjugated quaternion.
|
|
1268
1281
|
|
|
1269
1282
|
:return: a new quaternion.
|
|
1270
|
-
:rtype:
|
|
1283
|
+
:rtype: typing_extensions.Self
|
|
1271
1284
|
"""
|
|
1272
1285
|
...
|
|
1273
1286
|
|
|
1274
|
-
def copy(self) ->
|
|
1287
|
+
def copy(self) -> typing_extensions.Self:
|
|
1275
1288
|
"""Returns a copy of this quaternion.
|
|
1276
1289
|
|
|
1277
1290
|
:return: A copy of the quaternion.
|
|
1278
|
-
:rtype:
|
|
1291
|
+
:rtype: typing_extensions.Self
|
|
1279
1292
|
"""
|
|
1280
1293
|
...
|
|
1281
1294
|
|
|
1282
1295
|
def cross(
|
|
1283
|
-
self, other: collections.abc.Sequence[float] |
|
|
1284
|
-
) ->
|
|
1296
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1297
|
+
) -> typing_extensions.Self:
|
|
1285
1298
|
"""Return the cross product of this quaternion and another.
|
|
1286
1299
|
|
|
1287
1300
|
:param other: The other quaternion to perform the cross product with.
|
|
1288
|
-
:type other: collections.abc.Sequence[float] |
|
|
1301
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1289
1302
|
:return: The cross product.
|
|
1290
|
-
:rtype:
|
|
1303
|
+
:rtype: typing_extensions.Self
|
|
1291
1304
|
"""
|
|
1292
1305
|
...
|
|
1293
1306
|
|
|
1294
|
-
def dot(
|
|
1307
|
+
def dot(
|
|
1308
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1309
|
+
) -> float:
|
|
1295
1310
|
"""Return the dot product of this quaternion and another.
|
|
1296
1311
|
|
|
1297
1312
|
:param other: The other quaternion to perform the dot product with.
|
|
1298
|
-
:type other: collections.abc.Sequence[float] |
|
|
1313
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1299
1314
|
:return: The dot product.
|
|
1300
1315
|
:rtype: float
|
|
1301
1316
|
"""
|
|
1302
1317
|
...
|
|
1303
1318
|
|
|
1304
|
-
def freeze(self) ->
|
|
1319
|
+
def freeze(self) -> typing_extensions.Self:
|
|
1305
1320
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
1306
1321
|
|
|
1307
1322
|
:return: An instance of this object.
|
|
1308
|
-
:rtype:
|
|
1323
|
+
:rtype: typing_extensions.Self
|
|
1309
1324
|
"""
|
|
1310
1325
|
...
|
|
1311
1326
|
|
|
@@ -1317,11 +1332,11 @@ class Quaternion:
|
|
|
1317
1332
|
"""Set the quaternion to its inverse."""
|
|
1318
1333
|
...
|
|
1319
1334
|
|
|
1320
|
-
def inverted(self) ->
|
|
1335
|
+
def inverted(self) -> typing_extensions.Self:
|
|
1321
1336
|
"""Return a new, inverted quaternion.
|
|
1322
1337
|
|
|
1323
1338
|
:return: the inverted value.
|
|
1324
|
-
:rtype:
|
|
1339
|
+
:rtype: typing_extensions.Self
|
|
1325
1340
|
"""
|
|
1326
1341
|
...
|
|
1327
1342
|
|
|
@@ -1341,11 +1356,11 @@ class Quaternion:
|
|
|
1341
1356
|
"""Normalize the quaternion."""
|
|
1342
1357
|
...
|
|
1343
1358
|
|
|
1344
|
-
def normalized(self) ->
|
|
1359
|
+
def normalized(self) -> typing_extensions.Self:
|
|
1345
1360
|
"""Return a new normalized quaternion.
|
|
1346
1361
|
|
|
1347
1362
|
:return: a normalized copy.
|
|
1348
|
-
:rtype:
|
|
1363
|
+
:rtype: typing_extensions.Self
|
|
1349
1364
|
"""
|
|
1350
1365
|
...
|
|
1351
1366
|
|
|
@@ -1355,38 +1370,40 @@ class Quaternion:
|
|
|
1355
1370
|
| Matrix
|
|
1356
1371
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1357
1372
|
| collections.abc.Sequence[float]
|
|
1358
|
-
|
|
|
1373
|
+
| typing_extensions.Self,
|
|
1359
1374
|
):
|
|
1360
1375
|
"""Rotates the quaternion by another mathutils value.
|
|
1361
1376
|
|
|
1362
1377
|
:param other: rotation component of mathutils value
|
|
1363
|
-
:type other: Euler | Matrix | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] |
|
|
1378
|
+
:type other: Euler | Matrix | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
1364
1379
|
"""
|
|
1365
1380
|
...
|
|
1366
1381
|
|
|
1367
1382
|
def rotation_difference(
|
|
1368
|
-
self, other: collections.abc.Sequence[float] |
|
|
1369
|
-
) ->
|
|
1383
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1384
|
+
) -> typing_extensions.Self:
|
|
1370
1385
|
"""Returns a quaternion representing the rotational difference.
|
|
1371
1386
|
|
|
1372
1387
|
:param other: second quaternion.
|
|
1373
|
-
:type other: collections.abc.Sequence[float] |
|
|
1388
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1374
1389
|
:return: the rotational difference between the two quat rotations.
|
|
1375
|
-
:rtype:
|
|
1390
|
+
:rtype: typing_extensions.Self
|
|
1376
1391
|
"""
|
|
1377
1392
|
...
|
|
1378
1393
|
|
|
1379
1394
|
def slerp(
|
|
1380
|
-
self,
|
|
1381
|
-
|
|
1395
|
+
self,
|
|
1396
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1397
|
+
factor: float,
|
|
1398
|
+
) -> typing_extensions.Self:
|
|
1382
1399
|
"""Returns the interpolation of two quaternions.
|
|
1383
1400
|
|
|
1384
1401
|
:param other: value to interpolate with.
|
|
1385
|
-
:type other: collections.abc.Sequence[float] |
|
|
1402
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1386
1403
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
1387
1404
|
:type factor: float
|
|
1388
1405
|
:return: The interpolated rotation.
|
|
1389
|
-
:rtype:
|
|
1406
|
+
:rtype: typing_extensions.Self
|
|
1390
1407
|
"""
|
|
1391
1408
|
...
|
|
1392
1409
|
|
|
@@ -1450,22 +1467,24 @@ class Quaternion:
|
|
|
1450
1467
|
"""
|
|
1451
1468
|
...
|
|
1452
1469
|
|
|
1453
|
-
def __get__(self, instance, owner) ->
|
|
1470
|
+
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
1454
1471
|
"""
|
|
1455
1472
|
|
|
1456
1473
|
:param instance:
|
|
1457
1474
|
:param owner:
|
|
1458
1475
|
:return:
|
|
1459
|
-
:rtype:
|
|
1476
|
+
:rtype: typing_extensions.Self
|
|
1460
1477
|
"""
|
|
1461
1478
|
...
|
|
1462
1479
|
|
|
1463
|
-
def __set__(
|
|
1480
|
+
def __set__(
|
|
1481
|
+
self, instance, value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1482
|
+
):
|
|
1464
1483
|
"""
|
|
1465
1484
|
|
|
1466
1485
|
:param instance:
|
|
1467
1486
|
:param value:
|
|
1468
|
-
:type value: collections.abc.Sequence[float] |
|
|
1487
|
+
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1469
1488
|
"""
|
|
1470
1489
|
...
|
|
1471
1490
|
|
|
@@ -1522,51 +1541,52 @@ class Quaternion:
|
|
|
1522
1541
|
...
|
|
1523
1542
|
|
|
1524
1543
|
def __add__(
|
|
1525
|
-
self, other: collections.abc.Sequence[float] |
|
|
1526
|
-
) ->
|
|
1544
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1545
|
+
) -> typing_extensions.Self:
|
|
1527
1546
|
"""
|
|
1528
1547
|
|
|
1529
1548
|
:param other:
|
|
1530
|
-
:type other: collections.abc.Sequence[float] |
|
|
1549
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1531
1550
|
:return:
|
|
1532
|
-
:rtype:
|
|
1551
|
+
:rtype: typing_extensions.Self
|
|
1533
1552
|
"""
|
|
1534
1553
|
...
|
|
1535
1554
|
|
|
1536
1555
|
def __sub__(
|
|
1537
|
-
self, other: collections.abc.Sequence[float] |
|
|
1538
|
-
) ->
|
|
1556
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1557
|
+
) -> typing_extensions.Self:
|
|
1539
1558
|
"""
|
|
1540
1559
|
|
|
1541
1560
|
:param other:
|
|
1542
|
-
:type other: collections.abc.Sequence[float] |
|
|
1561
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1543
1562
|
:return:
|
|
1544
|
-
:rtype:
|
|
1563
|
+
:rtype: typing_extensions.Self
|
|
1545
1564
|
"""
|
|
1546
1565
|
...
|
|
1547
1566
|
|
|
1548
1567
|
def __mul__(
|
|
1549
|
-
self,
|
|
1550
|
-
|
|
1568
|
+
self,
|
|
1569
|
+
other: collections.abc.Sequence[float] | float | int | typing_extensions.Self,
|
|
1570
|
+
) -> typing_extensions.Self:
|
|
1551
1571
|
"""
|
|
1552
1572
|
|
|
1553
1573
|
:param other:
|
|
1554
|
-
:type other: collections.abc.Sequence[float] | float | int |
|
|
1574
|
+
:type other: collections.abc.Sequence[float] | float | int | typing_extensions.Self
|
|
1555
1575
|
:return:
|
|
1556
|
-
:rtype:
|
|
1576
|
+
:rtype: typing_extensions.Self
|
|
1557
1577
|
"""
|
|
1558
1578
|
...
|
|
1559
1579
|
|
|
1560
1580
|
@typing.overload
|
|
1561
1581
|
def __matmul__(
|
|
1562
|
-
self, other: collections.abc.Sequence[float] |
|
|
1563
|
-
) ->
|
|
1582
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1583
|
+
) -> typing_extensions.Self:
|
|
1564
1584
|
"""
|
|
1565
1585
|
|
|
1566
1586
|
:param other:
|
|
1567
|
-
:type other: collections.abc.Sequence[float] |
|
|
1587
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1568
1588
|
:return:
|
|
1569
|
-
:rtype:
|
|
1589
|
+
:rtype: typing_extensions.Self
|
|
1570
1590
|
"""
|
|
1571
1591
|
...
|
|
1572
1592
|
|
|
@@ -1582,50 +1602,52 @@ class Quaternion:
|
|
|
1582
1602
|
...
|
|
1583
1603
|
|
|
1584
1604
|
def __radd__(
|
|
1585
|
-
self, other: collections.abc.Sequence[float] |
|
|
1586
|
-
) ->
|
|
1605
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1606
|
+
) -> typing_extensions.Self:
|
|
1587
1607
|
"""
|
|
1588
1608
|
|
|
1589
1609
|
:param other:
|
|
1590
|
-
:type other: collections.abc.Sequence[float] |
|
|
1610
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1591
1611
|
:return:
|
|
1592
|
-
:rtype:
|
|
1612
|
+
:rtype: typing_extensions.Self
|
|
1593
1613
|
"""
|
|
1594
1614
|
...
|
|
1595
1615
|
|
|
1596
1616
|
def __rsub__(
|
|
1597
|
-
self, other: collections.abc.Sequence[float] |
|
|
1598
|
-
) ->
|
|
1617
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1618
|
+
) -> typing_extensions.Self:
|
|
1599
1619
|
"""
|
|
1600
1620
|
|
|
1601
1621
|
:param other:
|
|
1602
|
-
:type other: collections.abc.Sequence[float] |
|
|
1622
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1603
1623
|
:return:
|
|
1604
|
-
:rtype:
|
|
1624
|
+
:rtype: typing_extensions.Self
|
|
1605
1625
|
"""
|
|
1606
1626
|
...
|
|
1607
1627
|
|
|
1608
1628
|
def __rmul__(
|
|
1609
|
-
self,
|
|
1610
|
-
|
|
1629
|
+
self,
|
|
1630
|
+
other: collections.abc.Sequence[float] | float | int | typing_extensions.Self,
|
|
1631
|
+
) -> typing_extensions.Self:
|
|
1611
1632
|
"""
|
|
1612
1633
|
|
|
1613
1634
|
:param other:
|
|
1614
|
-
:type other: collections.abc.Sequence[float] | float | int |
|
|
1635
|
+
:type other: collections.abc.Sequence[float] | float | int | typing_extensions.Self
|
|
1615
1636
|
:return:
|
|
1616
|
-
:rtype:
|
|
1637
|
+
:rtype: typing_extensions.Self
|
|
1617
1638
|
"""
|
|
1618
1639
|
...
|
|
1619
1640
|
|
|
1620
1641
|
def __imul__(
|
|
1621
|
-
self,
|
|
1622
|
-
|
|
1642
|
+
self,
|
|
1643
|
+
other: collections.abc.Sequence[float] | float | int | typing_extensions.Self,
|
|
1644
|
+
) -> typing_extensions.Self:
|
|
1623
1645
|
"""
|
|
1624
1646
|
|
|
1625
1647
|
:param other:
|
|
1626
|
-
:type other: collections.abc.Sequence[float] | float | int |
|
|
1648
|
+
:type other: collections.abc.Sequence[float] | float | int | typing_extensions.Self
|
|
1627
1649
|
:return:
|
|
1628
|
-
:rtype:
|
|
1650
|
+
:rtype: typing_extensions.Self
|
|
1629
1651
|
"""
|
|
1630
1652
|
...
|
|
1631
1653
|
|
|
@@ -1677,508 +1699,508 @@ class Vector:
|
|
|
1677
1699
|
:type: float
|
|
1678
1700
|
"""
|
|
1679
1701
|
|
|
1680
|
-
ww:
|
|
1702
|
+
ww: typing_extensions.Self
|
|
1681
1703
|
"""
|
|
1682
1704
|
|
|
1683
|
-
:type:
|
|
1705
|
+
:type: typing_extensions.Self
|
|
1684
1706
|
"""
|
|
1685
1707
|
|
|
1686
|
-
www:
|
|
1708
|
+
www: typing_extensions.Self
|
|
1687
1709
|
"""
|
|
1688
1710
|
|
|
1689
|
-
:type:
|
|
1711
|
+
:type: typing_extensions.Self
|
|
1690
1712
|
"""
|
|
1691
1713
|
|
|
1692
|
-
wwww:
|
|
1714
|
+
wwww: typing_extensions.Self
|
|
1693
1715
|
"""
|
|
1694
1716
|
|
|
1695
|
-
:type:
|
|
1717
|
+
:type: typing_extensions.Self
|
|
1696
1718
|
"""
|
|
1697
1719
|
|
|
1698
|
-
wwwx:
|
|
1720
|
+
wwwx: typing_extensions.Self
|
|
1699
1721
|
"""
|
|
1700
1722
|
|
|
1701
|
-
:type:
|
|
1723
|
+
:type: typing_extensions.Self
|
|
1702
1724
|
"""
|
|
1703
1725
|
|
|
1704
|
-
wwwy:
|
|
1726
|
+
wwwy: typing_extensions.Self
|
|
1705
1727
|
"""
|
|
1706
1728
|
|
|
1707
|
-
:type:
|
|
1729
|
+
:type: typing_extensions.Self
|
|
1708
1730
|
"""
|
|
1709
1731
|
|
|
1710
|
-
wwwz:
|
|
1732
|
+
wwwz: typing_extensions.Self
|
|
1711
1733
|
"""
|
|
1712
1734
|
|
|
1713
|
-
:type:
|
|
1735
|
+
:type: typing_extensions.Self
|
|
1714
1736
|
"""
|
|
1715
1737
|
|
|
1716
|
-
wwx:
|
|
1738
|
+
wwx: typing_extensions.Self
|
|
1717
1739
|
"""
|
|
1718
1740
|
|
|
1719
|
-
:type:
|
|
1741
|
+
:type: typing_extensions.Self
|
|
1720
1742
|
"""
|
|
1721
1743
|
|
|
1722
|
-
wwxw:
|
|
1744
|
+
wwxw: typing_extensions.Self
|
|
1723
1745
|
"""
|
|
1724
1746
|
|
|
1725
|
-
:type:
|
|
1747
|
+
:type: typing_extensions.Self
|
|
1726
1748
|
"""
|
|
1727
1749
|
|
|
1728
|
-
wwxx:
|
|
1750
|
+
wwxx: typing_extensions.Self
|
|
1729
1751
|
"""
|
|
1730
1752
|
|
|
1731
|
-
:type:
|
|
1753
|
+
:type: typing_extensions.Self
|
|
1732
1754
|
"""
|
|
1733
1755
|
|
|
1734
|
-
wwxy:
|
|
1756
|
+
wwxy: typing_extensions.Self
|
|
1735
1757
|
"""
|
|
1736
1758
|
|
|
1737
|
-
:type:
|
|
1759
|
+
:type: typing_extensions.Self
|
|
1738
1760
|
"""
|
|
1739
1761
|
|
|
1740
|
-
wwxz:
|
|
1762
|
+
wwxz: typing_extensions.Self
|
|
1741
1763
|
"""
|
|
1742
1764
|
|
|
1743
|
-
:type:
|
|
1765
|
+
:type: typing_extensions.Self
|
|
1744
1766
|
"""
|
|
1745
1767
|
|
|
1746
|
-
wwy:
|
|
1768
|
+
wwy: typing_extensions.Self
|
|
1747
1769
|
"""
|
|
1748
1770
|
|
|
1749
|
-
:type:
|
|
1771
|
+
:type: typing_extensions.Self
|
|
1750
1772
|
"""
|
|
1751
1773
|
|
|
1752
|
-
wwyw:
|
|
1774
|
+
wwyw: typing_extensions.Self
|
|
1753
1775
|
"""
|
|
1754
1776
|
|
|
1755
|
-
:type:
|
|
1777
|
+
:type: typing_extensions.Self
|
|
1756
1778
|
"""
|
|
1757
1779
|
|
|
1758
|
-
wwyx:
|
|
1780
|
+
wwyx: typing_extensions.Self
|
|
1759
1781
|
"""
|
|
1760
1782
|
|
|
1761
|
-
:type:
|
|
1783
|
+
:type: typing_extensions.Self
|
|
1762
1784
|
"""
|
|
1763
1785
|
|
|
1764
|
-
wwyy:
|
|
1786
|
+
wwyy: typing_extensions.Self
|
|
1765
1787
|
"""
|
|
1766
1788
|
|
|
1767
|
-
:type:
|
|
1789
|
+
:type: typing_extensions.Self
|
|
1768
1790
|
"""
|
|
1769
1791
|
|
|
1770
|
-
wwyz:
|
|
1792
|
+
wwyz: typing_extensions.Self
|
|
1771
1793
|
"""
|
|
1772
1794
|
|
|
1773
|
-
:type:
|
|
1795
|
+
:type: typing_extensions.Self
|
|
1774
1796
|
"""
|
|
1775
1797
|
|
|
1776
|
-
wwz:
|
|
1798
|
+
wwz: typing_extensions.Self
|
|
1777
1799
|
"""
|
|
1778
1800
|
|
|
1779
|
-
:type:
|
|
1801
|
+
:type: typing_extensions.Self
|
|
1780
1802
|
"""
|
|
1781
1803
|
|
|
1782
|
-
wwzw:
|
|
1804
|
+
wwzw: typing_extensions.Self
|
|
1783
1805
|
"""
|
|
1784
1806
|
|
|
1785
|
-
:type:
|
|
1807
|
+
:type: typing_extensions.Self
|
|
1786
1808
|
"""
|
|
1787
1809
|
|
|
1788
|
-
wwzx:
|
|
1810
|
+
wwzx: typing_extensions.Self
|
|
1789
1811
|
"""
|
|
1790
1812
|
|
|
1791
|
-
:type:
|
|
1813
|
+
:type: typing_extensions.Self
|
|
1792
1814
|
"""
|
|
1793
1815
|
|
|
1794
|
-
wwzy:
|
|
1816
|
+
wwzy: typing_extensions.Self
|
|
1795
1817
|
"""
|
|
1796
1818
|
|
|
1797
|
-
:type:
|
|
1819
|
+
:type: typing_extensions.Self
|
|
1798
1820
|
"""
|
|
1799
1821
|
|
|
1800
|
-
wwzz:
|
|
1822
|
+
wwzz: typing_extensions.Self
|
|
1801
1823
|
"""
|
|
1802
1824
|
|
|
1803
|
-
:type:
|
|
1825
|
+
:type: typing_extensions.Self
|
|
1804
1826
|
"""
|
|
1805
1827
|
|
|
1806
|
-
wx:
|
|
1828
|
+
wx: typing_extensions.Self
|
|
1807
1829
|
"""
|
|
1808
1830
|
|
|
1809
|
-
:type:
|
|
1831
|
+
:type: typing_extensions.Self
|
|
1810
1832
|
"""
|
|
1811
1833
|
|
|
1812
|
-
wxw:
|
|
1834
|
+
wxw: typing_extensions.Self
|
|
1813
1835
|
"""
|
|
1814
1836
|
|
|
1815
|
-
:type:
|
|
1837
|
+
:type: typing_extensions.Self
|
|
1816
1838
|
"""
|
|
1817
1839
|
|
|
1818
|
-
wxww:
|
|
1840
|
+
wxww: typing_extensions.Self
|
|
1819
1841
|
"""
|
|
1820
1842
|
|
|
1821
|
-
:type:
|
|
1843
|
+
:type: typing_extensions.Self
|
|
1822
1844
|
"""
|
|
1823
1845
|
|
|
1824
|
-
wxwx:
|
|
1846
|
+
wxwx: typing_extensions.Self
|
|
1825
1847
|
"""
|
|
1826
1848
|
|
|
1827
|
-
:type:
|
|
1849
|
+
:type: typing_extensions.Self
|
|
1828
1850
|
"""
|
|
1829
1851
|
|
|
1830
|
-
wxwy:
|
|
1852
|
+
wxwy: typing_extensions.Self
|
|
1831
1853
|
"""
|
|
1832
1854
|
|
|
1833
|
-
:type:
|
|
1855
|
+
:type: typing_extensions.Self
|
|
1834
1856
|
"""
|
|
1835
1857
|
|
|
1836
|
-
wxwz:
|
|
1858
|
+
wxwz: typing_extensions.Self
|
|
1837
1859
|
"""
|
|
1838
1860
|
|
|
1839
|
-
:type:
|
|
1861
|
+
:type: typing_extensions.Self
|
|
1840
1862
|
"""
|
|
1841
1863
|
|
|
1842
|
-
wxx:
|
|
1864
|
+
wxx: typing_extensions.Self
|
|
1843
1865
|
"""
|
|
1844
1866
|
|
|
1845
|
-
:type:
|
|
1867
|
+
:type: typing_extensions.Self
|
|
1846
1868
|
"""
|
|
1847
1869
|
|
|
1848
|
-
wxxw:
|
|
1870
|
+
wxxw: typing_extensions.Self
|
|
1849
1871
|
"""
|
|
1850
1872
|
|
|
1851
|
-
:type:
|
|
1873
|
+
:type: typing_extensions.Self
|
|
1852
1874
|
"""
|
|
1853
1875
|
|
|
1854
|
-
wxxx:
|
|
1876
|
+
wxxx: typing_extensions.Self
|
|
1855
1877
|
"""
|
|
1856
1878
|
|
|
1857
|
-
:type:
|
|
1879
|
+
:type: typing_extensions.Self
|
|
1858
1880
|
"""
|
|
1859
1881
|
|
|
1860
|
-
wxxy:
|
|
1882
|
+
wxxy: typing_extensions.Self
|
|
1861
1883
|
"""
|
|
1862
1884
|
|
|
1863
|
-
:type:
|
|
1885
|
+
:type: typing_extensions.Self
|
|
1864
1886
|
"""
|
|
1865
1887
|
|
|
1866
|
-
wxxz:
|
|
1888
|
+
wxxz: typing_extensions.Self
|
|
1867
1889
|
"""
|
|
1868
1890
|
|
|
1869
|
-
:type:
|
|
1891
|
+
:type: typing_extensions.Self
|
|
1870
1892
|
"""
|
|
1871
1893
|
|
|
1872
|
-
wxy:
|
|
1894
|
+
wxy: typing_extensions.Self
|
|
1873
1895
|
"""
|
|
1874
1896
|
|
|
1875
|
-
:type:
|
|
1897
|
+
:type: typing_extensions.Self
|
|
1876
1898
|
"""
|
|
1877
1899
|
|
|
1878
|
-
wxyw:
|
|
1900
|
+
wxyw: typing_extensions.Self
|
|
1879
1901
|
"""
|
|
1880
1902
|
|
|
1881
|
-
:type:
|
|
1903
|
+
:type: typing_extensions.Self
|
|
1882
1904
|
"""
|
|
1883
1905
|
|
|
1884
|
-
wxyx:
|
|
1906
|
+
wxyx: typing_extensions.Self
|
|
1885
1907
|
"""
|
|
1886
1908
|
|
|
1887
|
-
:type:
|
|
1909
|
+
:type: typing_extensions.Self
|
|
1888
1910
|
"""
|
|
1889
1911
|
|
|
1890
|
-
wxyy:
|
|
1912
|
+
wxyy: typing_extensions.Self
|
|
1891
1913
|
"""
|
|
1892
1914
|
|
|
1893
|
-
:type:
|
|
1915
|
+
:type: typing_extensions.Self
|
|
1894
1916
|
"""
|
|
1895
1917
|
|
|
1896
|
-
wxyz:
|
|
1918
|
+
wxyz: typing_extensions.Self
|
|
1897
1919
|
"""
|
|
1898
1920
|
|
|
1899
|
-
:type:
|
|
1921
|
+
:type: typing_extensions.Self
|
|
1900
1922
|
"""
|
|
1901
1923
|
|
|
1902
|
-
wxz:
|
|
1924
|
+
wxz: typing_extensions.Self
|
|
1903
1925
|
"""
|
|
1904
1926
|
|
|
1905
|
-
:type:
|
|
1927
|
+
:type: typing_extensions.Self
|
|
1906
1928
|
"""
|
|
1907
1929
|
|
|
1908
|
-
wxzw:
|
|
1930
|
+
wxzw: typing_extensions.Self
|
|
1909
1931
|
"""
|
|
1910
1932
|
|
|
1911
|
-
:type:
|
|
1933
|
+
:type: typing_extensions.Self
|
|
1912
1934
|
"""
|
|
1913
1935
|
|
|
1914
|
-
wxzx:
|
|
1936
|
+
wxzx: typing_extensions.Self
|
|
1915
1937
|
"""
|
|
1916
1938
|
|
|
1917
|
-
:type:
|
|
1939
|
+
:type: typing_extensions.Self
|
|
1918
1940
|
"""
|
|
1919
1941
|
|
|
1920
|
-
wxzy:
|
|
1942
|
+
wxzy: typing_extensions.Self
|
|
1921
1943
|
"""
|
|
1922
1944
|
|
|
1923
|
-
:type:
|
|
1945
|
+
:type: typing_extensions.Self
|
|
1924
1946
|
"""
|
|
1925
1947
|
|
|
1926
|
-
wxzz:
|
|
1948
|
+
wxzz: typing_extensions.Self
|
|
1927
1949
|
"""
|
|
1928
1950
|
|
|
1929
|
-
:type:
|
|
1951
|
+
:type: typing_extensions.Self
|
|
1930
1952
|
"""
|
|
1931
1953
|
|
|
1932
|
-
wy:
|
|
1954
|
+
wy: typing_extensions.Self
|
|
1933
1955
|
"""
|
|
1934
1956
|
|
|
1935
|
-
:type:
|
|
1957
|
+
:type: typing_extensions.Self
|
|
1936
1958
|
"""
|
|
1937
1959
|
|
|
1938
|
-
wyw:
|
|
1960
|
+
wyw: typing_extensions.Self
|
|
1939
1961
|
"""
|
|
1940
1962
|
|
|
1941
|
-
:type:
|
|
1963
|
+
:type: typing_extensions.Self
|
|
1942
1964
|
"""
|
|
1943
1965
|
|
|
1944
|
-
wyww:
|
|
1966
|
+
wyww: typing_extensions.Self
|
|
1945
1967
|
"""
|
|
1946
1968
|
|
|
1947
|
-
:type:
|
|
1969
|
+
:type: typing_extensions.Self
|
|
1948
1970
|
"""
|
|
1949
1971
|
|
|
1950
|
-
wywx:
|
|
1972
|
+
wywx: typing_extensions.Self
|
|
1951
1973
|
"""
|
|
1952
1974
|
|
|
1953
|
-
:type:
|
|
1975
|
+
:type: typing_extensions.Self
|
|
1954
1976
|
"""
|
|
1955
1977
|
|
|
1956
|
-
wywy:
|
|
1978
|
+
wywy: typing_extensions.Self
|
|
1957
1979
|
"""
|
|
1958
1980
|
|
|
1959
|
-
:type:
|
|
1981
|
+
:type: typing_extensions.Self
|
|
1960
1982
|
"""
|
|
1961
1983
|
|
|
1962
|
-
wywz:
|
|
1984
|
+
wywz: typing_extensions.Self
|
|
1963
1985
|
"""
|
|
1964
1986
|
|
|
1965
|
-
:type:
|
|
1987
|
+
:type: typing_extensions.Self
|
|
1966
1988
|
"""
|
|
1967
1989
|
|
|
1968
|
-
wyx:
|
|
1990
|
+
wyx: typing_extensions.Self
|
|
1969
1991
|
"""
|
|
1970
1992
|
|
|
1971
|
-
:type:
|
|
1993
|
+
:type: typing_extensions.Self
|
|
1972
1994
|
"""
|
|
1973
1995
|
|
|
1974
|
-
wyxw:
|
|
1996
|
+
wyxw: typing_extensions.Self
|
|
1975
1997
|
"""
|
|
1976
1998
|
|
|
1977
|
-
:type:
|
|
1999
|
+
:type: typing_extensions.Self
|
|
1978
2000
|
"""
|
|
1979
2001
|
|
|
1980
|
-
wyxx:
|
|
2002
|
+
wyxx: typing_extensions.Self
|
|
1981
2003
|
"""
|
|
1982
2004
|
|
|
1983
|
-
:type:
|
|
2005
|
+
:type: typing_extensions.Self
|
|
1984
2006
|
"""
|
|
1985
2007
|
|
|
1986
|
-
wyxy:
|
|
2008
|
+
wyxy: typing_extensions.Self
|
|
1987
2009
|
"""
|
|
1988
2010
|
|
|
1989
|
-
:type:
|
|
2011
|
+
:type: typing_extensions.Self
|
|
1990
2012
|
"""
|
|
1991
2013
|
|
|
1992
|
-
wyxz:
|
|
2014
|
+
wyxz: typing_extensions.Self
|
|
1993
2015
|
"""
|
|
1994
2016
|
|
|
1995
|
-
:type:
|
|
2017
|
+
:type: typing_extensions.Self
|
|
1996
2018
|
"""
|
|
1997
2019
|
|
|
1998
|
-
wyy:
|
|
2020
|
+
wyy: typing_extensions.Self
|
|
1999
2021
|
"""
|
|
2000
2022
|
|
|
2001
|
-
:type:
|
|
2023
|
+
:type: typing_extensions.Self
|
|
2002
2024
|
"""
|
|
2003
2025
|
|
|
2004
|
-
wyyw:
|
|
2026
|
+
wyyw: typing_extensions.Self
|
|
2005
2027
|
"""
|
|
2006
2028
|
|
|
2007
|
-
:type:
|
|
2029
|
+
:type: typing_extensions.Self
|
|
2008
2030
|
"""
|
|
2009
2031
|
|
|
2010
|
-
wyyx:
|
|
2032
|
+
wyyx: typing_extensions.Self
|
|
2011
2033
|
"""
|
|
2012
2034
|
|
|
2013
|
-
:type:
|
|
2035
|
+
:type: typing_extensions.Self
|
|
2014
2036
|
"""
|
|
2015
2037
|
|
|
2016
|
-
wyyy:
|
|
2038
|
+
wyyy: typing_extensions.Self
|
|
2017
2039
|
"""
|
|
2018
2040
|
|
|
2019
|
-
:type:
|
|
2041
|
+
:type: typing_extensions.Self
|
|
2020
2042
|
"""
|
|
2021
2043
|
|
|
2022
|
-
wyyz:
|
|
2044
|
+
wyyz: typing_extensions.Self
|
|
2023
2045
|
"""
|
|
2024
2046
|
|
|
2025
|
-
:type:
|
|
2047
|
+
:type: typing_extensions.Self
|
|
2026
2048
|
"""
|
|
2027
2049
|
|
|
2028
|
-
wyz:
|
|
2050
|
+
wyz: typing_extensions.Self
|
|
2029
2051
|
"""
|
|
2030
2052
|
|
|
2031
|
-
:type:
|
|
2053
|
+
:type: typing_extensions.Self
|
|
2032
2054
|
"""
|
|
2033
2055
|
|
|
2034
|
-
wyzw:
|
|
2056
|
+
wyzw: typing_extensions.Self
|
|
2035
2057
|
"""
|
|
2036
2058
|
|
|
2037
|
-
:type:
|
|
2059
|
+
:type: typing_extensions.Self
|
|
2038
2060
|
"""
|
|
2039
2061
|
|
|
2040
|
-
wyzx:
|
|
2062
|
+
wyzx: typing_extensions.Self
|
|
2041
2063
|
"""
|
|
2042
2064
|
|
|
2043
|
-
:type:
|
|
2065
|
+
:type: typing_extensions.Self
|
|
2044
2066
|
"""
|
|
2045
2067
|
|
|
2046
|
-
wyzy:
|
|
2068
|
+
wyzy: typing_extensions.Self
|
|
2047
2069
|
"""
|
|
2048
2070
|
|
|
2049
|
-
:type:
|
|
2071
|
+
:type: typing_extensions.Self
|
|
2050
2072
|
"""
|
|
2051
2073
|
|
|
2052
|
-
wyzz:
|
|
2074
|
+
wyzz: typing_extensions.Self
|
|
2053
2075
|
"""
|
|
2054
2076
|
|
|
2055
|
-
:type:
|
|
2077
|
+
:type: typing_extensions.Self
|
|
2056
2078
|
"""
|
|
2057
2079
|
|
|
2058
|
-
wz:
|
|
2080
|
+
wz: typing_extensions.Self
|
|
2059
2081
|
"""
|
|
2060
2082
|
|
|
2061
|
-
:type:
|
|
2083
|
+
:type: typing_extensions.Self
|
|
2062
2084
|
"""
|
|
2063
2085
|
|
|
2064
|
-
wzw:
|
|
2086
|
+
wzw: typing_extensions.Self
|
|
2065
2087
|
"""
|
|
2066
2088
|
|
|
2067
|
-
:type:
|
|
2089
|
+
:type: typing_extensions.Self
|
|
2068
2090
|
"""
|
|
2069
2091
|
|
|
2070
|
-
wzww:
|
|
2092
|
+
wzww: typing_extensions.Self
|
|
2071
2093
|
"""
|
|
2072
2094
|
|
|
2073
|
-
:type:
|
|
2095
|
+
:type: typing_extensions.Self
|
|
2074
2096
|
"""
|
|
2075
2097
|
|
|
2076
|
-
wzwx:
|
|
2098
|
+
wzwx: typing_extensions.Self
|
|
2077
2099
|
"""
|
|
2078
2100
|
|
|
2079
|
-
:type:
|
|
2101
|
+
:type: typing_extensions.Self
|
|
2080
2102
|
"""
|
|
2081
2103
|
|
|
2082
|
-
wzwy:
|
|
2104
|
+
wzwy: typing_extensions.Self
|
|
2083
2105
|
"""
|
|
2084
2106
|
|
|
2085
|
-
:type:
|
|
2107
|
+
:type: typing_extensions.Self
|
|
2086
2108
|
"""
|
|
2087
2109
|
|
|
2088
|
-
wzwz:
|
|
2110
|
+
wzwz: typing_extensions.Self
|
|
2089
2111
|
"""
|
|
2090
2112
|
|
|
2091
|
-
:type:
|
|
2113
|
+
:type: typing_extensions.Self
|
|
2092
2114
|
"""
|
|
2093
2115
|
|
|
2094
|
-
wzx:
|
|
2116
|
+
wzx: typing_extensions.Self
|
|
2095
2117
|
"""
|
|
2096
2118
|
|
|
2097
|
-
:type:
|
|
2119
|
+
:type: typing_extensions.Self
|
|
2098
2120
|
"""
|
|
2099
2121
|
|
|
2100
|
-
wzxw:
|
|
2122
|
+
wzxw: typing_extensions.Self
|
|
2101
2123
|
"""
|
|
2102
2124
|
|
|
2103
|
-
:type:
|
|
2125
|
+
:type: typing_extensions.Self
|
|
2104
2126
|
"""
|
|
2105
2127
|
|
|
2106
|
-
wzxx:
|
|
2128
|
+
wzxx: typing_extensions.Self
|
|
2107
2129
|
"""
|
|
2108
2130
|
|
|
2109
|
-
:type:
|
|
2131
|
+
:type: typing_extensions.Self
|
|
2110
2132
|
"""
|
|
2111
2133
|
|
|
2112
|
-
wzxy:
|
|
2134
|
+
wzxy: typing_extensions.Self
|
|
2113
2135
|
"""
|
|
2114
2136
|
|
|
2115
|
-
:type:
|
|
2137
|
+
:type: typing_extensions.Self
|
|
2116
2138
|
"""
|
|
2117
2139
|
|
|
2118
|
-
wzxz:
|
|
2140
|
+
wzxz: typing_extensions.Self
|
|
2119
2141
|
"""
|
|
2120
2142
|
|
|
2121
|
-
:type:
|
|
2143
|
+
:type: typing_extensions.Self
|
|
2122
2144
|
"""
|
|
2123
2145
|
|
|
2124
|
-
wzy:
|
|
2146
|
+
wzy: typing_extensions.Self
|
|
2125
2147
|
"""
|
|
2126
2148
|
|
|
2127
|
-
:type:
|
|
2149
|
+
:type: typing_extensions.Self
|
|
2128
2150
|
"""
|
|
2129
2151
|
|
|
2130
|
-
wzyw:
|
|
2152
|
+
wzyw: typing_extensions.Self
|
|
2131
2153
|
"""
|
|
2132
2154
|
|
|
2133
|
-
:type:
|
|
2155
|
+
:type: typing_extensions.Self
|
|
2134
2156
|
"""
|
|
2135
2157
|
|
|
2136
|
-
wzyx:
|
|
2158
|
+
wzyx: typing_extensions.Self
|
|
2137
2159
|
"""
|
|
2138
2160
|
|
|
2139
|
-
:type:
|
|
2161
|
+
:type: typing_extensions.Self
|
|
2140
2162
|
"""
|
|
2141
2163
|
|
|
2142
|
-
wzyy:
|
|
2164
|
+
wzyy: typing_extensions.Self
|
|
2143
2165
|
"""
|
|
2144
2166
|
|
|
2145
|
-
:type:
|
|
2167
|
+
:type: typing_extensions.Self
|
|
2146
2168
|
"""
|
|
2147
2169
|
|
|
2148
|
-
wzyz:
|
|
2170
|
+
wzyz: typing_extensions.Self
|
|
2149
2171
|
"""
|
|
2150
2172
|
|
|
2151
|
-
:type:
|
|
2173
|
+
:type: typing_extensions.Self
|
|
2152
2174
|
"""
|
|
2153
2175
|
|
|
2154
|
-
wzz:
|
|
2176
|
+
wzz: typing_extensions.Self
|
|
2155
2177
|
"""
|
|
2156
2178
|
|
|
2157
|
-
:type:
|
|
2179
|
+
:type: typing_extensions.Self
|
|
2158
2180
|
"""
|
|
2159
2181
|
|
|
2160
|
-
wzzw:
|
|
2182
|
+
wzzw: typing_extensions.Self
|
|
2161
2183
|
"""
|
|
2162
2184
|
|
|
2163
|
-
:type:
|
|
2185
|
+
:type: typing_extensions.Self
|
|
2164
2186
|
"""
|
|
2165
2187
|
|
|
2166
|
-
wzzx:
|
|
2188
|
+
wzzx: typing_extensions.Self
|
|
2167
2189
|
"""
|
|
2168
2190
|
|
|
2169
|
-
:type:
|
|
2191
|
+
:type: typing_extensions.Self
|
|
2170
2192
|
"""
|
|
2171
2193
|
|
|
2172
|
-
wzzy:
|
|
2194
|
+
wzzy: typing_extensions.Self
|
|
2173
2195
|
"""
|
|
2174
2196
|
|
|
2175
|
-
:type:
|
|
2197
|
+
:type: typing_extensions.Self
|
|
2176
2198
|
"""
|
|
2177
2199
|
|
|
2178
|
-
wzzz:
|
|
2200
|
+
wzzz: typing_extensions.Self
|
|
2179
2201
|
"""
|
|
2180
2202
|
|
|
2181
|
-
:type:
|
|
2203
|
+
:type: typing_extensions.Self
|
|
2182
2204
|
"""
|
|
2183
2205
|
|
|
2184
2206
|
x: float
|
|
@@ -2187,508 +2209,508 @@ class Vector:
|
|
|
2187
2209
|
:type: float
|
|
2188
2210
|
"""
|
|
2189
2211
|
|
|
2190
|
-
xw:
|
|
2212
|
+
xw: typing_extensions.Self
|
|
2191
2213
|
"""
|
|
2192
2214
|
|
|
2193
|
-
:type:
|
|
2215
|
+
:type: typing_extensions.Self
|
|
2194
2216
|
"""
|
|
2195
2217
|
|
|
2196
|
-
xww:
|
|
2218
|
+
xww: typing_extensions.Self
|
|
2197
2219
|
"""
|
|
2198
2220
|
|
|
2199
|
-
:type:
|
|
2221
|
+
:type: typing_extensions.Self
|
|
2200
2222
|
"""
|
|
2201
2223
|
|
|
2202
|
-
xwww:
|
|
2224
|
+
xwww: typing_extensions.Self
|
|
2203
2225
|
"""
|
|
2204
2226
|
|
|
2205
|
-
:type:
|
|
2227
|
+
:type: typing_extensions.Self
|
|
2206
2228
|
"""
|
|
2207
2229
|
|
|
2208
|
-
xwwx:
|
|
2230
|
+
xwwx: typing_extensions.Self
|
|
2209
2231
|
"""
|
|
2210
2232
|
|
|
2211
|
-
:type:
|
|
2233
|
+
:type: typing_extensions.Self
|
|
2212
2234
|
"""
|
|
2213
2235
|
|
|
2214
|
-
xwwy:
|
|
2236
|
+
xwwy: typing_extensions.Self
|
|
2215
2237
|
"""
|
|
2216
2238
|
|
|
2217
|
-
:type:
|
|
2239
|
+
:type: typing_extensions.Self
|
|
2218
2240
|
"""
|
|
2219
2241
|
|
|
2220
|
-
xwwz:
|
|
2242
|
+
xwwz: typing_extensions.Self
|
|
2221
2243
|
"""
|
|
2222
2244
|
|
|
2223
|
-
:type:
|
|
2245
|
+
:type: typing_extensions.Self
|
|
2224
2246
|
"""
|
|
2225
2247
|
|
|
2226
|
-
xwx:
|
|
2248
|
+
xwx: typing_extensions.Self
|
|
2227
2249
|
"""
|
|
2228
2250
|
|
|
2229
|
-
:type:
|
|
2251
|
+
:type: typing_extensions.Self
|
|
2230
2252
|
"""
|
|
2231
2253
|
|
|
2232
|
-
xwxw:
|
|
2254
|
+
xwxw: typing_extensions.Self
|
|
2233
2255
|
"""
|
|
2234
2256
|
|
|
2235
|
-
:type:
|
|
2257
|
+
:type: typing_extensions.Self
|
|
2236
2258
|
"""
|
|
2237
2259
|
|
|
2238
|
-
xwxx:
|
|
2260
|
+
xwxx: typing_extensions.Self
|
|
2239
2261
|
"""
|
|
2240
2262
|
|
|
2241
|
-
:type:
|
|
2263
|
+
:type: typing_extensions.Self
|
|
2242
2264
|
"""
|
|
2243
2265
|
|
|
2244
|
-
xwxy:
|
|
2266
|
+
xwxy: typing_extensions.Self
|
|
2245
2267
|
"""
|
|
2246
2268
|
|
|
2247
|
-
:type:
|
|
2269
|
+
:type: typing_extensions.Self
|
|
2248
2270
|
"""
|
|
2249
2271
|
|
|
2250
|
-
xwxz:
|
|
2272
|
+
xwxz: typing_extensions.Self
|
|
2251
2273
|
"""
|
|
2252
2274
|
|
|
2253
|
-
:type:
|
|
2275
|
+
:type: typing_extensions.Self
|
|
2254
2276
|
"""
|
|
2255
2277
|
|
|
2256
|
-
xwy:
|
|
2278
|
+
xwy: typing_extensions.Self
|
|
2257
2279
|
"""
|
|
2258
2280
|
|
|
2259
|
-
:type:
|
|
2281
|
+
:type: typing_extensions.Self
|
|
2260
2282
|
"""
|
|
2261
2283
|
|
|
2262
|
-
xwyw:
|
|
2284
|
+
xwyw: typing_extensions.Self
|
|
2263
2285
|
"""
|
|
2264
2286
|
|
|
2265
|
-
:type:
|
|
2287
|
+
:type: typing_extensions.Self
|
|
2266
2288
|
"""
|
|
2267
2289
|
|
|
2268
|
-
xwyx:
|
|
2290
|
+
xwyx: typing_extensions.Self
|
|
2269
2291
|
"""
|
|
2270
2292
|
|
|
2271
|
-
:type:
|
|
2293
|
+
:type: typing_extensions.Self
|
|
2272
2294
|
"""
|
|
2273
2295
|
|
|
2274
|
-
xwyy:
|
|
2296
|
+
xwyy: typing_extensions.Self
|
|
2275
2297
|
"""
|
|
2276
2298
|
|
|
2277
|
-
:type:
|
|
2299
|
+
:type: typing_extensions.Self
|
|
2278
2300
|
"""
|
|
2279
2301
|
|
|
2280
|
-
xwyz:
|
|
2302
|
+
xwyz: typing_extensions.Self
|
|
2281
2303
|
"""
|
|
2282
2304
|
|
|
2283
|
-
:type:
|
|
2305
|
+
:type: typing_extensions.Self
|
|
2284
2306
|
"""
|
|
2285
2307
|
|
|
2286
|
-
xwz:
|
|
2308
|
+
xwz: typing_extensions.Self
|
|
2287
2309
|
"""
|
|
2288
2310
|
|
|
2289
|
-
:type:
|
|
2311
|
+
:type: typing_extensions.Self
|
|
2290
2312
|
"""
|
|
2291
2313
|
|
|
2292
|
-
xwzw:
|
|
2314
|
+
xwzw: typing_extensions.Self
|
|
2293
2315
|
"""
|
|
2294
2316
|
|
|
2295
|
-
:type:
|
|
2317
|
+
:type: typing_extensions.Self
|
|
2296
2318
|
"""
|
|
2297
2319
|
|
|
2298
|
-
xwzx:
|
|
2320
|
+
xwzx: typing_extensions.Self
|
|
2299
2321
|
"""
|
|
2300
2322
|
|
|
2301
|
-
:type:
|
|
2323
|
+
:type: typing_extensions.Self
|
|
2302
2324
|
"""
|
|
2303
2325
|
|
|
2304
|
-
xwzy:
|
|
2326
|
+
xwzy: typing_extensions.Self
|
|
2305
2327
|
"""
|
|
2306
2328
|
|
|
2307
|
-
:type:
|
|
2329
|
+
:type: typing_extensions.Self
|
|
2308
2330
|
"""
|
|
2309
2331
|
|
|
2310
|
-
xwzz:
|
|
2332
|
+
xwzz: typing_extensions.Self
|
|
2311
2333
|
"""
|
|
2312
2334
|
|
|
2313
|
-
:type:
|
|
2335
|
+
:type: typing_extensions.Self
|
|
2314
2336
|
"""
|
|
2315
2337
|
|
|
2316
|
-
xx:
|
|
2338
|
+
xx: typing_extensions.Self
|
|
2317
2339
|
"""
|
|
2318
2340
|
|
|
2319
|
-
:type:
|
|
2341
|
+
:type: typing_extensions.Self
|
|
2320
2342
|
"""
|
|
2321
2343
|
|
|
2322
|
-
xxw:
|
|
2344
|
+
xxw: typing_extensions.Self
|
|
2323
2345
|
"""
|
|
2324
2346
|
|
|
2325
|
-
:type:
|
|
2347
|
+
:type: typing_extensions.Self
|
|
2326
2348
|
"""
|
|
2327
2349
|
|
|
2328
|
-
xxww:
|
|
2350
|
+
xxww: typing_extensions.Self
|
|
2329
2351
|
"""
|
|
2330
2352
|
|
|
2331
|
-
:type:
|
|
2353
|
+
:type: typing_extensions.Self
|
|
2332
2354
|
"""
|
|
2333
2355
|
|
|
2334
|
-
xxwx:
|
|
2356
|
+
xxwx: typing_extensions.Self
|
|
2335
2357
|
"""
|
|
2336
2358
|
|
|
2337
|
-
:type:
|
|
2359
|
+
:type: typing_extensions.Self
|
|
2338
2360
|
"""
|
|
2339
2361
|
|
|
2340
|
-
xxwy:
|
|
2362
|
+
xxwy: typing_extensions.Self
|
|
2341
2363
|
"""
|
|
2342
2364
|
|
|
2343
|
-
:type:
|
|
2365
|
+
:type: typing_extensions.Self
|
|
2344
2366
|
"""
|
|
2345
2367
|
|
|
2346
|
-
xxwz:
|
|
2368
|
+
xxwz: typing_extensions.Self
|
|
2347
2369
|
"""
|
|
2348
2370
|
|
|
2349
|
-
:type:
|
|
2371
|
+
:type: typing_extensions.Self
|
|
2350
2372
|
"""
|
|
2351
2373
|
|
|
2352
|
-
xxx:
|
|
2374
|
+
xxx: typing_extensions.Self
|
|
2353
2375
|
"""
|
|
2354
2376
|
|
|
2355
|
-
:type:
|
|
2377
|
+
:type: typing_extensions.Self
|
|
2356
2378
|
"""
|
|
2357
2379
|
|
|
2358
|
-
xxxw:
|
|
2380
|
+
xxxw: typing_extensions.Self
|
|
2359
2381
|
"""
|
|
2360
2382
|
|
|
2361
|
-
:type:
|
|
2383
|
+
:type: typing_extensions.Self
|
|
2362
2384
|
"""
|
|
2363
2385
|
|
|
2364
|
-
xxxx:
|
|
2386
|
+
xxxx: typing_extensions.Self
|
|
2365
2387
|
"""
|
|
2366
2388
|
|
|
2367
|
-
:type:
|
|
2389
|
+
:type: typing_extensions.Self
|
|
2368
2390
|
"""
|
|
2369
2391
|
|
|
2370
|
-
xxxy:
|
|
2392
|
+
xxxy: typing_extensions.Self
|
|
2371
2393
|
"""
|
|
2372
2394
|
|
|
2373
|
-
:type:
|
|
2395
|
+
:type: typing_extensions.Self
|
|
2374
2396
|
"""
|
|
2375
2397
|
|
|
2376
|
-
xxxz:
|
|
2398
|
+
xxxz: typing_extensions.Self
|
|
2377
2399
|
"""
|
|
2378
2400
|
|
|
2379
|
-
:type:
|
|
2401
|
+
:type: typing_extensions.Self
|
|
2380
2402
|
"""
|
|
2381
2403
|
|
|
2382
|
-
xxy:
|
|
2404
|
+
xxy: typing_extensions.Self
|
|
2383
2405
|
"""
|
|
2384
2406
|
|
|
2385
|
-
:type:
|
|
2407
|
+
:type: typing_extensions.Self
|
|
2386
2408
|
"""
|
|
2387
2409
|
|
|
2388
|
-
xxyw:
|
|
2410
|
+
xxyw: typing_extensions.Self
|
|
2389
2411
|
"""
|
|
2390
2412
|
|
|
2391
|
-
:type:
|
|
2413
|
+
:type: typing_extensions.Self
|
|
2392
2414
|
"""
|
|
2393
2415
|
|
|
2394
|
-
xxyx:
|
|
2416
|
+
xxyx: typing_extensions.Self
|
|
2395
2417
|
"""
|
|
2396
2418
|
|
|
2397
|
-
:type:
|
|
2419
|
+
:type: typing_extensions.Self
|
|
2398
2420
|
"""
|
|
2399
2421
|
|
|
2400
|
-
xxyy:
|
|
2422
|
+
xxyy: typing_extensions.Self
|
|
2401
2423
|
"""
|
|
2402
2424
|
|
|
2403
|
-
:type:
|
|
2425
|
+
:type: typing_extensions.Self
|
|
2404
2426
|
"""
|
|
2405
2427
|
|
|
2406
|
-
xxyz:
|
|
2428
|
+
xxyz: typing_extensions.Self
|
|
2407
2429
|
"""
|
|
2408
2430
|
|
|
2409
|
-
:type:
|
|
2431
|
+
:type: typing_extensions.Self
|
|
2410
2432
|
"""
|
|
2411
2433
|
|
|
2412
|
-
xxz:
|
|
2434
|
+
xxz: typing_extensions.Self
|
|
2413
2435
|
"""
|
|
2414
2436
|
|
|
2415
|
-
:type:
|
|
2437
|
+
:type: typing_extensions.Self
|
|
2416
2438
|
"""
|
|
2417
2439
|
|
|
2418
|
-
xxzw:
|
|
2440
|
+
xxzw: typing_extensions.Self
|
|
2419
2441
|
"""
|
|
2420
2442
|
|
|
2421
|
-
:type:
|
|
2443
|
+
:type: typing_extensions.Self
|
|
2422
2444
|
"""
|
|
2423
2445
|
|
|
2424
|
-
xxzx:
|
|
2446
|
+
xxzx: typing_extensions.Self
|
|
2425
2447
|
"""
|
|
2426
2448
|
|
|
2427
|
-
:type:
|
|
2449
|
+
:type: typing_extensions.Self
|
|
2428
2450
|
"""
|
|
2429
2451
|
|
|
2430
|
-
xxzy:
|
|
2452
|
+
xxzy: typing_extensions.Self
|
|
2431
2453
|
"""
|
|
2432
2454
|
|
|
2433
|
-
:type:
|
|
2455
|
+
:type: typing_extensions.Self
|
|
2434
2456
|
"""
|
|
2435
2457
|
|
|
2436
|
-
xxzz:
|
|
2458
|
+
xxzz: typing_extensions.Self
|
|
2437
2459
|
"""
|
|
2438
2460
|
|
|
2439
|
-
:type:
|
|
2461
|
+
:type: typing_extensions.Self
|
|
2440
2462
|
"""
|
|
2441
2463
|
|
|
2442
|
-
xy:
|
|
2464
|
+
xy: typing_extensions.Self
|
|
2443
2465
|
"""
|
|
2444
2466
|
|
|
2445
|
-
:type:
|
|
2467
|
+
:type: typing_extensions.Self
|
|
2446
2468
|
"""
|
|
2447
2469
|
|
|
2448
|
-
xyw:
|
|
2470
|
+
xyw: typing_extensions.Self
|
|
2449
2471
|
"""
|
|
2450
2472
|
|
|
2451
|
-
:type:
|
|
2473
|
+
:type: typing_extensions.Self
|
|
2452
2474
|
"""
|
|
2453
2475
|
|
|
2454
|
-
xyww:
|
|
2476
|
+
xyww: typing_extensions.Self
|
|
2455
2477
|
"""
|
|
2456
2478
|
|
|
2457
|
-
:type:
|
|
2479
|
+
:type: typing_extensions.Self
|
|
2458
2480
|
"""
|
|
2459
2481
|
|
|
2460
|
-
xywx:
|
|
2482
|
+
xywx: typing_extensions.Self
|
|
2461
2483
|
"""
|
|
2462
2484
|
|
|
2463
|
-
:type:
|
|
2485
|
+
:type: typing_extensions.Self
|
|
2464
2486
|
"""
|
|
2465
2487
|
|
|
2466
|
-
xywy:
|
|
2488
|
+
xywy: typing_extensions.Self
|
|
2467
2489
|
"""
|
|
2468
2490
|
|
|
2469
|
-
:type:
|
|
2491
|
+
:type: typing_extensions.Self
|
|
2470
2492
|
"""
|
|
2471
2493
|
|
|
2472
|
-
xywz:
|
|
2494
|
+
xywz: typing_extensions.Self
|
|
2473
2495
|
"""
|
|
2474
2496
|
|
|
2475
|
-
:type:
|
|
2497
|
+
:type: typing_extensions.Self
|
|
2476
2498
|
"""
|
|
2477
2499
|
|
|
2478
|
-
xyx:
|
|
2500
|
+
xyx: typing_extensions.Self
|
|
2479
2501
|
"""
|
|
2480
2502
|
|
|
2481
|
-
:type:
|
|
2503
|
+
:type: typing_extensions.Self
|
|
2482
2504
|
"""
|
|
2483
2505
|
|
|
2484
|
-
xyxw:
|
|
2506
|
+
xyxw: typing_extensions.Self
|
|
2485
2507
|
"""
|
|
2486
2508
|
|
|
2487
|
-
:type:
|
|
2509
|
+
:type: typing_extensions.Self
|
|
2488
2510
|
"""
|
|
2489
2511
|
|
|
2490
|
-
xyxx:
|
|
2512
|
+
xyxx: typing_extensions.Self
|
|
2491
2513
|
"""
|
|
2492
2514
|
|
|
2493
|
-
:type:
|
|
2515
|
+
:type: typing_extensions.Self
|
|
2494
2516
|
"""
|
|
2495
2517
|
|
|
2496
|
-
xyxy:
|
|
2518
|
+
xyxy: typing_extensions.Self
|
|
2497
2519
|
"""
|
|
2498
2520
|
|
|
2499
|
-
:type:
|
|
2521
|
+
:type: typing_extensions.Self
|
|
2500
2522
|
"""
|
|
2501
2523
|
|
|
2502
|
-
xyxz:
|
|
2524
|
+
xyxz: typing_extensions.Self
|
|
2503
2525
|
"""
|
|
2504
2526
|
|
|
2505
|
-
:type:
|
|
2527
|
+
:type: typing_extensions.Self
|
|
2506
2528
|
"""
|
|
2507
2529
|
|
|
2508
|
-
xyy:
|
|
2530
|
+
xyy: typing_extensions.Self
|
|
2509
2531
|
"""
|
|
2510
2532
|
|
|
2511
|
-
:type:
|
|
2533
|
+
:type: typing_extensions.Self
|
|
2512
2534
|
"""
|
|
2513
2535
|
|
|
2514
|
-
xyyw:
|
|
2536
|
+
xyyw: typing_extensions.Self
|
|
2515
2537
|
"""
|
|
2516
2538
|
|
|
2517
|
-
:type:
|
|
2539
|
+
:type: typing_extensions.Self
|
|
2518
2540
|
"""
|
|
2519
2541
|
|
|
2520
|
-
xyyx:
|
|
2542
|
+
xyyx: typing_extensions.Self
|
|
2521
2543
|
"""
|
|
2522
2544
|
|
|
2523
|
-
:type:
|
|
2545
|
+
:type: typing_extensions.Self
|
|
2524
2546
|
"""
|
|
2525
2547
|
|
|
2526
|
-
xyyy:
|
|
2548
|
+
xyyy: typing_extensions.Self
|
|
2527
2549
|
"""
|
|
2528
2550
|
|
|
2529
|
-
:type:
|
|
2551
|
+
:type: typing_extensions.Self
|
|
2530
2552
|
"""
|
|
2531
2553
|
|
|
2532
|
-
xyyz:
|
|
2554
|
+
xyyz: typing_extensions.Self
|
|
2533
2555
|
"""
|
|
2534
2556
|
|
|
2535
|
-
:type:
|
|
2557
|
+
:type: typing_extensions.Self
|
|
2536
2558
|
"""
|
|
2537
2559
|
|
|
2538
|
-
xyz:
|
|
2560
|
+
xyz: typing_extensions.Self
|
|
2539
2561
|
"""
|
|
2540
2562
|
|
|
2541
|
-
:type:
|
|
2563
|
+
:type: typing_extensions.Self
|
|
2542
2564
|
"""
|
|
2543
2565
|
|
|
2544
|
-
xyzw:
|
|
2566
|
+
xyzw: typing_extensions.Self
|
|
2545
2567
|
"""
|
|
2546
2568
|
|
|
2547
|
-
:type:
|
|
2569
|
+
:type: typing_extensions.Self
|
|
2548
2570
|
"""
|
|
2549
2571
|
|
|
2550
|
-
xyzx:
|
|
2572
|
+
xyzx: typing_extensions.Self
|
|
2551
2573
|
"""
|
|
2552
2574
|
|
|
2553
|
-
:type:
|
|
2575
|
+
:type: typing_extensions.Self
|
|
2554
2576
|
"""
|
|
2555
2577
|
|
|
2556
|
-
xyzy:
|
|
2578
|
+
xyzy: typing_extensions.Self
|
|
2557
2579
|
"""
|
|
2558
2580
|
|
|
2559
|
-
:type:
|
|
2581
|
+
:type: typing_extensions.Self
|
|
2560
2582
|
"""
|
|
2561
2583
|
|
|
2562
|
-
xyzz:
|
|
2584
|
+
xyzz: typing_extensions.Self
|
|
2563
2585
|
"""
|
|
2564
2586
|
|
|
2565
|
-
:type:
|
|
2587
|
+
:type: typing_extensions.Self
|
|
2566
2588
|
"""
|
|
2567
2589
|
|
|
2568
|
-
xz:
|
|
2590
|
+
xz: typing_extensions.Self
|
|
2569
2591
|
"""
|
|
2570
2592
|
|
|
2571
|
-
:type:
|
|
2593
|
+
:type: typing_extensions.Self
|
|
2572
2594
|
"""
|
|
2573
2595
|
|
|
2574
|
-
xzw:
|
|
2596
|
+
xzw: typing_extensions.Self
|
|
2575
2597
|
"""
|
|
2576
2598
|
|
|
2577
|
-
:type:
|
|
2599
|
+
:type: typing_extensions.Self
|
|
2578
2600
|
"""
|
|
2579
2601
|
|
|
2580
|
-
xzww:
|
|
2602
|
+
xzww: typing_extensions.Self
|
|
2581
2603
|
"""
|
|
2582
2604
|
|
|
2583
|
-
:type:
|
|
2605
|
+
:type: typing_extensions.Self
|
|
2584
2606
|
"""
|
|
2585
2607
|
|
|
2586
|
-
xzwx:
|
|
2608
|
+
xzwx: typing_extensions.Self
|
|
2587
2609
|
"""
|
|
2588
2610
|
|
|
2589
|
-
:type:
|
|
2611
|
+
:type: typing_extensions.Self
|
|
2590
2612
|
"""
|
|
2591
2613
|
|
|
2592
|
-
xzwy:
|
|
2614
|
+
xzwy: typing_extensions.Self
|
|
2593
2615
|
"""
|
|
2594
2616
|
|
|
2595
|
-
:type:
|
|
2617
|
+
:type: typing_extensions.Self
|
|
2596
2618
|
"""
|
|
2597
2619
|
|
|
2598
|
-
xzwz:
|
|
2620
|
+
xzwz: typing_extensions.Self
|
|
2599
2621
|
"""
|
|
2600
2622
|
|
|
2601
|
-
:type:
|
|
2623
|
+
:type: typing_extensions.Self
|
|
2602
2624
|
"""
|
|
2603
2625
|
|
|
2604
|
-
xzx:
|
|
2626
|
+
xzx: typing_extensions.Self
|
|
2605
2627
|
"""
|
|
2606
2628
|
|
|
2607
|
-
:type:
|
|
2629
|
+
:type: typing_extensions.Self
|
|
2608
2630
|
"""
|
|
2609
2631
|
|
|
2610
|
-
xzxw:
|
|
2632
|
+
xzxw: typing_extensions.Self
|
|
2611
2633
|
"""
|
|
2612
2634
|
|
|
2613
|
-
:type:
|
|
2635
|
+
:type: typing_extensions.Self
|
|
2614
2636
|
"""
|
|
2615
2637
|
|
|
2616
|
-
xzxx:
|
|
2638
|
+
xzxx: typing_extensions.Self
|
|
2617
2639
|
"""
|
|
2618
2640
|
|
|
2619
|
-
:type:
|
|
2641
|
+
:type: typing_extensions.Self
|
|
2620
2642
|
"""
|
|
2621
2643
|
|
|
2622
|
-
xzxy:
|
|
2644
|
+
xzxy: typing_extensions.Self
|
|
2623
2645
|
"""
|
|
2624
2646
|
|
|
2625
|
-
:type:
|
|
2647
|
+
:type: typing_extensions.Self
|
|
2626
2648
|
"""
|
|
2627
2649
|
|
|
2628
|
-
xzxz:
|
|
2650
|
+
xzxz: typing_extensions.Self
|
|
2629
2651
|
"""
|
|
2630
2652
|
|
|
2631
|
-
:type:
|
|
2653
|
+
:type: typing_extensions.Self
|
|
2632
2654
|
"""
|
|
2633
2655
|
|
|
2634
|
-
xzy:
|
|
2656
|
+
xzy: typing_extensions.Self
|
|
2635
2657
|
"""
|
|
2636
2658
|
|
|
2637
|
-
:type:
|
|
2659
|
+
:type: typing_extensions.Self
|
|
2638
2660
|
"""
|
|
2639
2661
|
|
|
2640
|
-
xzyw:
|
|
2662
|
+
xzyw: typing_extensions.Self
|
|
2641
2663
|
"""
|
|
2642
2664
|
|
|
2643
|
-
:type:
|
|
2665
|
+
:type: typing_extensions.Self
|
|
2644
2666
|
"""
|
|
2645
2667
|
|
|
2646
|
-
xzyx:
|
|
2668
|
+
xzyx: typing_extensions.Self
|
|
2647
2669
|
"""
|
|
2648
2670
|
|
|
2649
|
-
:type:
|
|
2671
|
+
:type: typing_extensions.Self
|
|
2650
2672
|
"""
|
|
2651
2673
|
|
|
2652
|
-
xzyy:
|
|
2674
|
+
xzyy: typing_extensions.Self
|
|
2653
2675
|
"""
|
|
2654
2676
|
|
|
2655
|
-
:type:
|
|
2677
|
+
:type: typing_extensions.Self
|
|
2656
2678
|
"""
|
|
2657
2679
|
|
|
2658
|
-
xzyz:
|
|
2680
|
+
xzyz: typing_extensions.Self
|
|
2659
2681
|
"""
|
|
2660
2682
|
|
|
2661
|
-
:type:
|
|
2683
|
+
:type: typing_extensions.Self
|
|
2662
2684
|
"""
|
|
2663
2685
|
|
|
2664
|
-
xzz:
|
|
2686
|
+
xzz: typing_extensions.Self
|
|
2665
2687
|
"""
|
|
2666
2688
|
|
|
2667
|
-
:type:
|
|
2689
|
+
:type: typing_extensions.Self
|
|
2668
2690
|
"""
|
|
2669
2691
|
|
|
2670
|
-
xzzw:
|
|
2692
|
+
xzzw: typing_extensions.Self
|
|
2671
2693
|
"""
|
|
2672
2694
|
|
|
2673
|
-
:type:
|
|
2695
|
+
:type: typing_extensions.Self
|
|
2674
2696
|
"""
|
|
2675
2697
|
|
|
2676
|
-
xzzx:
|
|
2698
|
+
xzzx: typing_extensions.Self
|
|
2677
2699
|
"""
|
|
2678
2700
|
|
|
2679
|
-
:type:
|
|
2701
|
+
:type: typing_extensions.Self
|
|
2680
2702
|
"""
|
|
2681
2703
|
|
|
2682
|
-
xzzy:
|
|
2704
|
+
xzzy: typing_extensions.Self
|
|
2683
2705
|
"""
|
|
2684
2706
|
|
|
2685
|
-
:type:
|
|
2707
|
+
:type: typing_extensions.Self
|
|
2686
2708
|
"""
|
|
2687
2709
|
|
|
2688
|
-
xzzz:
|
|
2710
|
+
xzzz: typing_extensions.Self
|
|
2689
2711
|
"""
|
|
2690
2712
|
|
|
2691
|
-
:type:
|
|
2713
|
+
:type: typing_extensions.Self
|
|
2692
2714
|
"""
|
|
2693
2715
|
|
|
2694
2716
|
y: float
|
|
@@ -2697,508 +2719,508 @@ class Vector:
|
|
|
2697
2719
|
:type: float
|
|
2698
2720
|
"""
|
|
2699
2721
|
|
|
2700
|
-
yw:
|
|
2722
|
+
yw: typing_extensions.Self
|
|
2701
2723
|
"""
|
|
2702
2724
|
|
|
2703
|
-
:type:
|
|
2725
|
+
:type: typing_extensions.Self
|
|
2704
2726
|
"""
|
|
2705
2727
|
|
|
2706
|
-
yww:
|
|
2728
|
+
yww: typing_extensions.Self
|
|
2707
2729
|
"""
|
|
2708
2730
|
|
|
2709
|
-
:type:
|
|
2731
|
+
:type: typing_extensions.Self
|
|
2710
2732
|
"""
|
|
2711
2733
|
|
|
2712
|
-
ywww:
|
|
2734
|
+
ywww: typing_extensions.Self
|
|
2713
2735
|
"""
|
|
2714
2736
|
|
|
2715
|
-
:type:
|
|
2737
|
+
:type: typing_extensions.Self
|
|
2716
2738
|
"""
|
|
2717
2739
|
|
|
2718
|
-
ywwx:
|
|
2740
|
+
ywwx: typing_extensions.Self
|
|
2719
2741
|
"""
|
|
2720
2742
|
|
|
2721
|
-
:type:
|
|
2743
|
+
:type: typing_extensions.Self
|
|
2722
2744
|
"""
|
|
2723
2745
|
|
|
2724
|
-
ywwy:
|
|
2746
|
+
ywwy: typing_extensions.Self
|
|
2725
2747
|
"""
|
|
2726
2748
|
|
|
2727
|
-
:type:
|
|
2749
|
+
:type: typing_extensions.Self
|
|
2728
2750
|
"""
|
|
2729
2751
|
|
|
2730
|
-
ywwz:
|
|
2752
|
+
ywwz: typing_extensions.Self
|
|
2731
2753
|
"""
|
|
2732
2754
|
|
|
2733
|
-
:type:
|
|
2755
|
+
:type: typing_extensions.Self
|
|
2734
2756
|
"""
|
|
2735
2757
|
|
|
2736
|
-
ywx:
|
|
2758
|
+
ywx: typing_extensions.Self
|
|
2737
2759
|
"""
|
|
2738
2760
|
|
|
2739
|
-
:type:
|
|
2761
|
+
:type: typing_extensions.Self
|
|
2740
2762
|
"""
|
|
2741
2763
|
|
|
2742
|
-
ywxw:
|
|
2764
|
+
ywxw: typing_extensions.Self
|
|
2743
2765
|
"""
|
|
2744
2766
|
|
|
2745
|
-
:type:
|
|
2767
|
+
:type: typing_extensions.Self
|
|
2746
2768
|
"""
|
|
2747
2769
|
|
|
2748
|
-
ywxx:
|
|
2770
|
+
ywxx: typing_extensions.Self
|
|
2749
2771
|
"""
|
|
2750
2772
|
|
|
2751
|
-
:type:
|
|
2773
|
+
:type: typing_extensions.Self
|
|
2752
2774
|
"""
|
|
2753
2775
|
|
|
2754
|
-
ywxy:
|
|
2776
|
+
ywxy: typing_extensions.Self
|
|
2755
2777
|
"""
|
|
2756
2778
|
|
|
2757
|
-
:type:
|
|
2779
|
+
:type: typing_extensions.Self
|
|
2758
2780
|
"""
|
|
2759
2781
|
|
|
2760
|
-
ywxz:
|
|
2782
|
+
ywxz: typing_extensions.Self
|
|
2761
2783
|
"""
|
|
2762
2784
|
|
|
2763
|
-
:type:
|
|
2785
|
+
:type: typing_extensions.Self
|
|
2764
2786
|
"""
|
|
2765
2787
|
|
|
2766
|
-
ywy:
|
|
2788
|
+
ywy: typing_extensions.Self
|
|
2767
2789
|
"""
|
|
2768
2790
|
|
|
2769
|
-
:type:
|
|
2791
|
+
:type: typing_extensions.Self
|
|
2770
2792
|
"""
|
|
2771
2793
|
|
|
2772
|
-
ywyw:
|
|
2794
|
+
ywyw: typing_extensions.Self
|
|
2773
2795
|
"""
|
|
2774
2796
|
|
|
2775
|
-
:type:
|
|
2797
|
+
:type: typing_extensions.Self
|
|
2776
2798
|
"""
|
|
2777
2799
|
|
|
2778
|
-
ywyx:
|
|
2800
|
+
ywyx: typing_extensions.Self
|
|
2779
2801
|
"""
|
|
2780
2802
|
|
|
2781
|
-
:type:
|
|
2803
|
+
:type: typing_extensions.Self
|
|
2782
2804
|
"""
|
|
2783
2805
|
|
|
2784
|
-
ywyy:
|
|
2806
|
+
ywyy: typing_extensions.Self
|
|
2785
2807
|
"""
|
|
2786
2808
|
|
|
2787
|
-
:type:
|
|
2809
|
+
:type: typing_extensions.Self
|
|
2788
2810
|
"""
|
|
2789
2811
|
|
|
2790
|
-
ywyz:
|
|
2812
|
+
ywyz: typing_extensions.Self
|
|
2791
2813
|
"""
|
|
2792
2814
|
|
|
2793
|
-
:type:
|
|
2815
|
+
:type: typing_extensions.Self
|
|
2794
2816
|
"""
|
|
2795
2817
|
|
|
2796
|
-
ywz:
|
|
2818
|
+
ywz: typing_extensions.Self
|
|
2797
2819
|
"""
|
|
2798
2820
|
|
|
2799
|
-
:type:
|
|
2821
|
+
:type: typing_extensions.Self
|
|
2800
2822
|
"""
|
|
2801
2823
|
|
|
2802
|
-
ywzw:
|
|
2824
|
+
ywzw: typing_extensions.Self
|
|
2803
2825
|
"""
|
|
2804
2826
|
|
|
2805
|
-
:type:
|
|
2827
|
+
:type: typing_extensions.Self
|
|
2806
2828
|
"""
|
|
2807
2829
|
|
|
2808
|
-
ywzx:
|
|
2830
|
+
ywzx: typing_extensions.Self
|
|
2809
2831
|
"""
|
|
2810
2832
|
|
|
2811
|
-
:type:
|
|
2833
|
+
:type: typing_extensions.Self
|
|
2812
2834
|
"""
|
|
2813
2835
|
|
|
2814
|
-
ywzy:
|
|
2836
|
+
ywzy: typing_extensions.Self
|
|
2815
2837
|
"""
|
|
2816
2838
|
|
|
2817
|
-
:type:
|
|
2839
|
+
:type: typing_extensions.Self
|
|
2818
2840
|
"""
|
|
2819
2841
|
|
|
2820
|
-
ywzz:
|
|
2842
|
+
ywzz: typing_extensions.Self
|
|
2821
2843
|
"""
|
|
2822
2844
|
|
|
2823
|
-
:type:
|
|
2845
|
+
:type: typing_extensions.Self
|
|
2824
2846
|
"""
|
|
2825
2847
|
|
|
2826
|
-
yx:
|
|
2848
|
+
yx: typing_extensions.Self
|
|
2827
2849
|
"""
|
|
2828
2850
|
|
|
2829
|
-
:type:
|
|
2851
|
+
:type: typing_extensions.Self
|
|
2830
2852
|
"""
|
|
2831
2853
|
|
|
2832
|
-
yxw:
|
|
2854
|
+
yxw: typing_extensions.Self
|
|
2833
2855
|
"""
|
|
2834
2856
|
|
|
2835
|
-
:type:
|
|
2857
|
+
:type: typing_extensions.Self
|
|
2836
2858
|
"""
|
|
2837
2859
|
|
|
2838
|
-
yxww:
|
|
2860
|
+
yxww: typing_extensions.Self
|
|
2839
2861
|
"""
|
|
2840
2862
|
|
|
2841
|
-
:type:
|
|
2863
|
+
:type: typing_extensions.Self
|
|
2842
2864
|
"""
|
|
2843
2865
|
|
|
2844
|
-
yxwx:
|
|
2866
|
+
yxwx: typing_extensions.Self
|
|
2845
2867
|
"""
|
|
2846
2868
|
|
|
2847
|
-
:type:
|
|
2869
|
+
:type: typing_extensions.Self
|
|
2848
2870
|
"""
|
|
2849
2871
|
|
|
2850
|
-
yxwy:
|
|
2872
|
+
yxwy: typing_extensions.Self
|
|
2851
2873
|
"""
|
|
2852
2874
|
|
|
2853
|
-
:type:
|
|
2875
|
+
:type: typing_extensions.Self
|
|
2854
2876
|
"""
|
|
2855
2877
|
|
|
2856
|
-
yxwz:
|
|
2878
|
+
yxwz: typing_extensions.Self
|
|
2857
2879
|
"""
|
|
2858
2880
|
|
|
2859
|
-
:type:
|
|
2881
|
+
:type: typing_extensions.Self
|
|
2860
2882
|
"""
|
|
2861
2883
|
|
|
2862
|
-
yxx:
|
|
2884
|
+
yxx: typing_extensions.Self
|
|
2863
2885
|
"""
|
|
2864
2886
|
|
|
2865
|
-
:type:
|
|
2887
|
+
:type: typing_extensions.Self
|
|
2866
2888
|
"""
|
|
2867
2889
|
|
|
2868
|
-
yxxw:
|
|
2890
|
+
yxxw: typing_extensions.Self
|
|
2869
2891
|
"""
|
|
2870
2892
|
|
|
2871
|
-
:type:
|
|
2893
|
+
:type: typing_extensions.Self
|
|
2872
2894
|
"""
|
|
2873
2895
|
|
|
2874
|
-
yxxx:
|
|
2896
|
+
yxxx: typing_extensions.Self
|
|
2875
2897
|
"""
|
|
2876
2898
|
|
|
2877
|
-
:type:
|
|
2899
|
+
:type: typing_extensions.Self
|
|
2878
2900
|
"""
|
|
2879
2901
|
|
|
2880
|
-
yxxy:
|
|
2902
|
+
yxxy: typing_extensions.Self
|
|
2881
2903
|
"""
|
|
2882
2904
|
|
|
2883
|
-
:type:
|
|
2905
|
+
:type: typing_extensions.Self
|
|
2884
2906
|
"""
|
|
2885
2907
|
|
|
2886
|
-
yxxz:
|
|
2908
|
+
yxxz: typing_extensions.Self
|
|
2887
2909
|
"""
|
|
2888
2910
|
|
|
2889
|
-
:type:
|
|
2911
|
+
:type: typing_extensions.Self
|
|
2890
2912
|
"""
|
|
2891
2913
|
|
|
2892
|
-
yxy:
|
|
2914
|
+
yxy: typing_extensions.Self
|
|
2893
2915
|
"""
|
|
2894
2916
|
|
|
2895
|
-
:type:
|
|
2917
|
+
:type: typing_extensions.Self
|
|
2896
2918
|
"""
|
|
2897
2919
|
|
|
2898
|
-
yxyw:
|
|
2920
|
+
yxyw: typing_extensions.Self
|
|
2899
2921
|
"""
|
|
2900
2922
|
|
|
2901
|
-
:type:
|
|
2923
|
+
:type: typing_extensions.Self
|
|
2902
2924
|
"""
|
|
2903
2925
|
|
|
2904
|
-
yxyx:
|
|
2926
|
+
yxyx: typing_extensions.Self
|
|
2905
2927
|
"""
|
|
2906
2928
|
|
|
2907
|
-
:type:
|
|
2929
|
+
:type: typing_extensions.Self
|
|
2908
2930
|
"""
|
|
2909
2931
|
|
|
2910
|
-
yxyy:
|
|
2932
|
+
yxyy: typing_extensions.Self
|
|
2911
2933
|
"""
|
|
2912
2934
|
|
|
2913
|
-
:type:
|
|
2935
|
+
:type: typing_extensions.Self
|
|
2914
2936
|
"""
|
|
2915
2937
|
|
|
2916
|
-
yxyz:
|
|
2938
|
+
yxyz: typing_extensions.Self
|
|
2917
2939
|
"""
|
|
2918
2940
|
|
|
2919
|
-
:type:
|
|
2941
|
+
:type: typing_extensions.Self
|
|
2920
2942
|
"""
|
|
2921
2943
|
|
|
2922
|
-
yxz:
|
|
2944
|
+
yxz: typing_extensions.Self
|
|
2923
2945
|
"""
|
|
2924
2946
|
|
|
2925
|
-
:type:
|
|
2947
|
+
:type: typing_extensions.Self
|
|
2926
2948
|
"""
|
|
2927
2949
|
|
|
2928
|
-
yxzw:
|
|
2950
|
+
yxzw: typing_extensions.Self
|
|
2929
2951
|
"""
|
|
2930
2952
|
|
|
2931
|
-
:type:
|
|
2953
|
+
:type: typing_extensions.Self
|
|
2932
2954
|
"""
|
|
2933
2955
|
|
|
2934
|
-
yxzx:
|
|
2956
|
+
yxzx: typing_extensions.Self
|
|
2935
2957
|
"""
|
|
2936
2958
|
|
|
2937
|
-
:type:
|
|
2959
|
+
:type: typing_extensions.Self
|
|
2938
2960
|
"""
|
|
2939
2961
|
|
|
2940
|
-
yxzy:
|
|
2962
|
+
yxzy: typing_extensions.Self
|
|
2941
2963
|
"""
|
|
2942
2964
|
|
|
2943
|
-
:type:
|
|
2965
|
+
:type: typing_extensions.Self
|
|
2944
2966
|
"""
|
|
2945
2967
|
|
|
2946
|
-
yxzz:
|
|
2968
|
+
yxzz: typing_extensions.Self
|
|
2947
2969
|
"""
|
|
2948
2970
|
|
|
2949
|
-
:type:
|
|
2971
|
+
:type: typing_extensions.Self
|
|
2950
2972
|
"""
|
|
2951
2973
|
|
|
2952
|
-
yy:
|
|
2974
|
+
yy: typing_extensions.Self
|
|
2953
2975
|
"""
|
|
2954
2976
|
|
|
2955
|
-
:type:
|
|
2977
|
+
:type: typing_extensions.Self
|
|
2956
2978
|
"""
|
|
2957
2979
|
|
|
2958
|
-
yyw:
|
|
2980
|
+
yyw: typing_extensions.Self
|
|
2959
2981
|
"""
|
|
2960
2982
|
|
|
2961
|
-
:type:
|
|
2983
|
+
:type: typing_extensions.Self
|
|
2962
2984
|
"""
|
|
2963
2985
|
|
|
2964
|
-
yyww:
|
|
2986
|
+
yyww: typing_extensions.Self
|
|
2965
2987
|
"""
|
|
2966
2988
|
|
|
2967
|
-
:type:
|
|
2989
|
+
:type: typing_extensions.Self
|
|
2968
2990
|
"""
|
|
2969
2991
|
|
|
2970
|
-
yywx:
|
|
2992
|
+
yywx: typing_extensions.Self
|
|
2971
2993
|
"""
|
|
2972
2994
|
|
|
2973
|
-
:type:
|
|
2995
|
+
:type: typing_extensions.Self
|
|
2974
2996
|
"""
|
|
2975
2997
|
|
|
2976
|
-
yywy:
|
|
2998
|
+
yywy: typing_extensions.Self
|
|
2977
2999
|
"""
|
|
2978
3000
|
|
|
2979
|
-
:type:
|
|
3001
|
+
:type: typing_extensions.Self
|
|
2980
3002
|
"""
|
|
2981
3003
|
|
|
2982
|
-
yywz:
|
|
3004
|
+
yywz: typing_extensions.Self
|
|
2983
3005
|
"""
|
|
2984
3006
|
|
|
2985
|
-
:type:
|
|
3007
|
+
:type: typing_extensions.Self
|
|
2986
3008
|
"""
|
|
2987
3009
|
|
|
2988
|
-
yyx:
|
|
3010
|
+
yyx: typing_extensions.Self
|
|
2989
3011
|
"""
|
|
2990
3012
|
|
|
2991
|
-
:type:
|
|
3013
|
+
:type: typing_extensions.Self
|
|
2992
3014
|
"""
|
|
2993
3015
|
|
|
2994
|
-
yyxw:
|
|
3016
|
+
yyxw: typing_extensions.Self
|
|
2995
3017
|
"""
|
|
2996
3018
|
|
|
2997
|
-
:type:
|
|
3019
|
+
:type: typing_extensions.Self
|
|
2998
3020
|
"""
|
|
2999
3021
|
|
|
3000
|
-
yyxx:
|
|
3022
|
+
yyxx: typing_extensions.Self
|
|
3001
3023
|
"""
|
|
3002
3024
|
|
|
3003
|
-
:type:
|
|
3025
|
+
:type: typing_extensions.Self
|
|
3004
3026
|
"""
|
|
3005
3027
|
|
|
3006
|
-
yyxy:
|
|
3028
|
+
yyxy: typing_extensions.Self
|
|
3007
3029
|
"""
|
|
3008
3030
|
|
|
3009
|
-
:type:
|
|
3031
|
+
:type: typing_extensions.Self
|
|
3010
3032
|
"""
|
|
3011
3033
|
|
|
3012
|
-
yyxz:
|
|
3034
|
+
yyxz: typing_extensions.Self
|
|
3013
3035
|
"""
|
|
3014
3036
|
|
|
3015
|
-
:type:
|
|
3037
|
+
:type: typing_extensions.Self
|
|
3016
3038
|
"""
|
|
3017
3039
|
|
|
3018
|
-
yyy:
|
|
3040
|
+
yyy: typing_extensions.Self
|
|
3019
3041
|
"""
|
|
3020
3042
|
|
|
3021
|
-
:type:
|
|
3043
|
+
:type: typing_extensions.Self
|
|
3022
3044
|
"""
|
|
3023
3045
|
|
|
3024
|
-
yyyw:
|
|
3046
|
+
yyyw: typing_extensions.Self
|
|
3025
3047
|
"""
|
|
3026
3048
|
|
|
3027
|
-
:type:
|
|
3049
|
+
:type: typing_extensions.Self
|
|
3028
3050
|
"""
|
|
3029
3051
|
|
|
3030
|
-
yyyx:
|
|
3052
|
+
yyyx: typing_extensions.Self
|
|
3031
3053
|
"""
|
|
3032
3054
|
|
|
3033
|
-
:type:
|
|
3055
|
+
:type: typing_extensions.Self
|
|
3034
3056
|
"""
|
|
3035
3057
|
|
|
3036
|
-
yyyy:
|
|
3058
|
+
yyyy: typing_extensions.Self
|
|
3037
3059
|
"""
|
|
3038
3060
|
|
|
3039
|
-
:type:
|
|
3061
|
+
:type: typing_extensions.Self
|
|
3040
3062
|
"""
|
|
3041
3063
|
|
|
3042
|
-
yyyz:
|
|
3064
|
+
yyyz: typing_extensions.Self
|
|
3043
3065
|
"""
|
|
3044
3066
|
|
|
3045
|
-
:type:
|
|
3067
|
+
:type: typing_extensions.Self
|
|
3046
3068
|
"""
|
|
3047
3069
|
|
|
3048
|
-
yyz:
|
|
3070
|
+
yyz: typing_extensions.Self
|
|
3049
3071
|
"""
|
|
3050
3072
|
|
|
3051
|
-
:type:
|
|
3073
|
+
:type: typing_extensions.Self
|
|
3052
3074
|
"""
|
|
3053
3075
|
|
|
3054
|
-
yyzw:
|
|
3076
|
+
yyzw: typing_extensions.Self
|
|
3055
3077
|
"""
|
|
3056
3078
|
|
|
3057
|
-
:type:
|
|
3079
|
+
:type: typing_extensions.Self
|
|
3058
3080
|
"""
|
|
3059
3081
|
|
|
3060
|
-
yyzx:
|
|
3082
|
+
yyzx: typing_extensions.Self
|
|
3061
3083
|
"""
|
|
3062
3084
|
|
|
3063
|
-
:type:
|
|
3085
|
+
:type: typing_extensions.Self
|
|
3064
3086
|
"""
|
|
3065
3087
|
|
|
3066
|
-
yyzy:
|
|
3088
|
+
yyzy: typing_extensions.Self
|
|
3067
3089
|
"""
|
|
3068
3090
|
|
|
3069
|
-
:type:
|
|
3091
|
+
:type: typing_extensions.Self
|
|
3070
3092
|
"""
|
|
3071
3093
|
|
|
3072
|
-
yyzz:
|
|
3094
|
+
yyzz: typing_extensions.Self
|
|
3073
3095
|
"""
|
|
3074
3096
|
|
|
3075
|
-
:type:
|
|
3097
|
+
:type: typing_extensions.Self
|
|
3076
3098
|
"""
|
|
3077
3099
|
|
|
3078
|
-
yz:
|
|
3100
|
+
yz: typing_extensions.Self
|
|
3079
3101
|
"""
|
|
3080
3102
|
|
|
3081
|
-
:type:
|
|
3103
|
+
:type: typing_extensions.Self
|
|
3082
3104
|
"""
|
|
3083
3105
|
|
|
3084
|
-
yzw:
|
|
3106
|
+
yzw: typing_extensions.Self
|
|
3085
3107
|
"""
|
|
3086
3108
|
|
|
3087
|
-
:type:
|
|
3109
|
+
:type: typing_extensions.Self
|
|
3088
3110
|
"""
|
|
3089
3111
|
|
|
3090
|
-
yzww:
|
|
3112
|
+
yzww: typing_extensions.Self
|
|
3091
3113
|
"""
|
|
3092
3114
|
|
|
3093
|
-
:type:
|
|
3115
|
+
:type: typing_extensions.Self
|
|
3094
3116
|
"""
|
|
3095
3117
|
|
|
3096
|
-
yzwx:
|
|
3118
|
+
yzwx: typing_extensions.Self
|
|
3097
3119
|
"""
|
|
3098
3120
|
|
|
3099
|
-
:type:
|
|
3121
|
+
:type: typing_extensions.Self
|
|
3100
3122
|
"""
|
|
3101
3123
|
|
|
3102
|
-
yzwy:
|
|
3124
|
+
yzwy: typing_extensions.Self
|
|
3103
3125
|
"""
|
|
3104
3126
|
|
|
3105
|
-
:type:
|
|
3127
|
+
:type: typing_extensions.Self
|
|
3106
3128
|
"""
|
|
3107
3129
|
|
|
3108
|
-
yzwz:
|
|
3130
|
+
yzwz: typing_extensions.Self
|
|
3109
3131
|
"""
|
|
3110
3132
|
|
|
3111
|
-
:type:
|
|
3133
|
+
:type: typing_extensions.Self
|
|
3112
3134
|
"""
|
|
3113
3135
|
|
|
3114
|
-
yzx:
|
|
3136
|
+
yzx: typing_extensions.Self
|
|
3115
3137
|
"""
|
|
3116
3138
|
|
|
3117
|
-
:type:
|
|
3139
|
+
:type: typing_extensions.Self
|
|
3118
3140
|
"""
|
|
3119
3141
|
|
|
3120
|
-
yzxw:
|
|
3142
|
+
yzxw: typing_extensions.Self
|
|
3121
3143
|
"""
|
|
3122
3144
|
|
|
3123
|
-
:type:
|
|
3145
|
+
:type: typing_extensions.Self
|
|
3124
3146
|
"""
|
|
3125
3147
|
|
|
3126
|
-
yzxx:
|
|
3148
|
+
yzxx: typing_extensions.Self
|
|
3127
3149
|
"""
|
|
3128
3150
|
|
|
3129
|
-
:type:
|
|
3151
|
+
:type: typing_extensions.Self
|
|
3130
3152
|
"""
|
|
3131
3153
|
|
|
3132
|
-
yzxy:
|
|
3154
|
+
yzxy: typing_extensions.Self
|
|
3133
3155
|
"""
|
|
3134
3156
|
|
|
3135
|
-
:type:
|
|
3157
|
+
:type: typing_extensions.Self
|
|
3136
3158
|
"""
|
|
3137
3159
|
|
|
3138
|
-
yzxz:
|
|
3160
|
+
yzxz: typing_extensions.Self
|
|
3139
3161
|
"""
|
|
3140
3162
|
|
|
3141
|
-
:type:
|
|
3163
|
+
:type: typing_extensions.Self
|
|
3142
3164
|
"""
|
|
3143
3165
|
|
|
3144
|
-
yzy:
|
|
3166
|
+
yzy: typing_extensions.Self
|
|
3145
3167
|
"""
|
|
3146
3168
|
|
|
3147
|
-
:type:
|
|
3169
|
+
:type: typing_extensions.Self
|
|
3148
3170
|
"""
|
|
3149
3171
|
|
|
3150
|
-
yzyw:
|
|
3172
|
+
yzyw: typing_extensions.Self
|
|
3151
3173
|
"""
|
|
3152
3174
|
|
|
3153
|
-
:type:
|
|
3175
|
+
:type: typing_extensions.Self
|
|
3154
3176
|
"""
|
|
3155
3177
|
|
|
3156
|
-
yzyx:
|
|
3178
|
+
yzyx: typing_extensions.Self
|
|
3157
3179
|
"""
|
|
3158
3180
|
|
|
3159
|
-
:type:
|
|
3181
|
+
:type: typing_extensions.Self
|
|
3160
3182
|
"""
|
|
3161
3183
|
|
|
3162
|
-
yzyy:
|
|
3184
|
+
yzyy: typing_extensions.Self
|
|
3163
3185
|
"""
|
|
3164
3186
|
|
|
3165
|
-
:type:
|
|
3187
|
+
:type: typing_extensions.Self
|
|
3166
3188
|
"""
|
|
3167
3189
|
|
|
3168
|
-
yzyz:
|
|
3190
|
+
yzyz: typing_extensions.Self
|
|
3169
3191
|
"""
|
|
3170
3192
|
|
|
3171
|
-
:type:
|
|
3193
|
+
:type: typing_extensions.Self
|
|
3172
3194
|
"""
|
|
3173
3195
|
|
|
3174
|
-
yzz:
|
|
3196
|
+
yzz: typing_extensions.Self
|
|
3175
3197
|
"""
|
|
3176
3198
|
|
|
3177
|
-
:type:
|
|
3199
|
+
:type: typing_extensions.Self
|
|
3178
3200
|
"""
|
|
3179
3201
|
|
|
3180
|
-
yzzw:
|
|
3202
|
+
yzzw: typing_extensions.Self
|
|
3181
3203
|
"""
|
|
3182
3204
|
|
|
3183
|
-
:type:
|
|
3205
|
+
:type: typing_extensions.Self
|
|
3184
3206
|
"""
|
|
3185
3207
|
|
|
3186
|
-
yzzx:
|
|
3208
|
+
yzzx: typing_extensions.Self
|
|
3187
3209
|
"""
|
|
3188
3210
|
|
|
3189
|
-
:type:
|
|
3211
|
+
:type: typing_extensions.Self
|
|
3190
3212
|
"""
|
|
3191
3213
|
|
|
3192
|
-
yzzy:
|
|
3214
|
+
yzzy: typing_extensions.Self
|
|
3193
3215
|
"""
|
|
3194
3216
|
|
|
3195
|
-
:type:
|
|
3217
|
+
:type: typing_extensions.Self
|
|
3196
3218
|
"""
|
|
3197
3219
|
|
|
3198
|
-
yzzz:
|
|
3220
|
+
yzzz: typing_extensions.Self
|
|
3199
3221
|
"""
|
|
3200
3222
|
|
|
3201
|
-
:type:
|
|
3223
|
+
:type: typing_extensions.Self
|
|
3202
3224
|
"""
|
|
3203
3225
|
|
|
3204
3226
|
z: float
|
|
@@ -3207,508 +3229,508 @@ class Vector:
|
|
|
3207
3229
|
:type: float
|
|
3208
3230
|
"""
|
|
3209
3231
|
|
|
3210
|
-
zw:
|
|
3232
|
+
zw: typing_extensions.Self
|
|
3211
3233
|
"""
|
|
3212
3234
|
|
|
3213
|
-
:type:
|
|
3235
|
+
:type: typing_extensions.Self
|
|
3214
3236
|
"""
|
|
3215
3237
|
|
|
3216
|
-
zww:
|
|
3238
|
+
zww: typing_extensions.Self
|
|
3217
3239
|
"""
|
|
3218
3240
|
|
|
3219
|
-
:type:
|
|
3241
|
+
:type: typing_extensions.Self
|
|
3220
3242
|
"""
|
|
3221
3243
|
|
|
3222
|
-
zwww:
|
|
3244
|
+
zwww: typing_extensions.Self
|
|
3223
3245
|
"""
|
|
3224
3246
|
|
|
3225
|
-
:type:
|
|
3247
|
+
:type: typing_extensions.Self
|
|
3226
3248
|
"""
|
|
3227
3249
|
|
|
3228
|
-
zwwx:
|
|
3250
|
+
zwwx: typing_extensions.Self
|
|
3229
3251
|
"""
|
|
3230
3252
|
|
|
3231
|
-
:type:
|
|
3253
|
+
:type: typing_extensions.Self
|
|
3232
3254
|
"""
|
|
3233
3255
|
|
|
3234
|
-
zwwy:
|
|
3256
|
+
zwwy: typing_extensions.Self
|
|
3235
3257
|
"""
|
|
3236
3258
|
|
|
3237
|
-
:type:
|
|
3259
|
+
:type: typing_extensions.Self
|
|
3238
3260
|
"""
|
|
3239
3261
|
|
|
3240
|
-
zwwz:
|
|
3262
|
+
zwwz: typing_extensions.Self
|
|
3241
3263
|
"""
|
|
3242
3264
|
|
|
3243
|
-
:type:
|
|
3265
|
+
:type: typing_extensions.Self
|
|
3244
3266
|
"""
|
|
3245
3267
|
|
|
3246
|
-
zwx:
|
|
3268
|
+
zwx: typing_extensions.Self
|
|
3247
3269
|
"""
|
|
3248
3270
|
|
|
3249
|
-
:type:
|
|
3271
|
+
:type: typing_extensions.Self
|
|
3250
3272
|
"""
|
|
3251
3273
|
|
|
3252
|
-
zwxw:
|
|
3274
|
+
zwxw: typing_extensions.Self
|
|
3253
3275
|
"""
|
|
3254
3276
|
|
|
3255
|
-
:type:
|
|
3277
|
+
:type: typing_extensions.Self
|
|
3256
3278
|
"""
|
|
3257
3279
|
|
|
3258
|
-
zwxx:
|
|
3280
|
+
zwxx: typing_extensions.Self
|
|
3259
3281
|
"""
|
|
3260
3282
|
|
|
3261
|
-
:type:
|
|
3283
|
+
:type: typing_extensions.Self
|
|
3262
3284
|
"""
|
|
3263
3285
|
|
|
3264
|
-
zwxy:
|
|
3286
|
+
zwxy: typing_extensions.Self
|
|
3265
3287
|
"""
|
|
3266
3288
|
|
|
3267
|
-
:type:
|
|
3289
|
+
:type: typing_extensions.Self
|
|
3268
3290
|
"""
|
|
3269
3291
|
|
|
3270
|
-
zwxz:
|
|
3292
|
+
zwxz: typing_extensions.Self
|
|
3271
3293
|
"""
|
|
3272
3294
|
|
|
3273
|
-
:type:
|
|
3295
|
+
:type: typing_extensions.Self
|
|
3274
3296
|
"""
|
|
3275
3297
|
|
|
3276
|
-
zwy:
|
|
3298
|
+
zwy: typing_extensions.Self
|
|
3277
3299
|
"""
|
|
3278
3300
|
|
|
3279
|
-
:type:
|
|
3301
|
+
:type: typing_extensions.Self
|
|
3280
3302
|
"""
|
|
3281
3303
|
|
|
3282
|
-
zwyw:
|
|
3304
|
+
zwyw: typing_extensions.Self
|
|
3283
3305
|
"""
|
|
3284
3306
|
|
|
3285
|
-
:type:
|
|
3307
|
+
:type: typing_extensions.Self
|
|
3286
3308
|
"""
|
|
3287
3309
|
|
|
3288
|
-
zwyx:
|
|
3310
|
+
zwyx: typing_extensions.Self
|
|
3289
3311
|
"""
|
|
3290
3312
|
|
|
3291
|
-
:type:
|
|
3313
|
+
:type: typing_extensions.Self
|
|
3292
3314
|
"""
|
|
3293
3315
|
|
|
3294
|
-
zwyy:
|
|
3316
|
+
zwyy: typing_extensions.Self
|
|
3295
3317
|
"""
|
|
3296
3318
|
|
|
3297
|
-
:type:
|
|
3319
|
+
:type: typing_extensions.Self
|
|
3298
3320
|
"""
|
|
3299
3321
|
|
|
3300
|
-
zwyz:
|
|
3322
|
+
zwyz: typing_extensions.Self
|
|
3301
3323
|
"""
|
|
3302
3324
|
|
|
3303
|
-
:type:
|
|
3325
|
+
:type: typing_extensions.Self
|
|
3304
3326
|
"""
|
|
3305
3327
|
|
|
3306
|
-
zwz:
|
|
3328
|
+
zwz: typing_extensions.Self
|
|
3307
3329
|
"""
|
|
3308
3330
|
|
|
3309
|
-
:type:
|
|
3331
|
+
:type: typing_extensions.Self
|
|
3310
3332
|
"""
|
|
3311
3333
|
|
|
3312
|
-
zwzw:
|
|
3334
|
+
zwzw: typing_extensions.Self
|
|
3313
3335
|
"""
|
|
3314
3336
|
|
|
3315
|
-
:type:
|
|
3337
|
+
:type: typing_extensions.Self
|
|
3316
3338
|
"""
|
|
3317
3339
|
|
|
3318
|
-
zwzx:
|
|
3340
|
+
zwzx: typing_extensions.Self
|
|
3319
3341
|
"""
|
|
3320
3342
|
|
|
3321
|
-
:type:
|
|
3343
|
+
:type: typing_extensions.Self
|
|
3322
3344
|
"""
|
|
3323
3345
|
|
|
3324
|
-
zwzy:
|
|
3346
|
+
zwzy: typing_extensions.Self
|
|
3325
3347
|
"""
|
|
3326
3348
|
|
|
3327
|
-
:type:
|
|
3349
|
+
:type: typing_extensions.Self
|
|
3328
3350
|
"""
|
|
3329
3351
|
|
|
3330
|
-
zwzz:
|
|
3352
|
+
zwzz: typing_extensions.Self
|
|
3331
3353
|
"""
|
|
3332
3354
|
|
|
3333
|
-
:type:
|
|
3355
|
+
:type: typing_extensions.Self
|
|
3334
3356
|
"""
|
|
3335
3357
|
|
|
3336
|
-
zx:
|
|
3358
|
+
zx: typing_extensions.Self
|
|
3337
3359
|
"""
|
|
3338
3360
|
|
|
3339
|
-
:type:
|
|
3361
|
+
:type: typing_extensions.Self
|
|
3340
3362
|
"""
|
|
3341
3363
|
|
|
3342
|
-
zxw:
|
|
3364
|
+
zxw: typing_extensions.Self
|
|
3343
3365
|
"""
|
|
3344
3366
|
|
|
3345
|
-
:type:
|
|
3367
|
+
:type: typing_extensions.Self
|
|
3346
3368
|
"""
|
|
3347
3369
|
|
|
3348
|
-
zxww:
|
|
3370
|
+
zxww: typing_extensions.Self
|
|
3349
3371
|
"""
|
|
3350
3372
|
|
|
3351
|
-
:type:
|
|
3373
|
+
:type: typing_extensions.Self
|
|
3352
3374
|
"""
|
|
3353
3375
|
|
|
3354
|
-
zxwx:
|
|
3376
|
+
zxwx: typing_extensions.Self
|
|
3355
3377
|
"""
|
|
3356
3378
|
|
|
3357
|
-
:type:
|
|
3379
|
+
:type: typing_extensions.Self
|
|
3358
3380
|
"""
|
|
3359
3381
|
|
|
3360
|
-
zxwy:
|
|
3382
|
+
zxwy: typing_extensions.Self
|
|
3361
3383
|
"""
|
|
3362
3384
|
|
|
3363
|
-
:type:
|
|
3385
|
+
:type: typing_extensions.Self
|
|
3364
3386
|
"""
|
|
3365
3387
|
|
|
3366
|
-
zxwz:
|
|
3388
|
+
zxwz: typing_extensions.Self
|
|
3367
3389
|
"""
|
|
3368
3390
|
|
|
3369
|
-
:type:
|
|
3391
|
+
:type: typing_extensions.Self
|
|
3370
3392
|
"""
|
|
3371
3393
|
|
|
3372
|
-
zxx:
|
|
3394
|
+
zxx: typing_extensions.Self
|
|
3373
3395
|
"""
|
|
3374
3396
|
|
|
3375
|
-
:type:
|
|
3397
|
+
:type: typing_extensions.Self
|
|
3376
3398
|
"""
|
|
3377
3399
|
|
|
3378
|
-
zxxw:
|
|
3400
|
+
zxxw: typing_extensions.Self
|
|
3379
3401
|
"""
|
|
3380
3402
|
|
|
3381
|
-
:type:
|
|
3403
|
+
:type: typing_extensions.Self
|
|
3382
3404
|
"""
|
|
3383
3405
|
|
|
3384
|
-
zxxx:
|
|
3406
|
+
zxxx: typing_extensions.Self
|
|
3385
3407
|
"""
|
|
3386
3408
|
|
|
3387
|
-
:type:
|
|
3409
|
+
:type: typing_extensions.Self
|
|
3388
3410
|
"""
|
|
3389
3411
|
|
|
3390
|
-
zxxy:
|
|
3412
|
+
zxxy: typing_extensions.Self
|
|
3391
3413
|
"""
|
|
3392
3414
|
|
|
3393
|
-
:type:
|
|
3415
|
+
:type: typing_extensions.Self
|
|
3394
3416
|
"""
|
|
3395
3417
|
|
|
3396
|
-
zxxz:
|
|
3418
|
+
zxxz: typing_extensions.Self
|
|
3397
3419
|
"""
|
|
3398
3420
|
|
|
3399
|
-
:type:
|
|
3421
|
+
:type: typing_extensions.Self
|
|
3400
3422
|
"""
|
|
3401
3423
|
|
|
3402
|
-
zxy:
|
|
3424
|
+
zxy: typing_extensions.Self
|
|
3403
3425
|
"""
|
|
3404
3426
|
|
|
3405
|
-
:type:
|
|
3427
|
+
:type: typing_extensions.Self
|
|
3406
3428
|
"""
|
|
3407
3429
|
|
|
3408
|
-
zxyw:
|
|
3430
|
+
zxyw: typing_extensions.Self
|
|
3409
3431
|
"""
|
|
3410
3432
|
|
|
3411
|
-
:type:
|
|
3433
|
+
:type: typing_extensions.Self
|
|
3412
3434
|
"""
|
|
3413
3435
|
|
|
3414
|
-
zxyx:
|
|
3436
|
+
zxyx: typing_extensions.Self
|
|
3415
3437
|
"""
|
|
3416
3438
|
|
|
3417
|
-
:type:
|
|
3439
|
+
:type: typing_extensions.Self
|
|
3418
3440
|
"""
|
|
3419
3441
|
|
|
3420
|
-
zxyy:
|
|
3442
|
+
zxyy: typing_extensions.Self
|
|
3421
3443
|
"""
|
|
3422
3444
|
|
|
3423
|
-
:type:
|
|
3445
|
+
:type: typing_extensions.Self
|
|
3424
3446
|
"""
|
|
3425
3447
|
|
|
3426
|
-
zxyz:
|
|
3448
|
+
zxyz: typing_extensions.Self
|
|
3427
3449
|
"""
|
|
3428
3450
|
|
|
3429
|
-
:type:
|
|
3451
|
+
:type: typing_extensions.Self
|
|
3430
3452
|
"""
|
|
3431
3453
|
|
|
3432
|
-
zxz:
|
|
3454
|
+
zxz: typing_extensions.Self
|
|
3433
3455
|
"""
|
|
3434
3456
|
|
|
3435
|
-
:type:
|
|
3457
|
+
:type: typing_extensions.Self
|
|
3436
3458
|
"""
|
|
3437
3459
|
|
|
3438
|
-
zxzw:
|
|
3460
|
+
zxzw: typing_extensions.Self
|
|
3439
3461
|
"""
|
|
3440
3462
|
|
|
3441
|
-
:type:
|
|
3463
|
+
:type: typing_extensions.Self
|
|
3442
3464
|
"""
|
|
3443
3465
|
|
|
3444
|
-
zxzx:
|
|
3466
|
+
zxzx: typing_extensions.Self
|
|
3445
3467
|
"""
|
|
3446
3468
|
|
|
3447
|
-
:type:
|
|
3469
|
+
:type: typing_extensions.Self
|
|
3448
3470
|
"""
|
|
3449
3471
|
|
|
3450
|
-
zxzy:
|
|
3472
|
+
zxzy: typing_extensions.Self
|
|
3451
3473
|
"""
|
|
3452
3474
|
|
|
3453
|
-
:type:
|
|
3475
|
+
:type: typing_extensions.Self
|
|
3454
3476
|
"""
|
|
3455
3477
|
|
|
3456
|
-
zxzz:
|
|
3478
|
+
zxzz: typing_extensions.Self
|
|
3457
3479
|
"""
|
|
3458
3480
|
|
|
3459
|
-
:type:
|
|
3481
|
+
:type: typing_extensions.Self
|
|
3460
3482
|
"""
|
|
3461
3483
|
|
|
3462
|
-
zy:
|
|
3484
|
+
zy: typing_extensions.Self
|
|
3463
3485
|
"""
|
|
3464
3486
|
|
|
3465
|
-
:type:
|
|
3487
|
+
:type: typing_extensions.Self
|
|
3466
3488
|
"""
|
|
3467
3489
|
|
|
3468
|
-
zyw:
|
|
3490
|
+
zyw: typing_extensions.Self
|
|
3469
3491
|
"""
|
|
3470
3492
|
|
|
3471
|
-
:type:
|
|
3493
|
+
:type: typing_extensions.Self
|
|
3472
3494
|
"""
|
|
3473
3495
|
|
|
3474
|
-
zyww:
|
|
3496
|
+
zyww: typing_extensions.Self
|
|
3475
3497
|
"""
|
|
3476
3498
|
|
|
3477
|
-
:type:
|
|
3499
|
+
:type: typing_extensions.Self
|
|
3478
3500
|
"""
|
|
3479
3501
|
|
|
3480
|
-
zywx:
|
|
3502
|
+
zywx: typing_extensions.Self
|
|
3481
3503
|
"""
|
|
3482
3504
|
|
|
3483
|
-
:type:
|
|
3505
|
+
:type: typing_extensions.Self
|
|
3484
3506
|
"""
|
|
3485
3507
|
|
|
3486
|
-
zywy:
|
|
3508
|
+
zywy: typing_extensions.Self
|
|
3487
3509
|
"""
|
|
3488
3510
|
|
|
3489
|
-
:type:
|
|
3511
|
+
:type: typing_extensions.Self
|
|
3490
3512
|
"""
|
|
3491
3513
|
|
|
3492
|
-
zywz:
|
|
3514
|
+
zywz: typing_extensions.Self
|
|
3493
3515
|
"""
|
|
3494
3516
|
|
|
3495
|
-
:type:
|
|
3517
|
+
:type: typing_extensions.Self
|
|
3496
3518
|
"""
|
|
3497
3519
|
|
|
3498
|
-
zyx:
|
|
3520
|
+
zyx: typing_extensions.Self
|
|
3499
3521
|
"""
|
|
3500
3522
|
|
|
3501
|
-
:type:
|
|
3523
|
+
:type: typing_extensions.Self
|
|
3502
3524
|
"""
|
|
3503
3525
|
|
|
3504
|
-
zyxw:
|
|
3526
|
+
zyxw: typing_extensions.Self
|
|
3505
3527
|
"""
|
|
3506
3528
|
|
|
3507
|
-
:type:
|
|
3529
|
+
:type: typing_extensions.Self
|
|
3508
3530
|
"""
|
|
3509
3531
|
|
|
3510
|
-
zyxx:
|
|
3532
|
+
zyxx: typing_extensions.Self
|
|
3511
3533
|
"""
|
|
3512
3534
|
|
|
3513
|
-
:type:
|
|
3535
|
+
:type: typing_extensions.Self
|
|
3514
3536
|
"""
|
|
3515
3537
|
|
|
3516
|
-
zyxy:
|
|
3538
|
+
zyxy: typing_extensions.Self
|
|
3517
3539
|
"""
|
|
3518
3540
|
|
|
3519
|
-
:type:
|
|
3541
|
+
:type: typing_extensions.Self
|
|
3520
3542
|
"""
|
|
3521
3543
|
|
|
3522
|
-
zyxz:
|
|
3544
|
+
zyxz: typing_extensions.Self
|
|
3523
3545
|
"""
|
|
3524
3546
|
|
|
3525
|
-
:type:
|
|
3547
|
+
:type: typing_extensions.Self
|
|
3526
3548
|
"""
|
|
3527
3549
|
|
|
3528
|
-
zyy:
|
|
3550
|
+
zyy: typing_extensions.Self
|
|
3529
3551
|
"""
|
|
3530
3552
|
|
|
3531
|
-
:type:
|
|
3553
|
+
:type: typing_extensions.Self
|
|
3532
3554
|
"""
|
|
3533
3555
|
|
|
3534
|
-
zyyw:
|
|
3556
|
+
zyyw: typing_extensions.Self
|
|
3535
3557
|
"""
|
|
3536
3558
|
|
|
3537
|
-
:type:
|
|
3559
|
+
:type: typing_extensions.Self
|
|
3538
3560
|
"""
|
|
3539
3561
|
|
|
3540
|
-
zyyx:
|
|
3562
|
+
zyyx: typing_extensions.Self
|
|
3541
3563
|
"""
|
|
3542
3564
|
|
|
3543
|
-
:type:
|
|
3565
|
+
:type: typing_extensions.Self
|
|
3544
3566
|
"""
|
|
3545
3567
|
|
|
3546
|
-
zyyy:
|
|
3568
|
+
zyyy: typing_extensions.Self
|
|
3547
3569
|
"""
|
|
3548
3570
|
|
|
3549
|
-
:type:
|
|
3571
|
+
:type: typing_extensions.Self
|
|
3550
3572
|
"""
|
|
3551
3573
|
|
|
3552
|
-
zyyz:
|
|
3574
|
+
zyyz: typing_extensions.Self
|
|
3553
3575
|
"""
|
|
3554
3576
|
|
|
3555
|
-
:type:
|
|
3577
|
+
:type: typing_extensions.Self
|
|
3556
3578
|
"""
|
|
3557
3579
|
|
|
3558
|
-
zyz:
|
|
3580
|
+
zyz: typing_extensions.Self
|
|
3559
3581
|
"""
|
|
3560
3582
|
|
|
3561
|
-
:type:
|
|
3583
|
+
:type: typing_extensions.Self
|
|
3562
3584
|
"""
|
|
3563
3585
|
|
|
3564
|
-
zyzw:
|
|
3586
|
+
zyzw: typing_extensions.Self
|
|
3565
3587
|
"""
|
|
3566
3588
|
|
|
3567
|
-
:type:
|
|
3589
|
+
:type: typing_extensions.Self
|
|
3568
3590
|
"""
|
|
3569
3591
|
|
|
3570
|
-
zyzx:
|
|
3592
|
+
zyzx: typing_extensions.Self
|
|
3571
3593
|
"""
|
|
3572
3594
|
|
|
3573
|
-
:type:
|
|
3595
|
+
:type: typing_extensions.Self
|
|
3574
3596
|
"""
|
|
3575
3597
|
|
|
3576
|
-
zyzy:
|
|
3598
|
+
zyzy: typing_extensions.Self
|
|
3577
3599
|
"""
|
|
3578
3600
|
|
|
3579
|
-
:type:
|
|
3601
|
+
:type: typing_extensions.Self
|
|
3580
3602
|
"""
|
|
3581
3603
|
|
|
3582
|
-
zyzz:
|
|
3604
|
+
zyzz: typing_extensions.Self
|
|
3583
3605
|
"""
|
|
3584
3606
|
|
|
3585
|
-
:type:
|
|
3607
|
+
:type: typing_extensions.Self
|
|
3586
3608
|
"""
|
|
3587
3609
|
|
|
3588
|
-
zz:
|
|
3610
|
+
zz: typing_extensions.Self
|
|
3589
3611
|
"""
|
|
3590
3612
|
|
|
3591
|
-
:type:
|
|
3613
|
+
:type: typing_extensions.Self
|
|
3592
3614
|
"""
|
|
3593
3615
|
|
|
3594
|
-
zzw:
|
|
3616
|
+
zzw: typing_extensions.Self
|
|
3595
3617
|
"""
|
|
3596
3618
|
|
|
3597
|
-
:type:
|
|
3619
|
+
:type: typing_extensions.Self
|
|
3598
3620
|
"""
|
|
3599
3621
|
|
|
3600
|
-
zzww:
|
|
3622
|
+
zzww: typing_extensions.Self
|
|
3601
3623
|
"""
|
|
3602
3624
|
|
|
3603
|
-
:type:
|
|
3625
|
+
:type: typing_extensions.Self
|
|
3604
3626
|
"""
|
|
3605
3627
|
|
|
3606
|
-
zzwx:
|
|
3628
|
+
zzwx: typing_extensions.Self
|
|
3607
3629
|
"""
|
|
3608
3630
|
|
|
3609
|
-
:type:
|
|
3631
|
+
:type: typing_extensions.Self
|
|
3610
3632
|
"""
|
|
3611
3633
|
|
|
3612
|
-
zzwy:
|
|
3634
|
+
zzwy: typing_extensions.Self
|
|
3613
3635
|
"""
|
|
3614
3636
|
|
|
3615
|
-
:type:
|
|
3637
|
+
:type: typing_extensions.Self
|
|
3616
3638
|
"""
|
|
3617
3639
|
|
|
3618
|
-
zzwz:
|
|
3640
|
+
zzwz: typing_extensions.Self
|
|
3619
3641
|
"""
|
|
3620
3642
|
|
|
3621
|
-
:type:
|
|
3643
|
+
:type: typing_extensions.Self
|
|
3622
3644
|
"""
|
|
3623
3645
|
|
|
3624
|
-
zzx:
|
|
3646
|
+
zzx: typing_extensions.Self
|
|
3625
3647
|
"""
|
|
3626
3648
|
|
|
3627
|
-
:type:
|
|
3649
|
+
:type: typing_extensions.Self
|
|
3628
3650
|
"""
|
|
3629
3651
|
|
|
3630
|
-
zzxw:
|
|
3652
|
+
zzxw: typing_extensions.Self
|
|
3631
3653
|
"""
|
|
3632
3654
|
|
|
3633
|
-
:type:
|
|
3655
|
+
:type: typing_extensions.Self
|
|
3634
3656
|
"""
|
|
3635
3657
|
|
|
3636
|
-
zzxx:
|
|
3658
|
+
zzxx: typing_extensions.Self
|
|
3637
3659
|
"""
|
|
3638
3660
|
|
|
3639
|
-
:type:
|
|
3661
|
+
:type: typing_extensions.Self
|
|
3640
3662
|
"""
|
|
3641
3663
|
|
|
3642
|
-
zzxy:
|
|
3664
|
+
zzxy: typing_extensions.Self
|
|
3643
3665
|
"""
|
|
3644
3666
|
|
|
3645
|
-
:type:
|
|
3667
|
+
:type: typing_extensions.Self
|
|
3646
3668
|
"""
|
|
3647
3669
|
|
|
3648
|
-
zzxz:
|
|
3670
|
+
zzxz: typing_extensions.Self
|
|
3649
3671
|
"""
|
|
3650
3672
|
|
|
3651
|
-
:type:
|
|
3673
|
+
:type: typing_extensions.Self
|
|
3652
3674
|
"""
|
|
3653
3675
|
|
|
3654
|
-
zzy:
|
|
3676
|
+
zzy: typing_extensions.Self
|
|
3655
3677
|
"""
|
|
3656
3678
|
|
|
3657
|
-
:type:
|
|
3679
|
+
:type: typing_extensions.Self
|
|
3658
3680
|
"""
|
|
3659
3681
|
|
|
3660
|
-
zzyw:
|
|
3682
|
+
zzyw: typing_extensions.Self
|
|
3661
3683
|
"""
|
|
3662
3684
|
|
|
3663
|
-
:type:
|
|
3685
|
+
:type: typing_extensions.Self
|
|
3664
3686
|
"""
|
|
3665
3687
|
|
|
3666
|
-
zzyx:
|
|
3688
|
+
zzyx: typing_extensions.Self
|
|
3667
3689
|
"""
|
|
3668
3690
|
|
|
3669
|
-
:type:
|
|
3691
|
+
:type: typing_extensions.Self
|
|
3670
3692
|
"""
|
|
3671
3693
|
|
|
3672
|
-
zzyy:
|
|
3694
|
+
zzyy: typing_extensions.Self
|
|
3673
3695
|
"""
|
|
3674
3696
|
|
|
3675
|
-
:type:
|
|
3697
|
+
:type: typing_extensions.Self
|
|
3676
3698
|
"""
|
|
3677
3699
|
|
|
3678
|
-
zzyz:
|
|
3700
|
+
zzyz: typing_extensions.Self
|
|
3679
3701
|
"""
|
|
3680
3702
|
|
|
3681
|
-
:type:
|
|
3703
|
+
:type: typing_extensions.Self
|
|
3682
3704
|
"""
|
|
3683
3705
|
|
|
3684
|
-
zzz:
|
|
3706
|
+
zzz: typing_extensions.Self
|
|
3685
3707
|
"""
|
|
3686
3708
|
|
|
3687
|
-
:type:
|
|
3709
|
+
:type: typing_extensions.Self
|
|
3688
3710
|
"""
|
|
3689
3711
|
|
|
3690
|
-
zzzw:
|
|
3712
|
+
zzzw: typing_extensions.Self
|
|
3691
3713
|
"""
|
|
3692
3714
|
|
|
3693
|
-
:type:
|
|
3715
|
+
:type: typing_extensions.Self
|
|
3694
3716
|
"""
|
|
3695
3717
|
|
|
3696
|
-
zzzx:
|
|
3718
|
+
zzzx: typing_extensions.Self
|
|
3697
3719
|
"""
|
|
3698
3720
|
|
|
3699
|
-
:type:
|
|
3721
|
+
:type: typing_extensions.Self
|
|
3700
3722
|
"""
|
|
3701
3723
|
|
|
3702
|
-
zzzy:
|
|
3724
|
+
zzzy: typing_extensions.Self
|
|
3703
3725
|
"""
|
|
3704
3726
|
|
|
3705
|
-
:type:
|
|
3727
|
+
:type: typing_extensions.Self
|
|
3706
3728
|
"""
|
|
3707
3729
|
|
|
3708
|
-
zzzz:
|
|
3730
|
+
zzzz: typing_extensions.Self
|
|
3709
3731
|
"""
|
|
3710
3732
|
|
|
3711
|
-
:type:
|
|
3733
|
+
:type: typing_extensions.Self
|
|
3712
3734
|
"""
|
|
3713
3735
|
|
|
3714
3736
|
@classmethod
|
|
@@ -3749,11 +3771,13 @@ class Vector:
|
|
|
3749
3771
|
...
|
|
3750
3772
|
|
|
3751
3773
|
@classmethod
|
|
3752
|
-
def Repeat(
|
|
3774
|
+
def Repeat(
|
|
3775
|
+
cls, vector: collections.abc.Sequence[float] | typing_extensions.Self, size: int
|
|
3776
|
+
):
|
|
3753
3777
|
"""Create a vector by repeating the values in vector until the required size is reached.
|
|
3754
3778
|
|
|
3755
3779
|
:param vector: The vector to draw values from.
|
|
3756
|
-
:type vector: collections.abc.Sequence[float] |
|
|
3780
|
+
:type vector: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3757
3781
|
:param size: The size of the vector to be created.
|
|
3758
3782
|
:type size: int
|
|
3759
3783
|
"""
|
|
@@ -3761,13 +3785,13 @@ class Vector:
|
|
|
3761
3785
|
|
|
3762
3786
|
def angle(
|
|
3763
3787
|
self,
|
|
3764
|
-
other: collections.abc.Sequence[float] |
|
|
3788
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3765
3789
|
fallback: typing.Any = None,
|
|
3766
3790
|
) -> float:
|
|
3767
3791
|
"""Return the angle between two vectors.
|
|
3768
3792
|
|
|
3769
3793
|
:param other: another vector to compare the angle with
|
|
3770
|
-
:type other: collections.abc.Sequence[float] |
|
|
3794
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3771
3795
|
:param fallback: return this when the angle can't be calculated (zero length vector),
|
|
3772
3796
|
(instead of raising a `ValueError`).
|
|
3773
3797
|
:type fallback: typing.Any
|
|
@@ -3777,12 +3801,14 @@ class Vector:
|
|
|
3777
3801
|
...
|
|
3778
3802
|
|
|
3779
3803
|
def angle_signed(
|
|
3780
|
-
self,
|
|
3804
|
+
self,
|
|
3805
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3806
|
+
fallback: typing.Any,
|
|
3781
3807
|
) -> float:
|
|
3782
3808
|
"""Return the signed angle between two 2D vectors (clockwise is positive).
|
|
3783
3809
|
|
|
3784
3810
|
:param other: another vector to compare the angle with
|
|
3785
|
-
:type other: collections.abc.Sequence[float] |
|
|
3811
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3786
3812
|
:param fallback: return this when the angle can't be calculated (zero length vector),
|
|
3787
3813
|
(instead of raising a `ValueError`).
|
|
3788
3814
|
:type fallback: typing.Any
|
|
@@ -3791,55 +3817,59 @@ class Vector:
|
|
|
3791
3817
|
"""
|
|
3792
3818
|
...
|
|
3793
3819
|
|
|
3794
|
-
def copy(self) ->
|
|
3820
|
+
def copy(self) -> typing_extensions.Self:
|
|
3795
3821
|
"""Returns a copy of this vector.
|
|
3796
3822
|
|
|
3797
3823
|
:return: A copy of the vector.
|
|
3798
|
-
:rtype:
|
|
3824
|
+
:rtype: typing_extensions.Self
|
|
3799
3825
|
"""
|
|
3800
3826
|
...
|
|
3801
3827
|
|
|
3802
3828
|
def cross(
|
|
3803
|
-
self, other: collections.abc.Sequence[float] |
|
|
3804
|
-
) ->
|
|
3829
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3830
|
+
) -> typing_extensions.Self:
|
|
3805
3831
|
"""Return the cross product of this vector and another.
|
|
3806
3832
|
|
|
3807
3833
|
:param other: The other vector to perform the cross product with.
|
|
3808
|
-
:type other: collections.abc.Sequence[float] |
|
|
3834
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3809
3835
|
:return: The cross product.
|
|
3810
|
-
:rtype:
|
|
3836
|
+
:rtype: typing_extensions.Self
|
|
3811
3837
|
"""
|
|
3812
3838
|
...
|
|
3813
3839
|
|
|
3814
|
-
def dot(
|
|
3840
|
+
def dot(
|
|
3841
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3842
|
+
) -> float:
|
|
3815
3843
|
"""Return the dot product of this vector and another.
|
|
3816
3844
|
|
|
3817
3845
|
:param other: The other vector to perform the dot product with.
|
|
3818
|
-
:type other: collections.abc.Sequence[float] |
|
|
3846
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3819
3847
|
:return: The dot product.
|
|
3820
3848
|
:rtype: float
|
|
3821
3849
|
"""
|
|
3822
3850
|
...
|
|
3823
3851
|
|
|
3824
|
-
def freeze(self) ->
|
|
3852
|
+
def freeze(self) -> typing_extensions.Self:
|
|
3825
3853
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
3826
3854
|
|
|
3827
3855
|
:return: An instance of this object.
|
|
3828
|
-
:rtype:
|
|
3856
|
+
:rtype: typing_extensions.Self
|
|
3829
3857
|
"""
|
|
3830
3858
|
...
|
|
3831
3859
|
|
|
3832
3860
|
def lerp(
|
|
3833
|
-
self,
|
|
3834
|
-
|
|
3861
|
+
self,
|
|
3862
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3863
|
+
factor: float,
|
|
3864
|
+
) -> typing_extensions.Self:
|
|
3835
3865
|
"""Returns the interpolation of two vectors.
|
|
3836
3866
|
|
|
3837
3867
|
:param other: value to interpolate with.
|
|
3838
|
-
:type other: collections.abc.Sequence[float] |
|
|
3868
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3839
3869
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
3840
3870
|
:type factor: float
|
|
3841
3871
|
:return: The interpolated vector.
|
|
3842
|
-
:rtype:
|
|
3872
|
+
:rtype: typing_extensions.Self
|
|
3843
3873
|
"""
|
|
3844
3874
|
...
|
|
3845
3875
|
|
|
@@ -3851,43 +3881,43 @@ class Vector:
|
|
|
3851
3881
|
"""Normalize the vector, making the length of the vector always 1.0."""
|
|
3852
3882
|
...
|
|
3853
3883
|
|
|
3854
|
-
def normalized(self) ->
|
|
3884
|
+
def normalized(self) -> typing_extensions.Self:
|
|
3855
3885
|
"""Return a new, normalized vector.
|
|
3856
3886
|
|
|
3857
3887
|
:return: a normalized copy of the vector
|
|
3858
|
-
:rtype:
|
|
3888
|
+
:rtype: typing_extensions.Self
|
|
3859
3889
|
"""
|
|
3860
3890
|
...
|
|
3861
3891
|
|
|
3862
|
-
def orthogonal(self) ->
|
|
3892
|
+
def orthogonal(self) -> typing_extensions.Self:
|
|
3863
3893
|
"""Return a perpendicular vector.
|
|
3864
3894
|
|
|
3865
3895
|
:return: a new vector 90 degrees from this vector.
|
|
3866
|
-
:rtype:
|
|
3896
|
+
:rtype: typing_extensions.Self
|
|
3867
3897
|
"""
|
|
3868
3898
|
...
|
|
3869
3899
|
|
|
3870
3900
|
def project(
|
|
3871
|
-
self, other: collections.abc.Sequence[float] |
|
|
3872
|
-
) ->
|
|
3901
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3902
|
+
) -> typing_extensions.Self:
|
|
3873
3903
|
"""Return the projection of this vector onto the other.
|
|
3874
3904
|
|
|
3875
3905
|
:param other: second vector.
|
|
3876
|
-
:type other: collections.abc.Sequence[float] |
|
|
3906
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3877
3907
|
:return: the parallel projection vector
|
|
3878
|
-
:rtype:
|
|
3908
|
+
:rtype: typing_extensions.Self
|
|
3879
3909
|
"""
|
|
3880
3910
|
...
|
|
3881
3911
|
|
|
3882
3912
|
def reflect(
|
|
3883
|
-
self, mirror: collections.abc.Sequence[float] |
|
|
3884
|
-
) ->
|
|
3913
|
+
self, mirror: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3914
|
+
) -> typing_extensions.Self:
|
|
3885
3915
|
"""Return the reflection vector from the mirror argument.
|
|
3886
3916
|
|
|
3887
3917
|
:param mirror: This vector could be a normal from the reflecting surface.
|
|
3888
|
-
:type mirror: collections.abc.Sequence[float] |
|
|
3918
|
+
:type mirror: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3889
3919
|
:return: The reflected vector matching the size of this vector.
|
|
3890
|
-
:rtype:
|
|
3920
|
+
:rtype: typing_extensions.Self
|
|
3891
3921
|
"""
|
|
3892
3922
|
...
|
|
3893
3923
|
|
|
@@ -3910,12 +3940,12 @@ class Vector:
|
|
|
3910
3940
|
"""Resize the vector to 4D (x, y, z, w)."""
|
|
3911
3941
|
...
|
|
3912
3942
|
|
|
3913
|
-
def resized(self, size=3) ->
|
|
3943
|
+
def resized(self, size=3) -> typing_extensions.Self:
|
|
3914
3944
|
"""Return a resized copy of the vector with size number of elements.
|
|
3915
3945
|
|
|
3916
3946
|
:param size:
|
|
3917
3947
|
:return: a new vector
|
|
3918
|
-
:rtype:
|
|
3948
|
+
:rtype: typing_extensions.Self
|
|
3919
3949
|
"""
|
|
3920
3950
|
...
|
|
3921
3951
|
|
|
@@ -3935,13 +3965,13 @@ class Vector:
|
|
|
3935
3965
|
...
|
|
3936
3966
|
|
|
3937
3967
|
def rotation_difference(
|
|
3938
|
-
self, other: collections.abc.Sequence[float] |
|
|
3968
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3939
3969
|
) -> Quaternion:
|
|
3940
3970
|
"""Returns a quaternion representing the rotational difference between this
|
|
3941
3971
|
vector and another.
|
|
3942
3972
|
|
|
3943
3973
|
:param other: second vector.
|
|
3944
|
-
:type other: collections.abc.Sequence[float] |
|
|
3974
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3945
3975
|
:return: the rotational difference between the two vectors.
|
|
3946
3976
|
:rtype: Quaternion
|
|
3947
3977
|
"""
|
|
@@ -3949,45 +3979,45 @@ class Vector:
|
|
|
3949
3979
|
|
|
3950
3980
|
def slerp(
|
|
3951
3981
|
self,
|
|
3952
|
-
other: collections.abc.Sequence[float] |
|
|
3982
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3953
3983
|
factor: float,
|
|
3954
3984
|
fallback: typing.Any = None,
|
|
3955
|
-
) ->
|
|
3985
|
+
) -> typing_extensions.Self:
|
|
3956
3986
|
"""Returns the interpolation of two non-zero vectors (spherical coordinates).
|
|
3957
3987
|
|
|
3958
3988
|
:param other: value to interpolate with.
|
|
3959
|
-
:type other: collections.abc.Sequence[float] |
|
|
3989
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3960
3990
|
:param factor: The interpolation value typically in [0.0, 1.0].
|
|
3961
3991
|
:type factor: float
|
|
3962
3992
|
:param fallback: return this when the vector can't be calculated (zero length vector or direct opposites),
|
|
3963
3993
|
(instead of raising a `ValueError`).
|
|
3964
3994
|
:type fallback: typing.Any
|
|
3965
3995
|
:return: The interpolated vector.
|
|
3966
|
-
:rtype:
|
|
3996
|
+
:rtype: typing_extensions.Self
|
|
3967
3997
|
"""
|
|
3968
3998
|
...
|
|
3969
3999
|
|
|
3970
|
-
def to_2d(self) ->
|
|
4000
|
+
def to_2d(self) -> typing_extensions.Self:
|
|
3971
4001
|
"""Return a 2d copy of the vector.
|
|
3972
4002
|
|
|
3973
4003
|
:return: a new vector
|
|
3974
|
-
:rtype:
|
|
4004
|
+
:rtype: typing_extensions.Self
|
|
3975
4005
|
"""
|
|
3976
4006
|
...
|
|
3977
4007
|
|
|
3978
|
-
def to_3d(self) ->
|
|
4008
|
+
def to_3d(self) -> typing_extensions.Self:
|
|
3979
4009
|
"""Return a 3d copy of the vector.
|
|
3980
4010
|
|
|
3981
4011
|
:return: a new vector
|
|
3982
|
-
:rtype:
|
|
4012
|
+
:rtype: typing_extensions.Self
|
|
3983
4013
|
"""
|
|
3984
4014
|
...
|
|
3985
4015
|
|
|
3986
|
-
def to_4d(self) ->
|
|
4016
|
+
def to_4d(self) -> typing_extensions.Self:
|
|
3987
4017
|
"""Return a 4d copy of the vector.
|
|
3988
4018
|
|
|
3989
4019
|
:return: a new vector
|
|
3990
|
-
:rtype:
|
|
4020
|
+
:rtype: typing_extensions.Self
|
|
3991
4021
|
"""
|
|
3992
4022
|
...
|
|
3993
4023
|
|
|
@@ -4024,22 +4054,24 @@ class Vector:
|
|
|
4024
4054
|
"""
|
|
4025
4055
|
...
|
|
4026
4056
|
|
|
4027
|
-
def __get__(self, instance, owner) ->
|
|
4057
|
+
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
4028
4058
|
"""
|
|
4029
4059
|
|
|
4030
4060
|
:param instance:
|
|
4031
4061
|
:param owner:
|
|
4032
4062
|
:return:
|
|
4033
|
-
:rtype:
|
|
4063
|
+
:rtype: typing_extensions.Self
|
|
4034
4064
|
"""
|
|
4035
4065
|
...
|
|
4036
4066
|
|
|
4037
|
-
def __set__(
|
|
4067
|
+
def __set__(
|
|
4068
|
+
self, instance, value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4069
|
+
):
|
|
4038
4070
|
"""
|
|
4039
4071
|
|
|
4040
4072
|
:param instance:
|
|
4041
4073
|
:param value:
|
|
4042
|
-
:type value: collections.abc.Sequence[float] |
|
|
4074
|
+
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4043
4075
|
"""
|
|
4044
4076
|
...
|
|
4045
4077
|
|
|
@@ -4095,64 +4127,66 @@ class Vector:
|
|
|
4095
4127
|
"""
|
|
4096
4128
|
...
|
|
4097
4129
|
|
|
4098
|
-
def __neg__(self) ->
|
|
4130
|
+
def __neg__(self) -> typing_extensions.Self:
|
|
4099
4131
|
"""
|
|
4100
4132
|
|
|
4101
4133
|
:return:
|
|
4102
|
-
:rtype:
|
|
4134
|
+
:rtype: typing_extensions.Self
|
|
4103
4135
|
"""
|
|
4104
4136
|
...
|
|
4105
4137
|
|
|
4106
4138
|
def __add__(
|
|
4107
|
-
self, other: collections.abc.Sequence[float] |
|
|
4108
|
-
) ->
|
|
4139
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4140
|
+
) -> typing_extensions.Self:
|
|
4109
4141
|
"""
|
|
4110
4142
|
|
|
4111
4143
|
:param other:
|
|
4112
|
-
:type other: collections.abc.Sequence[float] |
|
|
4144
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4113
4145
|
:return:
|
|
4114
|
-
:rtype:
|
|
4146
|
+
:rtype: typing_extensions.Self
|
|
4115
4147
|
"""
|
|
4116
4148
|
...
|
|
4117
4149
|
|
|
4118
4150
|
def __sub__(
|
|
4119
|
-
self, other: collections.abc.Sequence[float] |
|
|
4120
|
-
) ->
|
|
4151
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4152
|
+
) -> typing_extensions.Self:
|
|
4121
4153
|
"""
|
|
4122
4154
|
|
|
4123
4155
|
:param other:
|
|
4124
|
-
:type other: collections.abc.Sequence[float] |
|
|
4156
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4125
4157
|
:return:
|
|
4126
|
-
:rtype:
|
|
4158
|
+
:rtype: typing_extensions.Self
|
|
4127
4159
|
"""
|
|
4128
4160
|
...
|
|
4129
4161
|
|
|
4130
|
-
def __mul__(self, other: float | int) ->
|
|
4162
|
+
def __mul__(self, other: float | int) -> typing_extensions.Self:
|
|
4131
4163
|
"""
|
|
4132
4164
|
|
|
4133
4165
|
:param other:
|
|
4134
4166
|
:type other: float | int
|
|
4135
4167
|
:return:
|
|
4136
|
-
:rtype:
|
|
4168
|
+
:rtype: typing_extensions.Self
|
|
4137
4169
|
"""
|
|
4138
4170
|
...
|
|
4139
4171
|
|
|
4140
|
-
def __truediv__(self, other: float | int) ->
|
|
4172
|
+
def __truediv__(self, other: float | int) -> typing_extensions.Self:
|
|
4141
4173
|
"""
|
|
4142
4174
|
|
|
4143
4175
|
:param other:
|
|
4144
4176
|
:type other: float | int
|
|
4145
4177
|
:return:
|
|
4146
|
-
:rtype:
|
|
4178
|
+
:rtype: typing_extensions.Self
|
|
4147
4179
|
"""
|
|
4148
4180
|
...
|
|
4149
4181
|
|
|
4150
4182
|
@typing.overload
|
|
4151
|
-
def __matmul__(
|
|
4183
|
+
def __matmul__(
|
|
4184
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4185
|
+
) -> float:
|
|
4152
4186
|
"""
|
|
4153
4187
|
|
|
4154
4188
|
:param other:
|
|
4155
|
-
:type other: collections.abc.Sequence[float] |
|
|
4189
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4156
4190
|
:return:
|
|
4157
4191
|
:rtype: float
|
|
4158
4192
|
"""
|
|
@@ -4161,100 +4195,100 @@ class Vector:
|
|
|
4161
4195
|
@typing.overload
|
|
4162
4196
|
def __matmul__(
|
|
4163
4197
|
self, other: Matrix | collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
4164
|
-
) ->
|
|
4198
|
+
) -> typing_extensions.Self:
|
|
4165
4199
|
"""
|
|
4166
4200
|
|
|
4167
4201
|
:param other:
|
|
4168
4202
|
:type other: Matrix | collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
4169
4203
|
:return:
|
|
4170
|
-
:rtype:
|
|
4204
|
+
:rtype: typing_extensions.Self
|
|
4171
4205
|
"""
|
|
4172
4206
|
...
|
|
4173
4207
|
|
|
4174
4208
|
def __radd__(
|
|
4175
|
-
self, other: collections.abc.Sequence[float] |
|
|
4176
|
-
) ->
|
|
4209
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4210
|
+
) -> typing_extensions.Self:
|
|
4177
4211
|
"""
|
|
4178
4212
|
|
|
4179
4213
|
:param other:
|
|
4180
|
-
:type other: collections.abc.Sequence[float] |
|
|
4214
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4181
4215
|
:return:
|
|
4182
|
-
:rtype:
|
|
4216
|
+
:rtype: typing_extensions.Self
|
|
4183
4217
|
"""
|
|
4184
4218
|
...
|
|
4185
4219
|
|
|
4186
4220
|
def __rsub__(
|
|
4187
|
-
self, other: collections.abc.Sequence[float] |
|
|
4188
|
-
) ->
|
|
4221
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4222
|
+
) -> typing_extensions.Self:
|
|
4189
4223
|
"""
|
|
4190
4224
|
|
|
4191
4225
|
:param other:
|
|
4192
|
-
:type other: collections.abc.Sequence[float] |
|
|
4226
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4193
4227
|
:return:
|
|
4194
|
-
:rtype:
|
|
4228
|
+
:rtype: typing_extensions.Self
|
|
4195
4229
|
"""
|
|
4196
4230
|
...
|
|
4197
4231
|
|
|
4198
|
-
def __rmul__(self, other: float | int) ->
|
|
4232
|
+
def __rmul__(self, other: float | int) -> typing_extensions.Self:
|
|
4199
4233
|
"""
|
|
4200
4234
|
|
|
4201
4235
|
:param other:
|
|
4202
4236
|
:type other: float | int
|
|
4203
4237
|
:return:
|
|
4204
|
-
:rtype:
|
|
4238
|
+
:rtype: typing_extensions.Self
|
|
4205
4239
|
"""
|
|
4206
4240
|
...
|
|
4207
4241
|
|
|
4208
|
-
def __rtruediv__(self, other: float | int) ->
|
|
4242
|
+
def __rtruediv__(self, other: float | int) -> typing_extensions.Self:
|
|
4209
4243
|
"""
|
|
4210
4244
|
|
|
4211
4245
|
:param other:
|
|
4212
4246
|
:type other: float | int
|
|
4213
4247
|
:return:
|
|
4214
|
-
:rtype:
|
|
4248
|
+
:rtype: typing_extensions.Self
|
|
4215
4249
|
"""
|
|
4216
4250
|
...
|
|
4217
4251
|
|
|
4218
4252
|
def __iadd__(
|
|
4219
|
-
self, other: collections.abc.Sequence[float] |
|
|
4220
|
-
) ->
|
|
4253
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4254
|
+
) -> typing_extensions.Self:
|
|
4221
4255
|
"""
|
|
4222
4256
|
|
|
4223
4257
|
:param other:
|
|
4224
|
-
:type other: collections.abc.Sequence[float] |
|
|
4258
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4225
4259
|
:return:
|
|
4226
|
-
:rtype:
|
|
4260
|
+
:rtype: typing_extensions.Self
|
|
4227
4261
|
"""
|
|
4228
4262
|
...
|
|
4229
4263
|
|
|
4230
4264
|
def __isub__(
|
|
4231
|
-
self, other: collections.abc.Sequence[float] |
|
|
4232
|
-
) ->
|
|
4265
|
+
self, other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4266
|
+
) -> typing_extensions.Self:
|
|
4233
4267
|
"""
|
|
4234
4268
|
|
|
4235
4269
|
:param other:
|
|
4236
|
-
:type other: collections.abc.Sequence[float] |
|
|
4270
|
+
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4237
4271
|
:return:
|
|
4238
|
-
:rtype:
|
|
4272
|
+
:rtype: typing_extensions.Self
|
|
4239
4273
|
"""
|
|
4240
4274
|
...
|
|
4241
4275
|
|
|
4242
|
-
def __imul__(self, other: float | int) ->
|
|
4276
|
+
def __imul__(self, other: float | int) -> typing_extensions.Self:
|
|
4243
4277
|
"""
|
|
4244
4278
|
|
|
4245
4279
|
:param other:
|
|
4246
4280
|
:type other: float | int
|
|
4247
4281
|
:return:
|
|
4248
|
-
:rtype:
|
|
4282
|
+
:rtype: typing_extensions.Self
|
|
4249
4283
|
"""
|
|
4250
4284
|
...
|
|
4251
4285
|
|
|
4252
|
-
def __itruediv__(self, other: float | int) ->
|
|
4286
|
+
def __itruediv__(self, other: float | int) -> typing_extensions.Self:
|
|
4253
4287
|
"""
|
|
4254
4288
|
|
|
4255
4289
|
:param other:
|
|
4256
4290
|
:type other: float | int
|
|
4257
4291
|
:return:
|
|
4258
|
-
:rtype:
|
|
4292
|
+
:rtype: typing_extensions.Self
|
|
4259
4293
|
"""
|
|
4260
4294
|
...
|