fake-bpy-module 20240510__py3-none-any.whl → 20240514__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 +2 -1
- bl_operators/__init__.pyi +1 -0
- bl_operators/world/__init__.pyi +143 -0
- bl_operators/world/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +181 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +362 -0
- bl_ui/space_clip/__init__.pyi +181 -0
- bl_ui/space_sequencer/__init__.pyi +228 -111
- bl_ui/space_toolsystem_toolbar/__init__.pyi +43 -43
- blf/__init__.pyi +3 -2
- bpy/ops/anim/__init__.pyi +1 -1
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +70 -0
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/ui/__init__.pyi +3 -0
- bpy/ops/world/__init__.pyi +16 -0
- bpy/props/__init__.pyi +2 -2
- bpy/types/__init__.pyi +1408 -1563
- bpy_types/__init__.pyi +45 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/RECORD +27 -25
- freestyle/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +2 -2
- mathutils/geometry/__init__.pyi +2 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/top_level.txt +0 -0
bpy_types/__init__.pyi
CHANGED
|
@@ -367,6 +367,9 @@ class BoneCollection:
|
|
|
367
367
|
class Node:
|
|
368
368
|
""" """
|
|
369
369
|
|
|
370
|
+
bl_rna: typing.Any
|
|
371
|
+
""" """
|
|
372
|
+
|
|
370
373
|
id_data: typing.Any
|
|
371
374
|
""" """
|
|
372
375
|
|
|
@@ -422,6 +425,10 @@ class Node:
|
|
|
422
425
|
""" """
|
|
423
426
|
...
|
|
424
427
|
|
|
428
|
+
def is_registered_node_type(self):
|
|
429
|
+
""" """
|
|
430
|
+
...
|
|
431
|
+
|
|
425
432
|
def items(self):
|
|
426
433
|
""" """
|
|
427
434
|
...
|
|
@@ -1603,6 +1610,9 @@ class MeshPolygon:
|
|
|
1603
1610
|
class NodeSocket:
|
|
1604
1611
|
""" """
|
|
1605
1612
|
|
|
1613
|
+
bl_rna: typing.Any
|
|
1614
|
+
""" """
|
|
1615
|
+
|
|
1606
1616
|
id_data: typing.Any
|
|
1607
1617
|
""" """
|
|
1608
1618
|
|
|
@@ -2611,6 +2621,9 @@ class PoseBone(_GenericBone):
|
|
|
2611
2621
|
class NodeInternal(Node):
|
|
2612
2622
|
""" """
|
|
2613
2623
|
|
|
2624
|
+
bl_rna: typing.Any
|
|
2625
|
+
""" """
|
|
2626
|
+
|
|
2614
2627
|
id_data: typing.Any
|
|
2615
2628
|
""" """
|
|
2616
2629
|
|
|
@@ -2666,6 +2679,10 @@ class NodeInternal(Node):
|
|
|
2666
2679
|
""" """
|
|
2667
2680
|
...
|
|
2668
2681
|
|
|
2682
|
+
def is_registered_node_type(self):
|
|
2683
|
+
""" """
|
|
2684
|
+
...
|
|
2685
|
+
|
|
2669
2686
|
def items(self):
|
|
2670
2687
|
""" """
|
|
2671
2688
|
...
|
|
@@ -3542,6 +3559,9 @@ class RNAMetaPropGroup(RNAMeta):
|
|
|
3542
3559
|
class CompositorNode(NodeInternal, Node):
|
|
3543
3560
|
""" """
|
|
3544
3561
|
|
|
3562
|
+
bl_rna: typing.Any
|
|
3563
|
+
""" """
|
|
3564
|
+
|
|
3545
3565
|
id_data: typing.Any
|
|
3546
3566
|
""" """
|
|
3547
3567
|
|
|
@@ -3597,6 +3617,10 @@ class CompositorNode(NodeInternal, Node):
|
|
|
3597
3617
|
""" """
|
|
3598
3618
|
...
|
|
3599
3619
|
|
|
3620
|
+
def is_registered_node_type(self):
|
|
3621
|
+
""" """
|
|
3622
|
+
...
|
|
3623
|
+
|
|
3600
3624
|
def items(self):
|
|
3601
3625
|
""" """
|
|
3602
3626
|
...
|
|
@@ -3655,6 +3679,9 @@ class CompositorNode(NodeInternal, Node):
|
|
|
3655
3679
|
class GeometryNode(NodeInternal, Node):
|
|
3656
3680
|
""" """
|
|
3657
3681
|
|
|
3682
|
+
bl_rna: typing.Any
|
|
3683
|
+
""" """
|
|
3684
|
+
|
|
3658
3685
|
id_data: typing.Any
|
|
3659
3686
|
""" """
|
|
3660
3687
|
|
|
@@ -3710,6 +3737,10 @@ class GeometryNode(NodeInternal, Node):
|
|
|
3710
3737
|
""" """
|
|
3711
3738
|
...
|
|
3712
3739
|
|
|
3740
|
+
def is_registered_node_type(self):
|
|
3741
|
+
""" """
|
|
3742
|
+
...
|
|
3743
|
+
|
|
3713
3744
|
def items(self):
|
|
3714
3745
|
""" """
|
|
3715
3746
|
...
|
|
@@ -3764,6 +3795,9 @@ class GeometryNode(NodeInternal, Node):
|
|
|
3764
3795
|
class ShaderNode(NodeInternal, Node):
|
|
3765
3796
|
""" """
|
|
3766
3797
|
|
|
3798
|
+
bl_rna: typing.Any
|
|
3799
|
+
""" """
|
|
3800
|
+
|
|
3767
3801
|
id_data: typing.Any
|
|
3768
3802
|
""" """
|
|
3769
3803
|
|
|
@@ -3819,6 +3853,10 @@ class ShaderNode(NodeInternal, Node):
|
|
|
3819
3853
|
""" """
|
|
3820
3854
|
...
|
|
3821
3855
|
|
|
3856
|
+
def is_registered_node_type(self):
|
|
3857
|
+
""" """
|
|
3858
|
+
...
|
|
3859
|
+
|
|
3822
3860
|
def items(self):
|
|
3823
3861
|
""" """
|
|
3824
3862
|
...
|
|
@@ -3873,6 +3911,9 @@ class ShaderNode(NodeInternal, Node):
|
|
|
3873
3911
|
class TextureNode(NodeInternal, Node):
|
|
3874
3912
|
""" """
|
|
3875
3913
|
|
|
3914
|
+
bl_rna: typing.Any
|
|
3915
|
+
""" """
|
|
3916
|
+
|
|
3876
3917
|
id_data: typing.Any
|
|
3877
3918
|
""" """
|
|
3878
3919
|
|
|
@@ -3928,6 +3969,10 @@ class TextureNode(NodeInternal, Node):
|
|
|
3928
3969
|
""" """
|
|
3929
3970
|
...
|
|
3930
3971
|
|
|
3972
|
+
def is_registered_node_type(self):
|
|
3973
|
+
""" """
|
|
3974
|
+
...
|
|
3975
|
+
|
|
3931
3976
|
def items(self):
|
|
3932
3977
|
""" """
|
|
3933
3978
|
...
|
|
@@ -6,7 +6,7 @@ addon_utils/__init__.pyi,sha256=5vUTfM09g2CQcblaQ2tps-vBsoJQ2sYonYszqW7kr2A,740
|
|
|
6
6
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
animsys_refactor/__init__.pyi,sha256=CSzrkz-AQqjE7HWPNIzQV24Uv_2Z1H0IHla2GkMPvXU,657
|
|
8
8
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
aud/__init__.pyi,sha256=
|
|
9
|
+
aud/__init__.pyi,sha256=wzxZv5WIEndCv6Rj47cieqrAMWm0eH9glyUqX52VP84,33056
|
|
10
10
|
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
bgl/__init__.pyi,sha256=4QgE3YERv__eJjTgySRSPXN_E8fHTbTH-vafK2v7Q_o,121351
|
|
12
12
|
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -58,7 +58,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=ma5O3Uh4QzL1hjLaCCGdEpLx8TIZa0IsS
|
|
|
58
58
|
bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
bl_math/__init__.pyi,sha256=cAv_Aq_-Q8S6yqpJsQrEjXf1_P5AOFu_UJ3GRare3Yc,1622
|
|
60
60
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
bl_operators/__init__.pyi,sha256=
|
|
61
|
+
bl_operators/__init__.pyi,sha256=JRtpKmoC6MywUu4B0MUeigNZ_IEFb0afGyv3dS-qtNE,890
|
|
62
62
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
63
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=RoKdCBO0EiDsywrJIDcdoe769gx6XIuH_t9yFKuhvys,2734
|
|
64
64
|
bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -120,6 +120,8 @@ bl_operators/view3d/__init__.pyi,sha256=CtrOEo54-Izd6G4KjVgHNy8pI4ACCxsyYvHcjfpD
|
|
|
120
120
|
bl_operators/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
bl_operators/wm/__init__.pyi,sha256=9ttm9paDfHwwhXWDhxso9WfpwgOBpWXygf1XbLQHacw,95068
|
|
122
122
|
bl_operators/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
bl_operators/world/__init__.pyi,sha256=TXl-lkbng0dsPg1vVlyW9P2vk2yQDMQyjVZjer3cBDQ,2105
|
|
124
|
+
bl_operators/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
125
|
bl_previews_utils/__init__.pyi,sha256=p3ziz8G6uAf8yslPB8MclRs0QYdNodhWOytQUjztaFs,92
|
|
124
126
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
127
|
bl_previews_utils/bl_previews_render/__init__.pyi,sha256=PhZF-g5vcybCxV-1aU7Jz408LzbJW4efDzJVeRkvvqY,530
|
|
@@ -170,7 +172,7 @@ bl_ui/properties_data_empty/__init__.pyi,sha256=4Gqr6psM0ZEEfTYsQtGTPryEnOanoJDO
|
|
|
170
172
|
bl_ui/properties_data_empty/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
173
|
bl_ui/properties_data_gpencil/__init__.pyi,sha256=DLtAdrRhRJiZpo9pBA89pztdm2YrgMI34HAtHLK1L08,45197
|
|
172
174
|
bl_ui/properties_data_gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
175
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=FGMv6o8WGP9Nax3TnrRUi2oYqLkdRxO2TuFyn3dpu3s,36041
|
|
174
176
|
bl_ui/properties_data_grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
177
|
bl_ui/properties_data_lattice/__init__.pyi,sha256=4wWnKSosd9LOT76IPwZeB_5s474EZTFKqHefbJc0ljk,7424
|
|
176
178
|
bl_ui/properties_data_lattice/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -194,7 +196,7 @@ bl_ui/properties_data_volume/__init__.pyi,sha256=1_kfEOTIp7B6ERBBRDlSVAHA7fH1SaT
|
|
|
194
196
|
bl_ui/properties_data_volume/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
197
|
bl_ui/properties_freestyle/__init__.pyi,sha256=OHZJDQ0GsaflUDkQIzp3qGvhNjrlJwuvHifMIxsf93Q,65422
|
|
196
198
|
bl_ui/properties_freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
-
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=
|
|
199
|
+
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=pe86GPgQiiSc4PpB_6ULc_3lnmxTAaMG0AtgU-i4Mfg,46426
|
|
198
200
|
bl_ui/properties_grease_pencil_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
201
|
bl_ui/properties_mask_common/__init__.pyi,sha256=nsV25xsJ1XJWfyIYVvw1Qi3rNRnUq27KmlhISYTg5iA,21415
|
|
200
202
|
bl_ui/properties_mask_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -240,7 +242,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=gd8fYDbY7aMcHPKsX7TpwvvoTnl5xzhL9
|
|
|
240
242
|
bl_ui/properties_workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
243
|
bl_ui/properties_world/__init__.pyi,sha256=CmTE-gn3eiC-Q9tC-kTppBhDyEGc5zF390i2KMlVVfk,17128
|
|
242
244
|
bl_ui/properties_world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
|
-
bl_ui/space_clip/__init__.pyi,sha256=
|
|
245
|
+
bl_ui/space_clip/__init__.pyi,sha256=p_odt1jML_cUbsL9XdQd3a-qTW6RCuHBJcAenmG6-1g,182776
|
|
244
246
|
bl_ui/space_clip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
247
|
bl_ui/space_console/__init__.pyi,sha256=0adLkSZMS82WEvGfafVbNk4prDu2I524z1CVCfx2zRk,16365
|
|
246
248
|
bl_ui/space_console/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -262,7 +264,7 @@ bl_ui/space_outliner/__init__.pyi,sha256=F3FPcDW32r5OfbuOafAUqEm0otLlksccGpadjRB
|
|
|
262
264
|
bl_ui/space_outliner/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
265
|
bl_ui/space_properties/__init__.pyi,sha256=UinQxegEVlaHM2kChYUjIKiydcTB_wcUkOJTo-JiAt4,6470
|
|
264
266
|
bl_ui/space_properties/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
267
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=IC51iC9iNquhtE5X1hw_YTIMi0nebkfkxx6PXfvi5FY,197030
|
|
266
268
|
bl_ui/space_sequencer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
269
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=Qqn5v0g_C5hnS5V5jI5kb8G8AaQKCf_RFfzpOewN0Zc,3029
|
|
268
270
|
bl_ui/space_spreadsheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -274,7 +276,7 @@ bl_ui/space_time/__init__.pyi,sha256=dkaagkFhHYmq5rrPj9ujIEaTuKGYV-4gC7oaZVNdo0M
|
|
|
274
276
|
bl_ui/space_time/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
277
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=3NSHhm3bbYGSCE7U2aexYKvzhYhnCFmVcCABsO5W4Uc,6457
|
|
276
278
|
bl_ui/space_toolsystem_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
279
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=iPjEChfmGD7I4LBRkFtz0q-eYgHDvYI9H840_nWcNsQ,25928
|
|
278
280
|
bl_ui/space_toolsystem_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
281
|
bl_ui/space_topbar/__init__.pyi,sha256=QEsZc7xfr-__L_urfSh-mu-7rSeZ6CYwWaIrE3JtOsI,70218
|
|
280
282
|
bl_ui/space_topbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -296,7 +298,7 @@ bl_ui_utils/layout/__init__.pyi,sha256=VbNmsUvcumWwy1Fx2T6nRXmXyrddf95ceXvq-AA-A
|
|
|
296
298
|
bl_ui_utils/layout/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
299
|
blend_render_info/__init__.pyi,sha256=smxScTsZTo-gvrHvAgXvk-J23PpEa2DF-CdnELTa11E,200
|
|
298
300
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
blf/__init__.pyi,sha256
|
|
301
|
+
blf/__init__.pyi,sha256=-ZEbcsuwLmccQYWMus1Cl2n8BZY_u6LuhWkekIs7lj8,5857
|
|
300
302
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
303
|
bmesh/__init__.pyi,sha256=JHZzU3bVJasGCKpoYlhx2qKcWcyY0n4lJ1VNkOziTbI,1487
|
|
302
304
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -326,7 +328,7 @@ bpy/ops/__init__.pyi,sha256=RZz5LlK9yr_90yaLiSvaetn0An4QtTDkigOhgPLUlCM,4602
|
|
|
326
328
|
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
329
|
bpy/ops/action/__init__.pyi,sha256=u4qepsdwwYRUQXfaoE6IJeX5BZnCgD01botsUPzInSg,30233
|
|
328
330
|
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
-
bpy/ops/anim/__init__.pyi,sha256=
|
|
331
|
+
bpy/ops/anim/__init__.pyi,sha256=rXz3U4MQ9Ry4hsUtRXx8dlrTobu2d1SaO6Bq1BOgwxw,41062
|
|
330
332
|
bpy/ops/anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
333
|
bpy/ops/armature/__init__.pyi,sha256=kGDfn9IgNPyM5ixVoTmujYuOwQ37v9Vm3IVwjam-BUg,35970
|
|
332
334
|
bpy/ops/armature/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -366,7 +368,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=8D8_RyToRNb-9gy9p_7OcvOj3CouxJMQvBBH7u2H
|
|
|
366
368
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
369
|
bpy/ops/export_mesh/__init__.pyi,sha256=C7_bUc-vcYvJ9vwpig8U7tSWPR03YKx53ky681QjFLE,3085
|
|
368
370
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
371
|
+
bpy/ops/export_scene/__init__.pyi,sha256=noiTFbewqaYzrWqNWBUR6OZ0eHcAsmSqSdLD4PnMABc,49164
|
|
370
372
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
373
|
bpy/ops/file/__init__.pyi,sha256=Botj2G5l4pSrG4mePH62WFrM16bva7SSMx-BpE8XZ6U,33400
|
|
372
374
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -382,7 +384,7 @@ bpy/ops/gpencil/__init__.pyi,sha256=LgpPFK8RYkAyn6MJKiohGFrqgEbxJ6DvYY-D46Q4mcI,
|
|
|
382
384
|
bpy/ops/gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
385
|
bpy/ops/graph/__init__.pyi,sha256=NopynZk8nmW-23Nv0OKE5XQ7tZpsZv9U_e3n9BF9hEE,64350
|
|
384
386
|
bpy/ops/graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
387
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=7NviEWUyUR5FPMLSsp_iKF9VIHuYFKzUI7JNqUbY9ps,53873
|
|
386
388
|
bpy/ops/grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
389
|
bpy/ops/image/__init__.pyi,sha256=Ypn60qQ3M77U3Rb6uhXsD6Xjv01EuNb8rRr_I_C7-Aw,61179
|
|
388
390
|
bpy/ops/image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -408,7 +410,7 @@ bpy/ops/mball/__init__.pyi,sha256=J2JsjCmxmZgUC91RJN6OJmu4L42ZeGxVZsnP_V4yuZg,67
|
|
|
408
410
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
411
|
bpy/ops/mesh/__init__.pyi,sha256=ZuNHTarPiycwnhGlSsRJQGVKebQ1_XUTiik3-zH4Ou0,191720
|
|
410
412
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
413
|
+
bpy/ops/nla/__init__.pyi,sha256=ZYQW_6dISN1e4vzDCiB3bvsa1Yy18PGGWrampp-TRfk,31845
|
|
412
414
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
415
|
bpy/ops/node/__init__.pyi,sha256=4q3MNi9bhQqhWSRULuuU6GBj0qgmr1lgQkCF8wuTGOs,81714
|
|
414
416
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -442,7 +444,7 @@ bpy/ops/screen/__init__.pyi,sha256=sWJeU7yfpInIo6X-CV7qtN4cqDxoXVqOTWSYhOcK1is,3
|
|
|
442
444
|
bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
445
|
bpy/ops/script/__init__.pyi,sha256=E_8BsnqT592yOlYxyMTpaHFt-I48PYxrFlsa-tTLQMs,2046
|
|
444
446
|
bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
447
|
+
bpy/ops/sculpt/__init__.pyi,sha256=QGa1sBPEY0XditnGEpxhVf6s6QpSbOCTfGPKzC7RSc0,50152
|
|
446
448
|
bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
449
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=tNoH0zrMiqCxUa_YEkiktDZV-8AdzHxJhAwyxzM7hEQ,4042
|
|
448
450
|
bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -462,7 +464,7 @@ bpy/ops/texture/__init__.pyi,sha256=0b0VefVEtBMwxTfQc27-8x6bmFDrljeDU3nALagLvH0,
|
|
|
462
464
|
bpy/ops/texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
465
|
bpy/ops/transform/__init__.pyi,sha256=brElXnd6U4W6lA8g-i5qb4YAP40mpo9RzEY-Wan7hTc,78108
|
|
464
466
|
bpy/ops/transform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
467
|
+
bpy/ops/ui/__init__.pyi,sha256=Kbdiyqr7rOC1fdI9U1V4ataies5l2vkNr7Q1xlwkx8Y,22245
|
|
466
468
|
bpy/ops/ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
467
469
|
bpy/ops/uilist/__init__.pyi,sha256=ynItZoCTzLj0fxgvE3CoIc6Uht64Nyb5nKdoBoMrQAs,2806
|
|
468
470
|
bpy/ops/uilist/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -476,13 +478,13 @@ bpy/ops/wm/__init__.pyi,sha256=zrrygv_p5BwQ3m0WUW9jtM_UHliJ3NKmIXqdqu8j4BA,28782
|
|
|
476
478
|
bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
479
|
bpy/ops/workspace/__init__.pyi,sha256=Wbe-ndwbRwxwBtzDXxt1iPXMzpsX2QGW8eEZ9O3pAbI,4270
|
|
478
480
|
bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/ops/world/__init__.pyi,sha256=
|
|
481
|
+
bpy/ops/world/__init__.pyi,sha256=N78Y-9w1Lki3YPn0auCCUiyQHmh9H-S3B5TmKrUG64U,1138
|
|
480
482
|
bpy/ops/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
483
|
bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
|
|
482
484
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
|
-
bpy/props/__init__.pyi,sha256=
|
|
485
|
+
bpy/props/__init__.pyi,sha256=ldeJSJMDgsrYzb0qkkGnAxGMSapRTrv-h2p3UaUOqNY,31492
|
|
484
486
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy/types/__init__.pyi,sha256=
|
|
487
|
+
bpy/types/__init__.pyi,sha256=rgYnKxlEFgleEKljPapaS9cy-7q8yWTTq0VJFLGPCK8,5534640
|
|
486
488
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
489
|
bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
|
|
488
490
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -526,7 +528,7 @@ bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=Aqcr4n91j5Hq7zfIAGeOZXBH
|
|
|
526
528
|
bpy_extras/wm_utils/progress_report/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
527
529
|
bpy_restrict_state/__init__.pyi,sha256=z0wntJmk-6RiN6gW3oMlFkHOBRPIKGYfC_Q9SIoQRQ4,329
|
|
528
530
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
529
|
-
bpy_types/__init__.pyi,sha256=
|
|
531
|
+
bpy_types/__init__.pyi,sha256=BgsPdgOCSZGYWJjF0ZLQkGrF8aWjJFYrfDT13fbveQM,58918
|
|
530
532
|
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
533
|
console_python/__init__.pyi,sha256=Inm6_DPDVMBeaDI8iLzuxyiUB_hOZ7ekIQ6zVDkmTs0,585
|
|
532
534
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -542,7 +544,7 @@ freestyle/predicates/__init__.pyi,sha256=t1r8JMa7NFShRIh63Cu2Kp3iEweFFMP9Un-LOFs
|
|
|
542
544
|
freestyle/predicates/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
545
|
freestyle/shaders/__init__.pyi,sha256=r9ApZsDHOt5XpYu2CXLpOjrdMlp1QAY8W_ihOyWBaSU,24805
|
|
544
546
|
freestyle/shaders/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
|
-
freestyle/types/__init__.pyi,sha256=
|
|
547
|
+
freestyle/types/__init__.pyi,sha256=KmJLMe1BeCNtGGH-N85JzpfbS8BWZRXPYGxvBMwzfW4,101978
|
|
546
548
|
freestyle/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
549
|
freestyle/utils/__init__.pyi,sha256=Xqa0uopKq8a81ZY34Yb4TgIukHvF_2XakXHUgWZtDv8,5377
|
|
548
550
|
freestyle/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -586,11 +588,11 @@ keyingsets_builtins/__init__.pyi,sha256=dqXFWEEtoZ5Qy1cBdF8xNKe5Iu6UWHVecug0VM4F
|
|
|
586
588
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
589
|
keyingsets_utils/__init__.pyi,sha256=29-o4Z0jsPvFzDCgnpVs0X0DsOhnwgBPTLWNqCR7JP4,1018
|
|
588
590
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
|
-
mathutils/__init__.pyi,sha256=
|
|
591
|
+
mathutils/__init__.pyi,sha256=GSm7rIjxpLBcYfg-tkU7xn6i2hv_teQhplW-chC8RxQ,75441
|
|
590
592
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
591
593
|
mathutils/bvhtree/__init__.pyi,sha256=a1J3pqbuazrNj4d5yeQO4GLXKfJsb9DRQfetHZB36h0,4344
|
|
592
594
|
mathutils/bvhtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
|
-
mathutils/geometry/__init__.pyi,sha256=
|
|
595
|
+
mathutils/geometry/__init__.pyi,sha256=JlKAN7lmBazG4Zp5bFVKHQUX8r9KVM2BR-M2Xlj1IBU,21873
|
|
594
596
|
mathutils/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
597
|
mathutils/interpolate/__init__.pyi,sha256=CvBzpVTIf1rwilMUmdREPUSD5aCKxFEId_SwlpJAGCg,307
|
|
596
598
|
mathutils/interpolate/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -612,7 +614,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
612
614
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
615
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
614
616
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
-
fake_bpy_module-
|
|
616
|
-
fake_bpy_module-
|
|
617
|
-
fake_bpy_module-
|
|
618
|
-
fake_bpy_module-
|
|
617
|
+
fake_bpy_module-20240514.dist-info/METADATA,sha256=NJlCQKy0-M7Oj2hM3_wXV0jG4N_Kx9nRvNXPwr-4zls,7008
|
|
618
|
+
fake_bpy_module-20240514.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
619
|
+
fake_bpy_module-20240514.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
620
|
+
fake_bpy_module-20240514.dist-info/RECORD,,
|
freestyle/types/__init__.pyi
CHANGED
|
@@ -3136,10 +3136,13 @@ class orientedViewEdgeIterator:
|
|
|
3136
3136
|
obtained from a ViewVertex by calling edges_begin() or edges_end().
|
|
3137
3137
|
"""
|
|
3138
3138
|
|
|
3139
|
-
object: typing.
|
|
3139
|
+
object: typing.Tuple[ViewEdge]
|
|
3140
3140
|
""" The oriented ViewEdge (i.e., a tuple of the pointed ViewEdge and a boolean
|
|
3141
3141
|
value) currently pointed to by this iterator. If the boolean value is true,
|
|
3142
|
-
the ViewEdge is incoming.
|
|
3142
|
+
the ViewEdge is incoming.
|
|
3143
|
+
|
|
3144
|
+
:type: typing.Tuple[ViewEdge]
|
|
3145
|
+
"""
|
|
3143
3146
|
|
|
3144
3147
|
def __init__(self):
|
|
3145
3148
|
"""Creates an `orientedViewEdgeIterator` using either the
|
mathutils/__init__.pyi
CHANGED
|
@@ -676,11 +676,11 @@ class Matrix:
|
|
|
676
676
|
"""
|
|
677
677
|
...
|
|
678
678
|
|
|
679
|
-
def decompose(self) -> Quaternion:
|
|
679
|
+
def decompose(self) -> typing.Tuple[Vector, Quaternion, Vector]:
|
|
680
680
|
"""Return the translation, rotation, and scale components of this matrix.
|
|
681
681
|
|
|
682
682
|
:return: tuple of translation, rotation, and scale
|
|
683
|
-
:rtype: Quaternion
|
|
683
|
+
:rtype: typing.Tuple[Vector, Quaternion, Vector]
|
|
684
684
|
"""
|
|
685
685
|
...
|
|
686
686
|
|
mathutils/geometry/__init__.pyi
CHANGED
|
@@ -325,13 +325,14 @@ def intersect_point_line(
|
|
|
325
325
|
mathutils.Vector,
|
|
326
326
|
],
|
|
327
327
|
line_p2,
|
|
328
|
-
):
|
|
328
|
+
) -> typing.Tuple[mathutils.Vector]:
|
|
329
329
|
"""Takes a point and a line and returns a tuple with the closest point on the line and its distance from the first point of the line as a percentage of the length of the line.
|
|
330
330
|
|
|
331
331
|
:param pt: Point
|
|
332
332
|
:type pt: typing.Union[typing.Sequence[float], mathutils.Vector]
|
|
333
333
|
:param line_p1: First point of the lineSecond point of the line
|
|
334
334
|
:type line_p1: typing.Union[typing.Sequence[float], mathutils.Vector, typing.Sequence[float], mathutils.Vector]
|
|
335
|
+
:rtype: typing.Tuple[mathutils.Vector]
|
|
335
336
|
"""
|
|
336
337
|
|
|
337
338
|
...
|
|
File without changes
|
|
File without changes
|