fake-bpy-module 20240802__py3-none-any.whl → 20240804__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- aud/__init__.pyi +77 -77
- bmesh/ops/__init__.pyi +54 -36
- bmesh/types/__init__.pyi +24 -24
- bpy/ops/action/__init__.pyi +55 -32
- bpy/ops/anim/__init__.pyi +22 -22
- bpy/ops/armature/__init__.pyi +47 -20
- bpy/ops/asset/__init__.pyi +5 -2
- bpy/ops/boid/__init__.pyi +12 -2
- bpy/ops/brush/__init__.pyi +18 -12
- bpy/ops/buttons/__init__.pyi +10 -4
- bpy/ops/cachefile/__init__.pyi +12 -6
- bpy/ops/clip/__init__.pyi +54 -38
- bpy/ops/console/__init__.pyi +17 -6
- bpy/ops/constraint/__init__.pyi +28 -28
- bpy/ops/curve/__init__.pyi +72 -34
- bpy/ops/curves/__init__.pyi +16 -16
- bpy/ops/dpaint/__init__.pyi +4 -4
- bpy/ops/ed/__init__.pyi +5 -2
- bpy/ops/export_anim/__init__.pyi +3 -2
- bpy/ops/export_scene/__init__.pyi +55 -45
- bpy/ops/file/__init__.pyi +40 -16
- bpy/ops/font/__init__.pyi +59 -16
- bpy/ops/geometry/__init__.pyi +55 -20
- bpy/ops/gpencil/__init__.pyi +155 -122
- bpy/ops/graph/__init__.pyi +131 -52
- bpy/ops/grease_pencil/__init__.pyi +96 -58
- bpy/ops/image/__init__.pyi +77 -54
- bpy/ops/import_anim/__init__.pyi +11 -8
- bpy/ops/import_scene/__init__.pyi +20 -18
- bpy/ops/info/__init__.pyi +4 -4
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +6 -6
- bpy/ops/mask/__init__.pyi +13 -12
- bpy/ops/mball/__init__.pyi +6 -6
- bpy/ops/mesh/__init__.pyi +290 -150
- bpy/ops/nla/__init__.pyi +28 -20
- bpy/ops/node/__init__.pyi +43 -32
- bpy/ops/object/__init__.pyi +651 -210
- bpy/ops/outliner/__init__.pyi +113 -32
- bpy/ops/paint/__init__.pyi +65 -56
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +14 -14
- bpy/ops/pose/__init__.pyi +121 -44
- bpy/ops/preferences/__init__.pyi +9 -6
- bpy/ops/render/__init__.pyi +3 -2
- bpy/ops/rigidbody/__init__.pyi +45 -14
- bpy/ops/scene/__init__.pyi +69 -22
- bpy/ops/screen/__init__.pyi +78 -16
- bpy/ops/sculpt/__init__.pyi +131 -74
- bpy/ops/sculpt_curves/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +156 -60
- bpy/ops/sound/__init__.pyi +40 -16
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +65 -20
- bpy/ops/texture/__init__.pyi +2 -2
- bpy/ops/transform/__init__.pyi +344 -72
- bpy/ops/ui/__init__.pyi +9 -6
- bpy/ops/uilist/__init__.pyi +2 -2
- bpy/ops/uv/__init__.pyi +90 -66
- bpy/ops/view3d/__init__.pyi +36 -30
- bpy/ops/wm/__init__.pyi +443 -156
- bpy/types/__init__.pyi +56103 -30890
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/RECORD +73 -73
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +76 -63
- freestyle/utils/__init__.pyi +1 -1
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -970
- mathutils/bvhtree/__init__.pyi +2 -2
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240802.dist-info → fake_bpy_module-20240804.dist-info}/top_level.txt +0 -0
freestyle/types/__init__.pyi
CHANGED
|
@@ -105,12 +105,12 @@ False otherwise.
|
|
|
105
105
|
"""
|
|
106
106
|
...
|
|
107
107
|
|
|
108
|
-
def __init__(self, brother:
|
|
108
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
109
109
|
"""Builds an `AdjacencyIterator` using the default constructor,
|
|
110
110
|
copy constructor or the overloaded constructor.
|
|
111
111
|
|
|
112
112
|
:param brother: An AdjacencyIterator object.
|
|
113
|
-
:type brother:
|
|
113
|
+
:type brother: typing_extensions.Self
|
|
114
114
|
"""
|
|
115
115
|
...
|
|
116
116
|
|
|
@@ -216,12 +216,12 @@ class Chain:
|
|
|
216
216
|
"""
|
|
217
217
|
...
|
|
218
218
|
|
|
219
|
-
def __init__(self, brother:
|
|
219
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
220
220
|
"""Builds a `Chain` using the default constructor,
|
|
221
221
|
copy constructor or from an `Id`.
|
|
222
222
|
|
|
223
223
|
:param brother: A Chain object.
|
|
224
|
-
:type brother:
|
|
224
|
+
:type brother: typing_extensions.Self
|
|
225
225
|
"""
|
|
226
226
|
...
|
|
227
227
|
|
|
@@ -309,12 +309,12 @@ class ChainingIterator:
|
|
|
309
309
|
"""
|
|
310
310
|
...
|
|
311
311
|
|
|
312
|
-
def __init__(self, brother:
|
|
312
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
313
313
|
"""Builds a Chaining Iterator from the first ViewEdge used for
|
|
314
314
|
iteration and its orientation or by using the copy constructor.
|
|
315
315
|
|
|
316
316
|
:param brother:
|
|
317
|
-
:type brother:
|
|
317
|
+
:type brother: typing_extensions.Self
|
|
318
318
|
"""
|
|
319
319
|
...
|
|
320
320
|
|
|
@@ -365,12 +365,12 @@ class Curve:
|
|
|
365
365
|
"""
|
|
366
366
|
...
|
|
367
367
|
|
|
368
|
-
def __init__(self, brother:
|
|
368
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
369
369
|
"""Builds a `FrsCurve` using a default constructor,
|
|
370
370
|
copy constructor or from an `Id`.
|
|
371
371
|
|
|
372
372
|
:param brother: A Curve object.
|
|
373
|
-
:type brother:
|
|
373
|
+
:type brother: typing_extensions.Self
|
|
374
374
|
"""
|
|
375
375
|
...
|
|
376
376
|
|
|
@@ -444,14 +444,14 @@ A shortcut for CurvePoint.first_svertex.get_fedge(CurvePoint.second_svertex).
|
|
|
444
444
|
"""
|
|
445
445
|
...
|
|
446
446
|
|
|
447
|
-
def __init__(self, brother:
|
|
447
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
448
448
|
"""Builds a CurvePoint using the default constructor, copy constructor,
|
|
449
449
|
or one of the overloaded constructors. The over loaded constructors
|
|
450
450
|
can either take two `SVertex` or two `CurvePoint`
|
|
451
451
|
objects and an interpolation parameter
|
|
452
452
|
|
|
453
453
|
:param brother: A CurvePoint object.
|
|
454
|
-
:type brother:
|
|
454
|
+
:type brother: typing_extensions.Self
|
|
455
455
|
"""
|
|
456
456
|
...
|
|
457
457
|
|
|
@@ -471,16 +471,21 @@ A shortcut for CurvePoint.first_svertex.get_fedge(CurvePoint.second_svertex).
|
|
|
471
471
|
"""
|
|
472
472
|
...
|
|
473
473
|
|
|
474
|
-
def __init__(
|
|
474
|
+
def __init__(
|
|
475
|
+
self,
|
|
476
|
+
first_point: typing_extensions.Self,
|
|
477
|
+
second_point: typing_extensions.Self,
|
|
478
|
+
t2d: float,
|
|
479
|
+
):
|
|
475
480
|
"""Builds a CurvePoint using the default constructor, copy constructor,
|
|
476
481
|
or one of the overloaded constructors. The over loaded constructors
|
|
477
482
|
can either take two `SVertex` or two `CurvePoint`
|
|
478
483
|
objects and an interpolation parameter
|
|
479
484
|
|
|
480
485
|
:param first_point: The first CurvePoint.
|
|
481
|
-
:type first_point:
|
|
486
|
+
:type first_point: typing_extensions.Self
|
|
482
487
|
:param second_point: The second CurvePoint.
|
|
483
|
-
:type second_point:
|
|
488
|
+
:type second_point: typing_extensions.Self
|
|
484
489
|
:param t2d: A 2D interpolation parameter used to linearly interpolate
|
|
485
490
|
first_vertex and second_vertex or first_point and second_point.
|
|
486
491
|
:type t2d: float
|
|
@@ -518,12 +523,12 @@ class CurvePointIterator:
|
|
|
518
523
|
"""
|
|
519
524
|
...
|
|
520
525
|
|
|
521
|
-
def __init__(self, brother:
|
|
526
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
522
527
|
"""Builds a CurvePointIterator object using either the default constructor,
|
|
523
528
|
copy constructor, or the overloaded constructor.
|
|
524
529
|
|
|
525
530
|
:param brother: A CurvePointIterator object.
|
|
526
|
-
:type brother:
|
|
531
|
+
:type brother: typing_extensions.Self
|
|
527
532
|
"""
|
|
528
533
|
...
|
|
529
534
|
|
|
@@ -574,18 +579,18 @@ class FEdge:
|
|
|
574
579
|
:type: Nature
|
|
575
580
|
"""
|
|
576
581
|
|
|
577
|
-
next_fedge:
|
|
582
|
+
next_fedge: typing_extensions.Self
|
|
578
583
|
""" The FEdge following this one in the ViewEdge. The value is None if
|
|
579
584
|
this FEdge is the last of the ViewEdge.
|
|
580
585
|
|
|
581
|
-
:type:
|
|
586
|
+
:type: typing_extensions.Self
|
|
582
587
|
"""
|
|
583
588
|
|
|
584
|
-
previous_fedge:
|
|
589
|
+
previous_fedge: typing_extensions.Self
|
|
585
590
|
""" The FEdge preceding this one in the ViewEdge. The value is None if
|
|
586
591
|
this FEdge is the first one of the ViewEdge.
|
|
587
592
|
|
|
588
|
-
:type:
|
|
593
|
+
:type: typing_extensions.Self
|
|
589
594
|
"""
|
|
590
595
|
|
|
591
596
|
second_svertex: SVertex
|
|
@@ -607,12 +612,12 @@ this FEdge is the first one of the ViewEdge.
|
|
|
607
612
|
"""
|
|
608
613
|
...
|
|
609
614
|
|
|
610
|
-
def FEdge(self, brother:
|
|
615
|
+
def FEdge(self, brother: typing_extensions.Self):
|
|
611
616
|
"""Builds an `FEdge` using the default constructor,
|
|
612
617
|
copy constructor, or between two `SVertex` objects.
|
|
613
618
|
|
|
614
619
|
:param brother: An FEdge object.
|
|
615
|
-
:type brother:
|
|
620
|
+
:type brother: typing_extensions.Self
|
|
616
621
|
"""
|
|
617
622
|
...
|
|
618
623
|
|
|
@@ -686,12 +691,12 @@ is a border, it has no Face on its right and therefore no normal.
|
|
|
686
691
|
"""
|
|
687
692
|
...
|
|
688
693
|
|
|
689
|
-
def __init__(self, brother:
|
|
694
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
690
695
|
"""Builds an `FEdgeSharp` using the default constructor,
|
|
691
696
|
copy constructor, or between two `SVertex` objects.
|
|
692
697
|
|
|
693
698
|
:param brother: An FEdgeSharp object.
|
|
694
|
-
:type brother:
|
|
699
|
+
:type brother: typing_extensions.Self
|
|
695
700
|
"""
|
|
696
701
|
...
|
|
697
702
|
|
|
@@ -743,12 +748,12 @@ class FEdgeSmooth:
|
|
|
743
748
|
"""
|
|
744
749
|
...
|
|
745
750
|
|
|
746
|
-
def __init__(self, brother:
|
|
751
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
747
752
|
"""Builds an `FEdgeSmooth` using the default constructor,
|
|
748
753
|
copy constructor, or between two `SVertex`.
|
|
749
754
|
|
|
750
755
|
:param brother: An FEdgeSmooth object.
|
|
751
|
-
:type brother:
|
|
756
|
+
:type brother: typing_extensions.Self
|
|
752
757
|
"""
|
|
753
758
|
...
|
|
754
759
|
|
|
@@ -858,12 +863,12 @@ class Interface0D:
|
|
|
858
863
|
"""Default constructor."""
|
|
859
864
|
...
|
|
860
865
|
|
|
861
|
-
def get_fedge(self, inter:
|
|
866
|
+
def get_fedge(self, inter: typing_extensions.Self) -> FEdge:
|
|
862
867
|
"""Returns the FEdge that lies between this 0D element and the 0D
|
|
863
868
|
element given as the argument.
|
|
864
869
|
|
|
865
870
|
:param inter: A 0D element.
|
|
866
|
-
:type inter:
|
|
871
|
+
:type inter: typing_extensions.Self
|
|
867
872
|
:return: The FEdge lying between the two 0D elements.
|
|
868
873
|
:rtype: FEdge
|
|
869
874
|
"""
|
|
@@ -902,12 +907,12 @@ class, the .object property refers to a `StrokeVertex` object.
|
|
|
902
907
|
:type: float
|
|
903
908
|
"""
|
|
904
909
|
|
|
905
|
-
def __init__(self, brother:
|
|
910
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
906
911
|
"""Construct a nested Interface0DIterator using either the copy constructor
|
|
907
912
|
or the constructor that takes an he argument of a Function0D.
|
|
908
913
|
|
|
909
914
|
:param brother: An Interface0DIterator object.
|
|
910
|
-
:type brother:
|
|
915
|
+
:type brother: typing_extensions.Self
|
|
911
916
|
"""
|
|
912
917
|
...
|
|
913
918
|
|
|
@@ -1088,12 +1093,12 @@ class Material:
|
|
|
1088
1093
|
"""
|
|
1089
1094
|
...
|
|
1090
1095
|
|
|
1091
|
-
def __init__(self, brother:
|
|
1096
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
1092
1097
|
"""Creates a `FrsMaterial` using either default constructor,
|
|
1093
1098
|
copy constructor, or an overloaded constructor
|
|
1094
1099
|
|
|
1095
1100
|
:param brother: A Material object to be used as a copy constructor.
|
|
1096
|
-
:type brother:
|
|
1101
|
+
:type brother: typing_extensions.Self
|
|
1097
1102
|
"""
|
|
1098
1103
|
...
|
|
1099
1104
|
|
|
@@ -1615,11 +1620,11 @@ class SShape:
|
|
|
1615
1620
|
"""Creates a `SShape` class using either a default constructor or copy constructor."""
|
|
1616
1621
|
...
|
|
1617
1622
|
|
|
1618
|
-
def __init__(self, brother:
|
|
1623
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
1619
1624
|
"""Creates a `SShape` class using either a default constructor or copy constructor.
|
|
1620
1625
|
|
|
1621
1626
|
:param brother: An SShape object.
|
|
1622
|
-
:type brother:
|
|
1627
|
+
:type brother: typing_extensions.Self
|
|
1623
1628
|
"""
|
|
1624
1629
|
...
|
|
1625
1630
|
|
|
@@ -1704,12 +1709,12 @@ ViewVertex, and None otherwise.
|
|
|
1704
1709
|
"""
|
|
1705
1710
|
...
|
|
1706
1711
|
|
|
1707
|
-
def __init__(self, brother:
|
|
1712
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
1708
1713
|
"""Builds a `SVertex` using the default constructor,
|
|
1709
1714
|
copy constructor or the overloaded constructor which builds a `SVertex` from 3D coordinates and an Id.
|
|
1710
1715
|
|
|
1711
1716
|
:param brother: A SVertex object.
|
|
1712
|
-
:type brother:
|
|
1717
|
+
:type brother: typing_extensions.Self
|
|
1713
1718
|
"""
|
|
1714
1719
|
...
|
|
1715
1720
|
|
|
@@ -1773,11 +1778,11 @@ class SVertexIterator:
|
|
|
1773
1778
|
"""Build an SVertexIterator using either the default constructor, copy constructor,or the overloaded constructor that starts iteration from an SVertex object vertex."""
|
|
1774
1779
|
...
|
|
1775
1780
|
|
|
1776
|
-
def __init__(self, brother:
|
|
1781
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
1777
1782
|
"""Build an SVertexIterator using either the default constructor, copy constructor,or the overloaded constructor that starts iteration from an SVertex object vertex.
|
|
1778
1783
|
|
|
1779
1784
|
:param brother: An SVertexIterator object.
|
|
1780
|
-
:type brother:
|
|
1785
|
+
:type brother: typing_extensions.Self
|
|
1781
1786
|
"""
|
|
1782
1787
|
...
|
|
1783
1788
|
|
|
@@ -1989,13 +1994,13 @@ when following the stroke.
|
|
|
1989
1994
|
"""
|
|
1990
1995
|
...
|
|
1991
1996
|
|
|
1992
|
-
def __init__(self, brother:
|
|
1997
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
1993
1998
|
"""Creates a `StrokeAttribute` object using either a default constructor,
|
|
1994
1999
|
copy constructor, overloaded constructor, or and interpolation constructor
|
|
1995
2000
|
to interpolate between two `StrokeAttribute` objects.
|
|
1996
2001
|
|
|
1997
2002
|
:param brother: A StrokeAttribute object to be used as a copy constructor.
|
|
1998
|
-
:type brother:
|
|
2003
|
+
:type brother: typing_extensions.Self
|
|
1999
2004
|
"""
|
|
2000
2005
|
...
|
|
2001
2006
|
|
|
@@ -2027,15 +2032,20 @@ when following the stroke.
|
|
|
2027
2032
|
"""
|
|
2028
2033
|
...
|
|
2029
2034
|
|
|
2030
|
-
def __init__(
|
|
2035
|
+
def __init__(
|
|
2036
|
+
self,
|
|
2037
|
+
attribute1: typing_extensions.Self,
|
|
2038
|
+
attribute2: typing_extensions.Self,
|
|
2039
|
+
t: float,
|
|
2040
|
+
):
|
|
2031
2041
|
"""Creates a `StrokeAttribute` object using either a default constructor,
|
|
2032
2042
|
copy constructor, overloaded constructor, or and interpolation constructor
|
|
2033
2043
|
to interpolate between two `StrokeAttribute` objects.
|
|
2034
2044
|
|
|
2035
2045
|
:param attribute1: The first StrokeAttribute object.
|
|
2036
|
-
:type attribute1:
|
|
2046
|
+
:type attribute1: typing_extensions.Self
|
|
2037
2047
|
:param attribute2: The second StrokeAttribute object.
|
|
2038
|
-
:type attribute2:
|
|
2048
|
+
:type attribute2: typing_extensions.Self
|
|
2039
2049
|
:param t: The interpolation parameter (0 <= t <= 1).
|
|
2040
2050
|
:type t: float
|
|
2041
2051
|
"""
|
|
@@ -2217,27 +2227,30 @@ and it won't change the real stroke length).
|
|
|
2217
2227
|
"""
|
|
2218
2228
|
...
|
|
2219
2229
|
|
|
2220
|
-
def __init__(self, brother:
|
|
2230
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
2221
2231
|
"""Builds a `StrokeVertex` using the default constructor,
|
|
2222
2232
|
copy constructor, from 2 `StrokeVertex` and an interpolation parameter,
|
|
2223
2233
|
from a CurvePoint, from a SVertex, or a `SVertex` and a `StrokeAttribute` object.
|
|
2224
2234
|
|
|
2225
2235
|
:param brother: A StrokeVertex object.
|
|
2226
|
-
:type brother:
|
|
2236
|
+
:type brother: typing_extensions.Self
|
|
2227
2237
|
"""
|
|
2228
2238
|
...
|
|
2229
2239
|
|
|
2230
2240
|
def __init__(
|
|
2231
|
-
self,
|
|
2241
|
+
self,
|
|
2242
|
+
first_vertex: typing_extensions.Self,
|
|
2243
|
+
second_vertex: typing_extensions.Self,
|
|
2244
|
+
t3d: float,
|
|
2232
2245
|
):
|
|
2233
2246
|
"""Builds a `StrokeVertex` using the default constructor,
|
|
2234
2247
|
copy constructor, from 2 `StrokeVertex` and an interpolation parameter,
|
|
2235
2248
|
from a CurvePoint, from a SVertex, or a `SVertex` and a `StrokeAttribute` object.
|
|
2236
2249
|
|
|
2237
2250
|
:param first_vertex: The first StrokeVertex.
|
|
2238
|
-
:type first_vertex:
|
|
2251
|
+
:type first_vertex: typing_extensions.Self
|
|
2239
2252
|
:param second_vertex: The second StrokeVertex.
|
|
2240
|
-
:type second_vertex:
|
|
2253
|
+
:type second_vertex: typing_extensions.Self
|
|
2241
2254
|
:param t3d: An interpolation parameter.
|
|
2242
2255
|
:type t3d: float
|
|
2243
2256
|
"""
|
|
@@ -2321,37 +2334,37 @@ For its counterpart (pointing to the first valid element), use it.is_begin.
|
|
|
2321
2334
|
"""
|
|
2322
2335
|
...
|
|
2323
2336
|
|
|
2324
|
-
def __init__(self, brother:
|
|
2337
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
2325
2338
|
"""Creates a `StrokeVertexIterator` using either the
|
|
2326
2339
|
default constructor or the copy constructor.
|
|
2327
2340
|
|
|
2328
2341
|
:param brother: A StrokeVertexIterator object.
|
|
2329
|
-
:type brother:
|
|
2342
|
+
:type brother: typing_extensions.Self
|
|
2330
2343
|
"""
|
|
2331
2344
|
...
|
|
2332
2345
|
|
|
2333
|
-
def decremented(self) ->
|
|
2346
|
+
def decremented(self) -> typing_extensions.Self:
|
|
2334
2347
|
"""Returns a copy of a decremented StrokeVertexIterator.
|
|
2335
2348
|
|
|
2336
2349
|
:return: A StrokeVertexIterator pointing the previous StrokeVertex.
|
|
2337
|
-
:rtype:
|
|
2350
|
+
:rtype: typing_extensions.Self
|
|
2338
2351
|
"""
|
|
2339
2352
|
...
|
|
2340
2353
|
|
|
2341
|
-
def incremented(self) ->
|
|
2354
|
+
def incremented(self) -> typing_extensions.Self:
|
|
2342
2355
|
"""Returns a copy of an incremented StrokeVertexIterator.
|
|
2343
2356
|
|
|
2344
2357
|
:return: A StrokeVertexIterator pointing the next StrokeVertex.
|
|
2345
|
-
:rtype:
|
|
2358
|
+
:rtype: typing_extensions.Self
|
|
2346
2359
|
"""
|
|
2347
2360
|
...
|
|
2348
2361
|
|
|
2349
|
-
def reversed(self) ->
|
|
2362
|
+
def reversed(self) -> typing_extensions.Self:
|
|
2350
2363
|
"""Returns a StrokeVertexIterator that traverses stroke vertices in the
|
|
2351
2364
|
reversed order.
|
|
2352
2365
|
|
|
2353
2366
|
:return: A StrokeVertexIterator traversing stroke vertices backward.
|
|
2354
|
-
:rtype:
|
|
2367
|
+
:rtype: typing_extensions.Self
|
|
2355
2368
|
"""
|
|
2356
2369
|
...
|
|
2357
2370
|
|
|
@@ -2883,11 +2896,11 @@ belongs to. If no object is occluded, this property is set to None.
|
|
|
2883
2896
|
"""Builds a `ViewEdge` using the default constructor or the copy constructor."""
|
|
2884
2897
|
...
|
|
2885
2898
|
|
|
2886
|
-
def __init__(self, brother:
|
|
2899
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
2887
2900
|
"""Builds a `ViewEdge` using the default constructor or the copy constructor.
|
|
2888
2901
|
|
|
2889
2902
|
:param brother: A ViewEdge object.
|
|
2890
|
-
:type brother:
|
|
2903
|
+
:type brother: typing_extensions.Self
|
|
2891
2904
|
"""
|
|
2892
2905
|
...
|
|
2893
2906
|
|
|
@@ -2944,12 +2957,12 @@ of the "begin" ViewEdge.
|
|
|
2944
2957
|
"""
|
|
2945
2958
|
...
|
|
2946
2959
|
|
|
2947
|
-
def __init__(self, brother:
|
|
2960
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
2948
2961
|
"""Builds a ViewEdgeIterator from a starting ViewEdge and its
|
|
2949
2962
|
orientation or the copy constructor.
|
|
2950
2963
|
|
|
2951
2964
|
:param brother: A ViewEdgeIterator object.
|
|
2952
|
-
:type brother:
|
|
2965
|
+
:type brother: typing_extensions.Self
|
|
2953
2966
|
"""
|
|
2954
2967
|
...
|
|
2955
2968
|
|
|
@@ -3042,12 +3055,12 @@ class ViewShape:
|
|
|
3042
3055
|
"""
|
|
3043
3056
|
...
|
|
3044
3057
|
|
|
3045
|
-
def __init__(self, brother:
|
|
3058
|
+
def __init__(self, brother: typing_extensions.Self):
|
|
3046
3059
|
"""Builds a `ViewShape` using the default constructor,
|
|
3047
3060
|
copy constructor, or from a `SShape`.
|
|
3048
3061
|
|
|
3049
3062
|
:param brother: A ViewShape object.
|
|
3050
|
-
:type brother:
|
|
3063
|
+
:type brother: typing_extensions.Self
|
|
3051
3064
|
"""
|
|
3052
3065
|
...
|
|
3053
3066
|
|
|
@@ -3148,11 +3161,11 @@ the ViewEdge is incoming.
|
|
|
3148
3161
|
"""
|
|
3149
3162
|
...
|
|
3150
3163
|
|
|
3151
|
-
def __init__(self, iBrother:
|
|
3164
|
+
def __init__(self, iBrother: typing_extensions.Self):
|
|
3152
3165
|
"""Creates an `orientedViewEdgeIterator` using either the
|
|
3153
3166
|
default constructor or the copy constructor.
|
|
3154
3167
|
|
|
3155
3168
|
:param iBrother: An orientedViewEdgeIterator object.
|
|
3156
|
-
:type iBrother:
|
|
3169
|
+
:type iBrother: typing_extensions.Self
|
|
3157
3170
|
"""
|
|
3158
3171
|
...
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -161,7 +161,7 @@ def material_from_fedge(fe):
|
|
|
161
161
|
...
|
|
162
162
|
|
|
163
163
|
def normal_at_I0D(it): ...
|
|
164
|
-
def pairwise(iterable, types={
|
|
164
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
165
165
|
"""Yields a tuple containing the previous and current object"""
|
|
166
166
|
|
|
167
167
|
...
|
idprop/types/__init__.pyi
CHANGED
|
@@ -50,11 +50,11 @@ class IDPropertyGroup:
|
|
|
50
50
|
"""Return a purely Python version of the group."""
|
|
51
51
|
...
|
|
52
52
|
|
|
53
|
-
def update(self, other: dict |
|
|
53
|
+
def update(self, other: dict | typing_extensions.Self):
|
|
54
54
|
"""Update key, values.
|
|
55
55
|
|
|
56
56
|
:param other: Updates the values in the group with this.
|
|
57
|
-
:type other: dict |
|
|
57
|
+
:type other: dict | typing_extensions.Self
|
|
58
58
|
"""
|
|
59
59
|
...
|
|
60
60
|
|
imbuf/types/__init__.pyi
CHANGED
|
@@ -39,11 +39,11 @@ class ImBuf:
|
|
|
39
39
|
size: typing.Any
|
|
40
40
|
""" size of the image in pixels."""
|
|
41
41
|
|
|
42
|
-
def copy(self) ->
|
|
42
|
+
def copy(self) -> typing_extensions.Self:
|
|
43
43
|
"""
|
|
44
44
|
|
|
45
45
|
:return: A copy of the image.
|
|
46
|
-
:rtype:
|
|
46
|
+
:rtype: typing_extensions.Self
|
|
47
47
|
"""
|
|
48
48
|
...
|
|
49
49
|
|