fake-bpy-module 20240720__py3-none-any.whl → 20240721__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.

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