fake-bpy-module 20240503__py3-none-any.whl → 20240505__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.
- bl_ui/space_filebrowser/__init__.pyi +16 -5
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/wm/__init__.pyi +6 -6
- bpy/types/__init__.pyi +34763 -34737
- bpy_extras/__init__.pyi +4 -0
- bpy_extras/anim_utils/__init__.pyi +81 -0
- bpy_extras/asset_utils/__init__.pyi +56 -1
- bpy_extras/bmesh_utils/__init__.pyi +13 -0
- bpy_extras/bmesh_utils/py.typed +0 -0
- bpy_extras/extensions/__init__.pyi +4 -0
- bpy_extras/extensions/junction_module/__init__.pyi +49 -0
- bpy_extras/extensions/junction_module/py.typed +0 -0
- bpy_extras/extensions/py.typed +0 -0
- bpy_extras/id_map_utils/__init__.pyi +15 -0
- bpy_extras/image_utils/__init__.pyi +16 -0
- bpy_extras/io_utils/__init__.pyi +54 -1
- bpy_extras/keyconfig_utils/__init__.pyi +15 -0
- bpy_extras/mesh_utils/__init__.pyi +35 -0
- bpy_extras/node_shader_utils/__init__.pyi +509 -0
- bpy_extras/node_shader_utils/py.typed +0 -0
- bpy_extras/node_utils/__init__.pyi +15 -0
- bpy_extras/object_utils/__init__.pyi +37 -0
- bpy_extras/view3d_utils/__init__.pyi +20 -0
- bpy_extras/wm_utils/__init__.pyi +4 -0
- bpy_extras/wm_utils/progress_report/__init__.pyi +107 -0
- bpy_extras/wm_utils/progress_report/py.typed +0 -0
- bpy_extras/wm_utils/py.typed +0 -0
- {fake_bpy_module-20240503.dist-info → fake_bpy_module-20240505.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240503.dist-info → fake_bpy_module-20240505.dist-info}/RECORD +36 -24
- gpu_extras/__init__.pyi +0 -6
- gpu_extras/batch/__init__.pyi +0 -22
- gpu_extras/presets/__init__.pyi +0 -52
- {fake_bpy_module-20240503.dist-info → fake_bpy_module-20240505.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240503.dist-info → fake_bpy_module-20240505.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
|
|
3
|
+
GenericType = typing.TypeVar("GenericType")
|
|
4
|
+
|
|
5
|
+
class ProgressReport:
|
|
6
|
+
""" """
|
|
7
|
+
|
|
8
|
+
curr_step: typing.Any
|
|
9
|
+
""" """
|
|
10
|
+
|
|
11
|
+
running: typing.Any
|
|
12
|
+
""" """
|
|
13
|
+
|
|
14
|
+
start_time: typing.Any
|
|
15
|
+
""" """
|
|
16
|
+
|
|
17
|
+
steps: typing.Any
|
|
18
|
+
""" """
|
|
19
|
+
|
|
20
|
+
wm: typing.Any
|
|
21
|
+
""" """
|
|
22
|
+
|
|
23
|
+
def enter_substeps(self, nbr, msg):
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
:param nbr:
|
|
27
|
+
:param msg:
|
|
28
|
+
"""
|
|
29
|
+
...
|
|
30
|
+
|
|
31
|
+
def finalize(self):
|
|
32
|
+
""" """
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
def initialize(self, wm):
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
:param wm:
|
|
39
|
+
"""
|
|
40
|
+
...
|
|
41
|
+
|
|
42
|
+
def leave_substeps(self, msg):
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
:param msg:
|
|
46
|
+
"""
|
|
47
|
+
...
|
|
48
|
+
|
|
49
|
+
def start(self):
|
|
50
|
+
""" """
|
|
51
|
+
...
|
|
52
|
+
|
|
53
|
+
def step(self, msg, nbr):
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
:param msg:
|
|
57
|
+
:param nbr:
|
|
58
|
+
"""
|
|
59
|
+
...
|
|
60
|
+
|
|
61
|
+
def update(self, msg):
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
:param msg:
|
|
65
|
+
"""
|
|
66
|
+
...
|
|
67
|
+
|
|
68
|
+
class ProgressReportSubstep:
|
|
69
|
+
""" """
|
|
70
|
+
|
|
71
|
+
final_msg: typing.Any
|
|
72
|
+
""" """
|
|
73
|
+
|
|
74
|
+
level: typing.Any
|
|
75
|
+
""" """
|
|
76
|
+
|
|
77
|
+
msg: typing.Any
|
|
78
|
+
""" """
|
|
79
|
+
|
|
80
|
+
nbr: typing.Any
|
|
81
|
+
""" """
|
|
82
|
+
|
|
83
|
+
progress: typing.Any
|
|
84
|
+
""" """
|
|
85
|
+
|
|
86
|
+
def enter_substeps(self, nbr, msg):
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
:param nbr:
|
|
90
|
+
:param msg:
|
|
91
|
+
"""
|
|
92
|
+
...
|
|
93
|
+
|
|
94
|
+
def leave_substeps(self, msg):
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
:param msg:
|
|
98
|
+
"""
|
|
99
|
+
...
|
|
100
|
+
|
|
101
|
+
def step(self, msg, nbr):
|
|
102
|
+
"""
|
|
103
|
+
|
|
104
|
+
:param msg:
|
|
105
|
+
:param nbr:
|
|
106
|
+
"""
|
|
107
|
+
...
|
|
File without changes
|
|
File without changes
|
|
@@ -246,7 +246,7 @@ bl_ui/space_console/__init__.pyi,sha256=0adLkSZMS82WEvGfafVbNk4prDu2I524z1CVCfx2
|
|
|
246
246
|
bl_ui/space_console/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
247
|
bl_ui/space_dopesheet/__init__.pyi,sha256=x2mzBEyj_13ZqqUL0JBhj_G5XJmEVSVeZh7Brs3Z6hg,80180
|
|
248
248
|
bl_ui/space_dopesheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
-
bl_ui/space_filebrowser/__init__.pyi,sha256=
|
|
249
|
+
bl_ui/space_filebrowser/__init__.pyi,sha256=Rw0OGYlDH1WavFkoiNkzvZiCXw56IYxOrTDTAhZcKm8,76250
|
|
250
250
|
bl_ui/space_filebrowser/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
251
|
bl_ui/space_graph/__init__.pyi,sha256=SZmGw4JIWqELWtHsOh9wHC_GK1LVL6K7tzacBr6EWWc,54390
|
|
252
252
|
bl_ui/space_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -366,7 +366,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=0IogQVQXsp9G7kyI5JtxOuFJWBg4MmEqK5Wz8ehl
|
|
|
366
366
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
bpy/ops/export_mesh/__init__.pyi,sha256=g-ly7MhwZagMZDhISeopxZ4mafvL7SAOZJ82kRr_uu8,3023
|
|
368
368
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
369
|
+
bpy/ops/export_scene/__init__.pyi,sha256=i_DghPe3PC_ZjLeWoiqfuzM9eLe3Zy-SnzkyCxqc4yU,48978
|
|
370
370
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
371
|
bpy/ops/file/__init__.pyi,sha256=oJ_cnxgkGpmc6T6XujhgxqGpl58UABapHlLv27yGl7U,30920
|
|
372
372
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -408,7 +408,7 @@ bpy/ops/mball/__init__.pyi,sha256=AuChtWVSrHuEk3JuYc2bJhxsLJpbmlWgENwV93ISDO0,62
|
|
|
408
408
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
409
|
bpy/ops/mesh/__init__.pyi,sha256=-jX4QanNDVYtcAaGC3q2jlgltNqfIDqmcu6U7QydqC4,181614
|
|
410
410
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
411
|
+
bpy/ops/nla/__init__.pyi,sha256=3K6uSWK8MFi7UYntzCc_YR4mOKTOIvO665w0-zmR6PY,29427
|
|
412
412
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
413
|
bpy/ops/node/__init__.pyi,sha256=Teo0e6YTazie1Z8GRci3dIq3JltOWZ1J368fnaliVcE,75452
|
|
414
414
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -442,7 +442,7 @@ bpy/ops/screen/__init__.pyi,sha256=HWERXpcuatdnc1mlodbF2k0b093T_JBRm2lSSyzi4wQ,3
|
|
|
442
442
|
bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
443
|
bpy/ops/script/__init__.pyi,sha256=MOIKig_wQqP18-jVJxQeOIRJIi7hkIgSt9XFIMsUh6o,1860
|
|
444
444
|
bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
445
|
+
bpy/ops/sculpt/__init__.pyi,sha256=_ZlK_kCqrmCaWZrZqZIZA5s3RnpVRZseHowJcg4lrSA,48106
|
|
446
446
|
bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
447
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=2wH48Nlv36qbV0i0yYFFmLYqCUT4t0TcRKk-b9lzjec,3794
|
|
448
448
|
bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -472,7 +472,7 @@ bpy/ops/view2d/__init__.pyi,sha256=vFU-yoYN3kH9vaCblGHH7_Pt0KnHwQkDwBjpm6GN44g,1
|
|
|
472
472
|
bpy/ops/view2d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
473
|
bpy/ops/view3d/__init__.pyi,sha256=cwDjyV6LQC4iX3dKeLcN-Ksb3fIw1ETxAJfArUuZydE,49512
|
|
474
474
|
bpy/ops/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
475
|
+
bpy/ops/wm/__init__.pyi,sha256=nnt0ZtHVhrLNSJX_UrU6-_abZwsnQ7lXUAYa1JyJ8AA,279769
|
|
476
476
|
bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
477
|
bpy/ops/workspace/__init__.pyi,sha256=t0iiG4SC6A-837yZRxE6wZHU_E2ufWzJhULWmz6XMBM,3836
|
|
478
478
|
bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -482,7 +482,7 @@ bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
|
|
|
482
482
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
bpy/props/__init__.pyi,sha256=FXgbYoK8g8h7efFV8tL9R7E6tPI1MjJzyRC9rJ_sYnw,31482
|
|
484
484
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy/types/__init__.pyi,sha256=
|
|
485
|
+
bpy/types/__init__.pyi,sha256=1K518A3Qz2-ekXOc7CsmsYnw4SdnRh7HSq0PWOhKrMg,5517338
|
|
486
486
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
|
|
488
488
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -490,28 +490,40 @@ bpy/utils/previews/__init__.pyi,sha256=ckbH_Hcikv3u19brIL8jv2f7-Wy0JcXt_uuqJ5t7x
|
|
|
490
490
|
bpy/utils/previews/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
491
|
bpy/utils/units/__init__.pyi,sha256=LAcGjxwWKFDLja0HuuWPvFd9hW8Zc7x1L_M35kzGv00,2784
|
|
492
492
|
bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
|
-
bpy_extras/__init__.pyi,sha256=
|
|
493
|
+
bpy_extras/__init__.pyi,sha256=jRe6HRLx7uuyhpEkf1q2Ofk2ar0tIIA6qPiFsaKLu3k,791
|
|
494
494
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
495
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
495
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=nH5Nbp8i7HzFnTbRiRu2alqyQYpvIifZMKVMgHBzHdg,3333
|
|
496
496
|
bpy_extras/anim_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
-
bpy_extras/asset_utils/__init__.pyi,sha256=
|
|
497
|
+
bpy_extras/asset_utils/__init__.pyi,sha256=X1WHvG3BoMMSjqFDdFPqPO-5jj_Qyoz9xVOaT3knc4I,960
|
|
498
498
|
bpy_extras/asset_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
|
-
bpy_extras/
|
|
499
|
+
bpy_extras/bmesh_utils/__init__.pyi,sha256=eu5HY_8zW-80VUAC_1ggLvzrLWM_0JJgp3HBbmtXUgg,186
|
|
500
|
+
bpy_extras/bmesh_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
+
bpy_extras/extensions/__init__.pyi,sha256=eW6-ZsK_9GjQlSKx3zQazawIFA26aK_gGKgXDDZTuyU,89
|
|
502
|
+
bpy_extras/extensions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
|
+
bpy_extras/extensions/junction_module/__init__.pyi,sha256=3QB4h8TX0bWEXoued__ib2PlatM9HABaoD9siHyX7oc,885
|
|
504
|
+
bpy_extras/extensions/junction_module/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
505
|
+
bpy_extras/id_map_utils/__init__.pyi,sha256=3rAnIlceHwsNEE2NyLrDu5EEXbYy1yOcchhisZ5ElRs,526
|
|
500
506
|
bpy_extras/id_map_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
-
bpy_extras/image_utils/__init__.pyi,sha256=
|
|
507
|
+
bpy_extras/image_utils/__init__.pyi,sha256=1zDa1yM7Og-91iY6wNnAYqqPwWKQv2Na0M790PzyZNA,2268
|
|
502
508
|
bpy_extras/image_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
|
-
bpy_extras/io_utils/__init__.pyi,sha256=
|
|
509
|
+
bpy_extras/io_utils/__init__.pyi,sha256=NUnnYtOPvqZtazc6Bi7HrMwuOUK_vwSwqQgYgbzzNHQ,5937
|
|
504
510
|
bpy_extras/io_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
505
|
-
bpy_extras/keyconfig_utils/__init__.pyi,sha256=
|
|
511
|
+
bpy_extras/keyconfig_utils/__init__.pyi,sha256=UJQBiPmiBHSig88rHG_hpe4OxUX29Ka0cbatE4DOgOk,565
|
|
506
512
|
bpy_extras/keyconfig_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
|
-
bpy_extras/mesh_utils/__init__.pyi,sha256=
|
|
513
|
+
bpy_extras/mesh_utils/__init__.pyi,sha256=474x2WnFCon-x_C0oxm3inKJH12IIxFQJX_3PFNlWDU,3110
|
|
508
514
|
bpy_extras/mesh_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
|
-
bpy_extras/
|
|
515
|
+
bpy_extras/node_shader_utils/__init__.pyi,sha256=ipx6tAfCYKIbWbx6c98-FLooSDtCwD9XicUNjXc4L30,7289
|
|
516
|
+
bpy_extras/node_shader_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
+
bpy_extras/node_utils/__init__.pyi,sha256=7fTyu34Tuaw28jnpDWgRUwhVW7gMXgHIhvcSjo1DaGs,284
|
|
510
518
|
bpy_extras/node_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
-
bpy_extras/object_utils/__init__.pyi,sha256=
|
|
519
|
+
bpy_extras/object_utils/__init__.pyi,sha256=9P7APJbn95F5JjWhDWFzTHeLNjWn5r07TOq6Yk-SeHE,3824
|
|
512
520
|
bpy_extras/object_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
513
|
-
bpy_extras/view3d_utils/__init__.pyi,sha256=
|
|
521
|
+
bpy_extras/view3d_utils/__init__.pyi,sha256=Ul7Q-1PKEk7OGe18RvE37XGoR84h_3f7fN3_jcJKBt0,3778
|
|
514
522
|
bpy_extras/view3d_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
523
|
+
bpy_extras/wm_utils/__init__.pyi,sha256=uBAgB3UhPLvn0ZTPW19X64YX29SorkI1sf7my8gTMaU,89
|
|
524
|
+
bpy_extras/wm_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
|
+
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=Aqcr4n91j5Hq7zfIAGeOZXBHhZPRODpL_sSEvbWsOAU,1410
|
|
526
|
+
bpy_extras/wm_utils/progress_report/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
527
|
bpy_restrict_state/__init__.pyi,sha256=z0wntJmk-6RiN6gW3oMlFkHOBRPIKGYfC_Q9SIoQRQ4,329
|
|
516
528
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
529
|
bpy_types/__init__.pyi,sha256=wWlIdDYOcY7sHNV5mt6VjeV3Dwq2sUKwfmM1Axor-Zg,58258
|
|
@@ -554,11 +566,11 @@ gpu/texture/__init__.pyi,sha256=VGpcPY4DrGapZr7PvEGFJmuWpZDi6H2SezJVG9wtKRI,647
|
|
|
554
566
|
gpu/texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
555
567
|
gpu/types/__init__.pyi,sha256=tJj48EJeGDtcyg7kjWUDeF77oHfYi3fNGxhmKzCUhrY,27391
|
|
556
568
|
gpu/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
557
|
-
gpu_extras/__init__.pyi,sha256=
|
|
569
|
+
gpu_extras/__init__.pyi,sha256=DiukKgkimHp3wI9nJLQm7lq4_Kz9yWOv-WfSw0juShw,190
|
|
558
570
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
559
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
571
|
+
gpu_extras/batch/__init__.pyi,sha256=pSjXxvXYqHZRmXRsWyHHcnzRYJjIAHewvQZywDT26rA,664
|
|
560
572
|
gpu_extras/batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
561
|
-
gpu_extras/presets/__init__.pyi,sha256=
|
|
573
|
+
gpu_extras/presets/__init__.pyi,sha256=1nTMJ2hxByXgFy8Joh1EitjcuojNPP7K3CDfj_s1_5s,1435
|
|
562
574
|
gpu_extras/presets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
563
575
|
graphviz_export/__init__.pyi,sha256=aSzuDNHRbYPNmLYNdQ0km25wroNOVDwv_NZn9rijhBM,219
|
|
564
576
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -600,7 +612,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
600
612
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
601
613
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
602
614
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
603
|
-
fake_bpy_module-
|
|
604
|
-
fake_bpy_module-
|
|
605
|
-
fake_bpy_module-
|
|
606
|
-
fake_bpy_module-
|
|
615
|
+
fake_bpy_module-20240505.dist-info/METADATA,sha256=YKMnUEGVQdhGjfJx7h9SkQIWtUdELY3oHGzvcNn7vRU,7008
|
|
616
|
+
fake_bpy_module-20240505.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
617
|
+
fake_bpy_module-20240505.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
618
|
+
fake_bpy_module-20240505.dist-info/RECORD,,
|
gpu_extras/__init__.pyi
CHANGED
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -19,25 +19,3 @@ def batch_for_shader(
|
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
21
|
...
|
|
22
|
-
|
|
23
|
-
def batch_for_shader(
|
|
24
|
-
shader: gpu.types.GPUShader, type: str, content: dict, indices=None
|
|
25
|
-
) -> gpu.types.GPUBatch:
|
|
26
|
-
"""Return a batch already configured and compatible with the shader.
|
|
27
|
-
|
|
28
|
-
:param shader: shader for which a compatible format will be computed.
|
|
29
|
-
:type shader: gpu.types.GPUShader
|
|
30
|
-
:param type: "'POINTS', 'LINES', 'TRIS' or 'LINES_ADJ'".
|
|
31
|
-
:type type: str
|
|
32
|
-
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
33
|
-
:type content: dict
|
|
34
|
-
:return: compatible batch
|
|
35
|
-
:rtype: gpu.types.GPUBatch
|
|
36
|
-
"""
|
|
37
|
-
|
|
38
|
-
...
|
|
39
|
-
|
|
40
|
-
def batch_for_shader(shader, type, content, indices):
|
|
41
|
-
""" """
|
|
42
|
-
|
|
43
|
-
...
|
gpu_extras/presets/__init__.pyi
CHANGED
|
@@ -25,32 +25,6 @@ def draw_circle_2d(
|
|
|
25
25
|
|
|
26
26
|
...
|
|
27
27
|
|
|
28
|
-
def draw_circle_2d(
|
|
29
|
-
position: mathutils.Vector,
|
|
30
|
-
color,
|
|
31
|
-
radius: float,
|
|
32
|
-
segments: typing.Optional[int] = None,
|
|
33
|
-
):
|
|
34
|
-
"""Draw a circle.
|
|
35
|
-
|
|
36
|
-
:param position: Position where the circle will be drawn.
|
|
37
|
-
:type position: mathutils.Vector
|
|
38
|
-
:param color: Color of the circle. To use transparency GL_BLEND has to be enabled.
|
|
39
|
-
:param radius: Radius of the circle.
|
|
40
|
-
:type radius: float
|
|
41
|
-
:param segments: How many segments will be used to draw the circle.
|
|
42
|
-
Higher values give better results but the drawing will take longer.
|
|
43
|
-
If None or not specified, an automatic value will be calculated.
|
|
44
|
-
:type segments: typing.Optional[int]
|
|
45
|
-
"""
|
|
46
|
-
|
|
47
|
-
...
|
|
48
|
-
|
|
49
|
-
def draw_circle_2d(position, color, radius, segments):
|
|
50
|
-
""" """
|
|
51
|
-
|
|
52
|
-
...
|
|
53
|
-
|
|
54
28
|
def draw_texture_2d(
|
|
55
29
|
texture: gpu.types.GPUTexture,
|
|
56
30
|
position: mathutils.Vector,
|
|
@@ -71,29 +45,3 @@ def draw_texture_2d(
|
|
|
71
45
|
"""
|
|
72
46
|
|
|
73
47
|
...
|
|
74
|
-
|
|
75
|
-
def draw_texture_2d(
|
|
76
|
-
texture: gpu.types.GPUTexture,
|
|
77
|
-
position: mathutils.Vector,
|
|
78
|
-
width: float,
|
|
79
|
-
height: float,
|
|
80
|
-
):
|
|
81
|
-
"""Draw a 2d texture.
|
|
82
|
-
|
|
83
|
-
:param texture: GPUTexture to draw (e.g. gpu.texture.from_image(image) for `bpy.types.Image`).
|
|
84
|
-
:type texture: gpu.types.GPUTexture
|
|
85
|
-
:param position: Position of the lower left corner.
|
|
86
|
-
:type position: mathutils.Vector
|
|
87
|
-
:param width: Width of the image when drawn (not necessarily
|
|
88
|
-
the original width of the texture).
|
|
89
|
-
:type width: float
|
|
90
|
-
:param height: Height of the image when drawn.
|
|
91
|
-
:type height: float
|
|
92
|
-
"""
|
|
93
|
-
|
|
94
|
-
...
|
|
95
|
-
|
|
96
|
-
def draw_texture_2d(texture, position, width, height):
|
|
97
|
-
""" """
|
|
98
|
-
|
|
99
|
-
...
|
|
File without changes
|
|
File without changes
|