fake-bpy-module 20240815__py3-none-any.whl → 20240819__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.
- _bpy_internal/__init__.pyi +3 -3
- _bpy_internal/addons/__init__.pyi +1 -1
- _bpy_internal/extensions/__init__.pyi +3 -3
- bl_app_override/__init__.pyi +1 -1
- bl_console_utils/__init__.pyi +1 -1
- bl_console_utils/autocomplete/__init__.pyi +4 -4
- bl_i18n_utils/__init__.pyi +7 -7
- bl_keymap_utils/__init__.pyi +5 -5
- bl_operators/__init__.pyi +34 -34
- bl_operators/bmesh/__init__.pyi +1 -1
- bl_operators/node_editor/__init__.pyi +1 -1
- bl_operators/presets/__init__.pyi +12 -26
- bl_previews_utils/__init__.pyi +1 -1
- bl_rna_utils/__init__.pyi +1 -1
- bl_text_utils/__init__.pyi +1 -1
- bl_ui/__init__.pyi +79 -77
- bl_ui/space_view3d/__init__.pyi +2 -2
- bl_ui_utils/__init__.pyi +2 -2
- bmesh/__init__.pyi +4 -4
- bpy/__init__.pyi +7 -7
- bpy/app/__init__.pyi +4 -4
- bpy/ops/__init__.pyi +76 -76
- bpy/ops/image/__init__.pyi +4 -4
- bpy/ops/node/__init__.pyi +14 -0
- bpy/types/__init__.pyi +207 -20
- bpy/utils/__init__.pyi +12 -2
- bpy_extras/__init__.pyi +13 -13
- bpy_extras/wm_utils/__init__.pyi +1 -1
- {fake_bpy_module-20240815.dist-info → fake_bpy_module-20240819.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240815.dist-info → fake_bpy_module-20240819.dist-info}/RECORD +41 -39
- {fake_bpy_module-20240815.dist-info → fake_bpy_module-20240819.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +6 -6
- freestyle/utils/__init__.pyi +2 -2
- gpu/__init__.pyi +8 -8
- gpu_extras/__init__.pyi +2 -2
- grease_pencil_python/__init__.pyi +75 -0
- grease_pencil_python/py.typed +0 -0
- idprop/__init__.pyi +1 -1
- imbuf/__init__.pyi +1 -1
- mathutils/__init__.pyi +5 -5
- {fake_bpy_module-20240815.dist-info → fake_bpy_module-20240819.dist-info}/WHEEL +0 -0
bpy/utils/__init__.pyi
CHANGED
|
@@ -13,8 +13,8 @@ bpy.utils.units.rst
|
|
|
13
13
|
import typing
|
|
14
14
|
import collections.abc
|
|
15
15
|
import typing_extensions
|
|
16
|
-
from . import previews
|
|
17
|
-
from . import units
|
|
16
|
+
from . import previews as previews
|
|
17
|
+
from . import units as units
|
|
18
18
|
|
|
19
19
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
20
20
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -107,6 +107,16 @@ def is_path_builtin(path: str) -> bool:
|
|
|
107
107
|
|
|
108
108
|
...
|
|
109
109
|
|
|
110
|
+
def is_path_extension(path: str) -> bool:
|
|
111
|
+
"""Returns True if the path is from an extensions repository.
|
|
112
|
+
|
|
113
|
+
:param path: Path to check if it is within an extension repository.
|
|
114
|
+
:type path: str
|
|
115
|
+
:rtype: bool
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
...
|
|
119
|
+
|
|
110
120
|
def keyconfig_init(): ...
|
|
111
121
|
def keyconfig_set(filepath, *, report=None): ...
|
|
112
122
|
def load_scripts(
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -20,19 +20,19 @@ bpy_extras.id_map_utils.rst
|
|
|
20
20
|
import typing
|
|
21
21
|
import collections.abc
|
|
22
22
|
import typing_extensions
|
|
23
|
-
from . import anim_utils
|
|
24
|
-
from . import asset_utils
|
|
25
|
-
from . import bmesh_utils
|
|
26
|
-
from . import id_map_utils
|
|
27
|
-
from . import image_utils
|
|
28
|
-
from . import io_utils
|
|
29
|
-
from . import keyconfig_utils
|
|
30
|
-
from . import mesh_utils
|
|
31
|
-
from . import node_shader_utils
|
|
32
|
-
from . import node_utils
|
|
33
|
-
from . import object_utils
|
|
34
|
-
from . import view3d_utils
|
|
35
|
-
from . import wm_utils
|
|
23
|
+
from . import anim_utils as anim_utils
|
|
24
|
+
from . import asset_utils as asset_utils
|
|
25
|
+
from . import bmesh_utils as bmesh_utils
|
|
26
|
+
from . import id_map_utils as id_map_utils
|
|
27
|
+
from . import image_utils as image_utils
|
|
28
|
+
from . import io_utils as io_utils
|
|
29
|
+
from . import keyconfig_utils as keyconfig_utils
|
|
30
|
+
from . import mesh_utils as mesh_utils
|
|
31
|
+
from . import node_shader_utils as node_shader_utils
|
|
32
|
+
from . import node_utils as node_utils
|
|
33
|
+
from . import object_utils as object_utils
|
|
34
|
+
from . import view3d_utils as view3d_utils
|
|
35
|
+
from . import wm_utils as wm_utils
|
|
36
36
|
|
|
37
37
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
38
38
|
GenericType2 = typing.TypeVar("GenericType2")
|
bpy_extras/wm_utils/__init__.pyi
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
_bpy_internal/__init__.pyi,sha256=
|
|
1
|
+
_bpy_internal/__init__.pyi,sha256=xBxMVS5jeZ7JJ-in4h_SKH2CdslD33HHToq4KiepQ1A,266
|
|
2
2
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
_bpy_internal/addons/__init__.pyi,sha256=
|
|
3
|
+
_bpy_internal/addons/__init__.pyi,sha256=aMPvlJ62QhDEJ6ZNIyrs09t91H5OyDYkM4CWJ-4MElA,180
|
|
4
4
|
_bpy_internal/addons/cli/__init__.pyi,sha256=NrkfXGlAlMzey1dlYeiq82T3w3t28qIO1dA1uec8OXY,196
|
|
5
|
-
_bpy_internal/extensions/__init__.pyi,sha256=
|
|
5
|
+
_bpy_internal/extensions/__init__.pyi,sha256=rDwvgr3c7JgL9qfZlVQGr_OOdQLvQ-ceQrCIfaxSa2w,304
|
|
6
6
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=n6r4051L4387xFSLkm1UEB-KW9L-t1u9LekbODKf-ak,1109
|
|
7
7
|
_bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=8zmiKnqKL1NDjTBE4Us-9Q_qvl28LHmhc4322QkKGzk,734
|
|
8
8
|
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=slfdVpjluIpcTqn7VUUokUfmvSoJaU8rG3DA9ZvWecE,1024
|
|
@@ -15,19 +15,19 @@ aud/__init__.pyi,sha256=aGQb0UGIxxRw3htdQyzBynl90cec9jyJcivH73hPrMs,34396
|
|
|
15
15
|
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
bgl/__init__.pyi,sha256=ZAh5JywWAZxmNRin7p-bXSC67UFAsPj4XMW-txodAts,101974
|
|
17
17
|
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
bl_app_override/__init__.pyi,sha256=
|
|
18
|
+
bl_app_override/__init__.pyi,sha256=tjW8MeHheM7S7DwcScMnGSli_uKlRJ9GGybpyf4PtVs,461
|
|
19
19
|
bl_app_override/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
bl_app_override/helpers/__init__.pyi,sha256=kTeFGJCRpKb3f4bwEgNiGYa3qv2DBjTKbZzp0KPlpqE,608
|
|
21
21
|
bl_app_template_utils/__init__.pyi,sha256=LK32Jz2_3-P_z_aTNhNesoJcB8tcuTsuP57cWVICzOo,415
|
|
22
22
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
bl_console_utils/__init__.pyi,sha256=
|
|
23
|
+
bl_console_utils/__init__.pyi,sha256=fBuaGfz61iO-X9guOrdSSW3794CdZy81GvZxgVuO6rU,198
|
|
24
24
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
25
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=h-q8TqMiiCWUXpkPrc9DRk-s6dZB5P7R_jtVDoXE7Pg,353
|
|
26
26
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=houeA3ySEXbTQTomD_G5LGYPznRzrs00PL9qcmzfSYY,1562
|
|
27
27
|
bl_console_utils/autocomplete/complete_import/__init__.pyi,sha256=EXbMGXjM-SXiO9YjrbGeRtGfbI2Wa1_IrTaWUPKaiSA,959
|
|
28
28
|
bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=wL7MlSIVZLqcePp1GGq1MTuhuqgixbxIuYyhdYVD-Yc,1630
|
|
29
29
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=CiDwpbt0NWseGL7y_Wv_Psk2AT0zd28AaO01snAINYs,1265
|
|
30
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
30
|
+
bl_i18n_utils/__init__.pyi,sha256=bSYbrlTNFJwJw7znmD76Yhmgtl3WcdJyqbpfYhyxxrM,444
|
|
31
31
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=BbbeY0QHwgH26Sgj8haq_ymY8JOtSBUCizidMlrrIWc,1243
|
|
33
33
|
bl_i18n_utils/merge_po/__init__.pyi,sha256=VMKlY6sPPK4PDFJSwDgVOHQGPd0JXkBL6n5zDxJr61E,172
|
|
@@ -36,7 +36,7 @@ bl_i18n_utils/utils/__init__.pyi,sha256=DySrLCll9MbLGjYMATt-nDobQwTty5jjs4K4BK-g
|
|
|
36
36
|
bl_i18n_utils/utils_cli/__init__.pyi,sha256=VPalRA-OIQSA853IsGx_YQvSMn2kCF1uvV0QmdJU7T4,356
|
|
37
37
|
bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=7pfg2Z03Ds3icuUkKjg79LswbxAhRpKvbTGpEWoCXLk,196
|
|
38
38
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=G3ICiaXO4WBGanIhbP-A2GvmQoHsgeiUBvY2xtJrubI,480
|
|
39
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
39
|
+
bl_keymap_utils/__init__.pyi,sha256=rtsNGen0Guhr-gO5_v0y5HmLlAPSy3z5S3WOm2Rt5zg,376
|
|
40
40
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_keymap_utils/io/__init__.pyi,sha256=ZAl1Cs1CftGk8UQYHahB01zli7ZLZsshsuqK2r5Ti4w,629
|
|
42
42
|
bl_keymap_utils/keymap_from_toolbar/__init__.pyi,sha256=K1ntYJpyXoMZ8ioWtsKEk7NuhGngl9O1td2dfJh7spc,310
|
|
@@ -45,12 +45,12 @@ bl_keymap_utils/platform_helpers/__init__.pyi,sha256=Z2inddkHKDL_WgptJmuc9TpA3I0
|
|
|
45
45
|
bl_keymap_utils/versioning/__init__.pyi,sha256=Wwb94sl5w9ddpFxUtf9xVDM1ivv7r1U1iH0tvW9ln_Q,217
|
|
46
46
|
bl_math/__init__.pyi,sha256=H3twnPxshugX8faMF3Xv4du75O1gLfUypIdplZfIizU,1718
|
|
47
47
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
bl_operators/__init__.pyi,sha256
|
|
48
|
+
bl_operators/__init__.pyi,sha256=-qcbLKmWzQQO-_y-xU8-eSElH4LBqRYMyOhHGCpuKOo,1574
|
|
49
49
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=m2hhJ8mqapeXt0l2GuNdbRKFvStRzgLDYG2PRKQhq2E,1323
|
|
51
51
|
bl_operators/anim/__init__.pyi,sha256=j0FhsoPmL26MM2H9EWityG7oJQ_CJnvDbZJqRbOQC8s,7120
|
|
52
52
|
bl_operators/assets/__init__.pyi,sha256=THac4Ge5gEQFPIq-D_vUeBX0F2kDNxv_lHY7rfGIACI,2966
|
|
53
|
-
bl_operators/bmesh/__init__.pyi,sha256
|
|
53
|
+
bl_operators/bmesh/__init__.pyi,sha256=-a6Tfl9k1DQ1bd2p5-X7OmVBGt_zaBMj9E98HON_kYc,200
|
|
54
54
|
bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=GaTKWwdsYqXkDSr6GNrTgK7yFj8xia_vLcfhtRWLWbI,701
|
|
55
55
|
bl_operators/bone_selection_sets/__init__.pyi,sha256=KVBX3F_Fl9RX04qmHCH39teaEuLFDHmH_jvNrzxmrfs,10911
|
|
56
56
|
bl_operators/clip/__init__.pyi,sha256=bOlnoiEV7k3f3DG9JP5Vg6QLEckg29zR75VmStTl5-o,8689
|
|
@@ -64,13 +64,13 @@ bl_operators/image/__init__.pyi,sha256=VS2sKCd8Lg22me2Mx0Ydq0KsnqnxP7TbUDodTJnx-
|
|
|
64
64
|
bl_operators/image_as_planes/__init__.pyi,sha256=XEBCDXqOsxX6nVjtauDEUTmADxEZYGC4lFwbBV_zLJM,6327
|
|
65
65
|
bl_operators/mesh/__init__.pyi,sha256=GLubm-ywNt4_ncDeszarjD4zcVB7lXvqrsczSgOZLq0,2661
|
|
66
66
|
bl_operators/node/__init__.pyi,sha256=7_lQqUIxALf6sKYeArgaQMShCtb3HpD558BKysR4H04,8350
|
|
67
|
-
bl_operators/node_editor/__init__.pyi,sha256=
|
|
67
|
+
bl_operators/node_editor/__init__.pyi,sha256=4KpnpWQWALtNN-M1fEYtmWjqD-WKV4K976rUq7OchDM,202
|
|
68
68
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=fOnj8Y9mBqkYI3HjN7cj3gNf7zj1TAE14Zj4__m1x08,632
|
|
69
69
|
bl_operators/object/__init__.pyi,sha256=K-jZZbs5DypF0Bh1pNAa1xUpZP49Y2AdUv1lbadqrvA,12341
|
|
70
70
|
bl_operators/object_align/__init__.pyi,sha256=_yRxkv7RAZIQxvqtxHISoCmtgizCe6Lv7xA4MfJVy58,1137
|
|
71
71
|
bl_operators/object_quick_effects/__init__.pyi,sha256=AIWNNfqL-oJRcL_5GQ6GiG8MZ8fJfRNuCm9DJStm-jw,3299
|
|
72
72
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=bstsH89y1c3S_w-b8mkUou1Tnmy3EQoVYqdHH-iOgb4,1057
|
|
73
|
-
bl_operators/presets/__init__.pyi,sha256=
|
|
73
|
+
bl_operators/presets/__init__.pyi,sha256=Tes3JJ1S2ZrylRJXw9rMwnwRppJdmmVHpqOrc257MYo,19246
|
|
74
74
|
bl_operators/rigidbody/__init__.pyi,sha256=RhLxUrI3XYdYEeHVwyfI_TJOR2YXb40nZzCGhMJKl9c,2691
|
|
75
75
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=qF3b5NX7voJa8ybWhvIYMRzGsn1Na7TO95wVevGQYk0,895
|
|
76
76
|
bl_operators/sequencer/__init__.pyi,sha256=ZPyyl8sl3PAR5WM1uJcetPQXqaLELl6Omam9D9OIShg,8237
|
|
@@ -83,16 +83,16 @@ bl_operators/vertexpaint_dirt/__init__.pyi,sha256=OGgUOn63Ntsxe4SuyAJTd0a2AFQ9Y-
|
|
|
83
83
|
bl_operators/view3d/__init__.pyi,sha256=TvlVSJwTfIGToNCWmiB0UqXXaQlnd7lzjHn_LkPi__0,7027
|
|
84
84
|
bl_operators/wm/__init__.pyi,sha256=-X_C9htp0BUK6afuouHUHOBsPJH2O5YzSMJMx_8urQE,34358
|
|
85
85
|
bl_operators/world/__init__.pyi,sha256=av-vZ5MpCwv5r0DXb2xgyI9CL7UZqvkBHiNcM8R4oBA,1067
|
|
86
|
-
bl_previews_utils/__init__.pyi,sha256=
|
|
86
|
+
bl_previews_utils/__init__.pyi,sha256=ZquVnH3G3uZxCq0gcqiQ1xx3oIzOIwPyqFFX4mOxie8,210
|
|
87
87
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
88
|
bl_previews_utils/bl_previews_render/__init__.pyi,sha256=feJiSFYFj03aF0biletFpcQ7nATk_LOA0hdYOwjUjsQ,514
|
|
89
|
-
bl_rna_utils/__init__.pyi,sha256=
|
|
89
|
+
bl_rna_utils/__init__.pyi,sha256=u_grCQnBUdgnuWNsfO4VHM4x1WcPFTrdBjxg-iFKhmI,192
|
|
90
90
|
bl_rna_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
91
|
bl_rna_utils/data_path/__init__.pyi,sha256=XbB9XOPqq6ODjmDhr9t-Ugk1VVOSgAfBWBXWEtUJ4JE,815
|
|
92
|
-
bl_text_utils/__init__.pyi,sha256=
|
|
92
|
+
bl_text_utils/__init__.pyi,sha256=C79JlcnR6quitUHrl9UziOFPV7XeBi_5s6YUDNLgwZk,204
|
|
93
93
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
94
|
bl_text_utils/external_editor/__init__.pyi,sha256=200ikH2qJ33GTvx7Zl_aCCBuSziJRyhaIg5TL1GxJkE,210
|
|
95
|
-
bl_ui/__init__.pyi,sha256=
|
|
95
|
+
bl_ui/__init__.pyi,sha256=Ns5tPUA2kF_GVV11lnPyWJmcNqKw6T-iBMxiIalL9bM,7189
|
|
96
96
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
97
|
bl_ui/anim/__init__.pyi,sha256=Wx2gzS5aZoOW2y5OiabmSdWP7nPcnbM9E1pxuNASURk,741
|
|
98
98
|
bl_ui/asset_shelf/__init__.pyi,sha256=TCTpS8yv3Anod0KVBWyJFATKbhzYo8h8seXDr4j-ZHc,904
|
|
@@ -167,11 +167,11 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=rQ5gwLEW3BUASONIAYcsV-8iY_-nzY
|
|
|
167
167
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=x9Lwpmg38TNsUvFURZRbioBYmqyAxLuPPo15GuXir6o,11661
|
|
168
168
|
bl_ui/space_topbar/__init__.pyi,sha256=JeTpm65HjAyvi6cGk4DlhlrErnmaMi4Ko5u0RyeV0lU,16553
|
|
169
169
|
bl_ui/space_userpref/__init__.pyi,sha256=VBDZ-UTou5eq3zvpDaqa3BGm-NlUgqZh-SaaXiQurqU,82505
|
|
170
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
170
|
+
bl_ui/space_view3d/__init__.pyi,sha256=pX83AuPN7y38TaHTd6TA00aJxPtH7SQG6xZNQ790Vus,175493
|
|
171
171
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=mEIN12EkfZcTZD2APV05s6BABxi6gOzqXUzahxzJNm8,80870
|
|
172
172
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=cPcRrl12m0HeCrRJd3YncBwj3IkHoJX01OfEi3GSS-k,937
|
|
173
173
|
bl_ui/utils/__init__.pyi,sha256=OrumGsAE1S8zBxb80PtYlulQjeAcKneShcJLU-giz5o,612
|
|
174
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
174
|
+
bl_ui_utils/__init__.pyi,sha256=QYT-iRJLu2m9BygUKxyD2bfPD_tijeTQ6RTVEfV5ou0,233
|
|
175
175
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
176
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=oOo0KzX3F0DLrqfoH0CO_g3wN-LQG5nYXmprJriLb9o,210
|
|
177
177
|
bl_ui_utils/layout/__init__.pyi,sha256=CIkhERlfPZhMxz-bdBdNHAolxeY8Zsh5glgZVEUFvdA,282
|
|
@@ -179,21 +179,21 @@ blend_render_info/__init__.pyi,sha256=Syx5o2vhx1EBlEVTs4XK3giWQB-_SFkRHoCmoeBx0Y
|
|
|
179
179
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
180
|
blf/__init__.pyi,sha256=6GiMAdDJ7Ox61nNP2kkBY22dlpLs4_LZY7aRfI1BC9g,5901
|
|
181
181
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
bmesh/__init__.pyi,sha256=
|
|
182
|
+
bmesh/__init__.pyi,sha256=1_VN8I5UlsQ3cDSmJjqy8NpPgmtlMrKV9dX_TKXRjFc,1620
|
|
183
183
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
184
|
bmesh/geometry/__init__.pyi,sha256=UJWjDzaBqiHR7NE_t6JEKNLzJQc5I36b_8GHcn5Ywlc,758
|
|
185
185
|
bmesh/ops/__init__.pyi,sha256=r7V73OgIDK3ZkWAygFWRfflih4TQTjRaTsvVzuxN6-s,75010
|
|
186
186
|
bmesh/types/__init__.pyi,sha256=fz-J0btO_WGmxkE1BRWslGXnF7yE9vPs8AY2AM3Ll7k,41607
|
|
187
187
|
bmesh/utils/__init__.pyi,sha256=0uLRVNx3hdiu5sRbSRSbdMH0s6PyoA56zHG1HXZkjGc,6122
|
|
188
|
-
bpy/__init__.pyi,sha256=
|
|
188
|
+
bpy/__init__.pyi,sha256=eXsyepoLE5nmJxFkMi3FDD9JhvnefoiPG1eYmE3k0p4,556
|
|
189
189
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
-
bpy/app/__init__.pyi,sha256=
|
|
190
|
+
bpy/app/__init__.pyi,sha256=UumxWmIkJNFyHOSyMZAqXdUaqU04_aLPWdThFQcqZ-Q,8300
|
|
191
191
|
bpy/app/handlers/__init__.pyi,sha256=zxasMfExElECjUyHGx5qDKAvS_Q3XvZZSHQE_8Cn6J0,6642
|
|
192
192
|
bpy/app/icons/__init__.pyi,sha256=sRFCWEBekacCpdyef0vl7-Z53eU5UUzG0n6Qj70soc8,1140
|
|
193
193
|
bpy/app/timers/__init__.pyi,sha256=lYUyorTjJRVqOJphUS0Gxwnagg1wBCXoYQSsj-rPvq8,2246
|
|
194
194
|
bpy/app/translations/__init__.pyi,sha256=W3L2ZN2l8DDUs84vlmsH1FxbBZTuesKGN02nB0KLAUM,6974
|
|
195
195
|
bpy/msgbus/__init__.pyi,sha256=klT8MEBSFA8gRXuaS8sJ2DMNtcTfb0O9lhpYh6hr6Ac,2717
|
|
196
|
-
bpy/ops/__init__.pyi,sha256=
|
|
196
|
+
bpy/ops/__init__.pyi,sha256=lkepW1mLex8wS958nZDk_xDJ2FL-U3VXu1NbDIbhdrw,5489
|
|
197
197
|
bpy/ops/action/__init__.pyi,sha256=dzqlbHa_pnoQzTBYT4au5jn_BsVnxpMpZxD6L5pyQfQ,24982
|
|
198
198
|
bpy/ops/anim/__init__.pyi,sha256=Lria4YnrP5dcsZ-n0X4v1wIX_Vnaqk6IF1Xt0u5RRr0,31471
|
|
199
199
|
bpy/ops/armature/__init__.pyi,sha256=IMxUV8wah7kDDXKXXgvhTQx1M646Mbxo2Ql-jKE3r44,28195
|
|
@@ -224,7 +224,7 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=RpAYYMScoOxyEA-BN0DTCct_xo4ReHHMTG3TusJQd
|
|
|
224
224
|
bpy/ops/gpencil/__init__.pyi,sha256=E1l2ZC9Uilh8ckBwsdrbuDge-BYwwdvtwcQID3a2sIQ,107384
|
|
225
225
|
bpy/ops/graph/__init__.pyi,sha256=-Wfh00juJx-90J2qsTdLdSILhwoBduZ_QGa8dZmGH74,53254
|
|
226
226
|
bpy/ops/grease_pencil/__init__.pyi,sha256=6LcMXzIVIuYhc6Cp2gGs0TUZ1Ka0c9YXYgEA34FySX8,53395
|
|
227
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
227
|
+
bpy/ops/image/__init__.pyi,sha256=dZJXm98jnr6e6114JyNl8gXrqNNfpxjXPV9g99O356c,59886
|
|
228
228
|
bpy/ops/import_anim/__init__.pyi,sha256=8HRyzhoN2h0G838B4-wlqqjS75fB_o9fw5Vh0Pbtb9w,3304
|
|
229
229
|
bpy/ops/import_curve/__init__.pyi,sha256=6RgVI-JGcPMXaLQtzilYTDy1meCPZLY5OYzgFB3UgC0,739
|
|
230
230
|
bpy/ops/import_scene/__init__.pyi,sha256=9yZA2_g7NurWnDk2-13vb7HBHIlKSmd89clDL97DMdg,10202
|
|
@@ -236,7 +236,7 @@ bpy/ops/material/__init__.pyi,sha256=HaRThXNsY5X5p6806KNhxKvJNrV-uFex6WDSFCrI8dA
|
|
|
236
236
|
bpy/ops/mball/__init__.pyi,sha256=CCUAtQBcBMOrj_K9xJ583WNbGWJOnBQkoY49Ej5P_KE,5437
|
|
237
237
|
bpy/ops/mesh/__init__.pyi,sha256=tAX9J81DW2dKUr4OywYKbBBkJT5hN_33k1eIlU5Vt5I,156709
|
|
238
238
|
bpy/ops/nla/__init__.pyi,sha256=tZQX61sX0MKiaLh2T23fJVOCvorZH6NAT7ynETTpTsg,24322
|
|
239
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
239
|
+
bpy/ops/node/__init__.pyi,sha256=rjWS33dOoLsaRtNUIGrzqn2KQ0fpbcH2DTYn3ad8Ev4,64186
|
|
240
240
|
bpy/ops/object/__init__.pyi,sha256=cfKk8MP19n6ezWg3EoL9_mTLQHGb40K60uu4Zgk5Zwk,213865
|
|
241
241
|
bpy/ops/outliner/__init__.pyi,sha256=kiuNdqjz4FMbgUPBATodnVAqdwLLTrNiDpXLrTdqs1U,40104
|
|
242
242
|
bpy/ops/paint/__init__.pyi,sha256=B3kcPFPyGVH7qer2NGkFIaDpXUzsoLHzNmUWikU-lX4,44766
|
|
@@ -272,11 +272,11 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
|
|
|
272
272
|
bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
|
|
273
273
|
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
274
274
|
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
275
|
-
bpy/types/__init__.pyi,sha256=
|
|
276
|
-
bpy/utils/__init__.pyi,sha256
|
|
275
|
+
bpy/types/__init__.pyi,sha256=W05q6oUzQAtM6S9h4aStr0SmLG6-_ldY4GydqDvA7QQ,6315059
|
|
276
|
+
bpy/utils/__init__.pyi,sha256=--TTIvXJlO1WRjJS4Jv_EM-XWCp_952xAm3M_O4L5O4,13537
|
|
277
277
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
278
278
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
279
|
-
bpy_extras/__init__.pyi,sha256=
|
|
279
|
+
bpy_extras/__init__.pyi,sha256=hBlWwSbJImJ9KH5DHHxmQxJ0rF5XRevjZ1LRGypREuQ,1061
|
|
280
280
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
281
|
bpy_extras/anim_utils/__init__.pyi,sha256=COEr1AKPpB54o6u8_9HEOJUXDCUr2VK2Cp407anoANE,4293
|
|
282
282
|
bpy_extras/asset_utils/__init__.pyi,sha256=NBITB2b8z-nl31XqjfaGNHhLVro4ao7tUY6JreItS1g,713
|
|
@@ -290,7 +290,7 @@ bpy_extras/node_shader_utils/__init__.pyi,sha256=xbyYyS4SUwzyQx6Kd2Y69pQNsiqgRNB
|
|
|
290
290
|
bpy_extras/node_utils/__init__.pyi,sha256=KiQjiDQGJChfC3UyJQR8wnXxn4UVeUcC7gI3Dj3XgVM,741
|
|
291
291
|
bpy_extras/object_utils/__init__.pyi,sha256=BnC8oYjoyY8GZbmEXK4fmgvgGNJC7Ng8aq4xBA5G_ac,3384
|
|
292
292
|
bpy_extras/view3d_utils/__init__.pyi,sha256=qsVBesUMePjIzm9f4a1O8lriuHVPRSN66ZFRSHj4-I0,3897
|
|
293
|
-
bpy_extras/wm_utils/__init__.pyi,sha256=
|
|
293
|
+
bpy_extras/wm_utils/__init__.pyi,sha256=HaBSd_14Qu00MDdxq9JDtCRhc-Q6E8Wwk3PWDEqHEaw,204
|
|
294
294
|
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=FLxBFo7hzXv_Z9Rz3ktkytB9dMKq_7qviOcjH3TaJWI,1897
|
|
295
295
|
bpy_restrict_state/__init__.pyi,sha256=nVbNSr--KNZPaTtNSw_9uy_oOhSm6G3TMmF78GNnBBI,332
|
|
296
296
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -300,16 +300,16 @@ console_python/__init__.pyi,sha256=RA-YH1Fm7Mx3L6wKntdSB69lbDFf8xDu9sAX0tFPsKs,7
|
|
|
300
300
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
301
|
console_shell/__init__.pyi,sha256=MoxRzoaGKMV8arZgvIt8Yp-FbWe3FlHyOb4w2tH7yw0,322
|
|
302
302
|
console_shell/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
-
freestyle/__init__.pyi,sha256=
|
|
303
|
+
freestyle/__init__.pyi,sha256=M-XrQOZ9q_GGCprvfdQhd_BreXjwVu_Pf6Lc8P4OJLE,809
|
|
304
304
|
freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
305
|
freestyle/chainingiterators/__init__.pyi,sha256=e2aY3pYW1-bEnkjAaof9jYE8Th8JkeOanT_7mSlDdoM,10933
|
|
306
306
|
freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5JsrRY,49803
|
|
307
307
|
freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
|
|
308
308
|
freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
|
|
309
309
|
freestyle/types/__init__.pyi,sha256=i_9VM68H7dzZCYbra4KASlfepVE0_m2Uy2R4vdVNtvY,101225
|
|
310
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
310
|
+
freestyle/utils/__init__.pyi,sha256=c54jy06kGbj31lM6OC0aEfygSaAIRw1yVqYbSOywmq0,5435
|
|
311
311
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
|
|
312
|
-
gpu/__init__.pyi,sha256=
|
|
312
|
+
gpu/__init__.pyi,sha256=6J9JclYf27CZH6F7QVaKgw3V2kUAZ3FJdF8Jp7QbpR8,8068
|
|
313
313
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
314
|
gpu/capabilities/__init__.pyi,sha256=dNGy14-O2_uUicteVvQ3vcFEazArlN8vlaOXmm1sP88,3983
|
|
315
315
|
gpu/matrix/__init__.pyi,sha256=w8sXtDVqKVCfSKGEWnsJYDPcxQ8IIFf7T3jwrBbtwJo,2791
|
|
@@ -319,23 +319,25 @@ gpu/shader/__init__.pyi,sha256=H_OSM6U4ZcEPs_ExI8lMxqb_LT6bf7aUDWusfomyEk4,2127
|
|
|
319
319
|
gpu/state/__init__.pyi,sha256=cPTgox0AW_OabUomyZNPJv-GafM16BPK-oB21hXIdlc,4547
|
|
320
320
|
gpu/texture/__init__.pyi,sha256=d7j_EqDplxMGriX2X8vucyjZNwPN6AHEVzB9v5N7s18,743
|
|
321
321
|
gpu/types/__init__.pyi,sha256=gAseTPbPMHf93nFjZenJwrs9PeL99AaT0Us4nIj1nao,27541
|
|
322
|
-
gpu_extras/__init__.pyi,sha256
|
|
322
|
+
gpu_extras/__init__.pyi,sha256=4T_j2LObp-2jJWMfCVhI9-jX07tsS0O6apvZcGtnQaE,306
|
|
323
323
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
gpu_extras/batch/__init__.pyi,sha256=qYYVMNIiU4mFLKO8nsbzGA6dCtQ_RERdkLyAdK2B6bU,763
|
|
325
325
|
gpu_extras/presets/__init__.pyi,sha256=N8gvDJXOuR-JZPlzNBM-uDdIPFYI9PWsbCOP2I9HDyc,1654
|
|
326
326
|
graphviz_export/__init__.pyi,sha256=HvPexrzoEfbjpRFKPGlVLCmDZuwEeHKgT20JB5zCFkc,308
|
|
327
327
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
|
|
328
|
+
grease_pencil_python/__init__.pyi,sha256=NvUUMs9TpxOccBLc5_1W7tIKrNDGSF53E8q4Sska3og,1860
|
|
329
|
+
grease_pencil_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
+
idprop/__init__.pyi,sha256=50zkiy-i1BKkO93daMuYIhIQ_ejTpadnWuCVGcA_ssQ,184
|
|
329
331
|
idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
332
|
idprop/types/__init__.pyi,sha256=Ipm58rcM3G_A4VbE9h9io_199tR6Jjj6ZhaiwsSukgQ,1888
|
|
331
|
-
imbuf/__init__.pyi,sha256=
|
|
333
|
+
imbuf/__init__.pyi,sha256=T2ypIHiSTPl8rudZWRS66MxLkCJZQ248uyN0HsNQ-Tc,1188
|
|
332
334
|
imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
335
|
imbuf/types/__init__.pyi,sha256=uvYnDao_5x4LWdqznkIlX53tNxHrT6t34HYB8uuZa1g,1359
|
|
334
336
|
keyingsets_builtins/__init__.pyi,sha256=Qm8j2w0L6xWdJ6ufkvRcxX1baSKpS8oSrgQ1szbaln0,16678
|
|
335
337
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
338
|
keyingsets_utils/__init__.pyi,sha256=GM90DATed06QP-LtGvltmKfalWq6tTUeHhUeuRb3hNE,863
|
|
337
339
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
|
-
mathutils/__init__.pyi,sha256=
|
|
340
|
+
mathutils/__init__.pyi,sha256=9mJVzoyVDSTNUx8gf1SZ6Nes4JUfDhTUgdS2tnJU398,90004
|
|
339
341
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
342
|
mathutils/bvhtree/__init__.pyi,sha256=RjuvBwFGaGE-ybvBgCDx2sq19zzjVHIOyh1PlOnlq9c,4455
|
|
341
343
|
mathutils/geometry/__init__.pyi,sha256=V86d1sF454Aiu7gAfx4zWkaf4vrsgzDgz6Q_S9vRJws,21230
|
|
@@ -356,7 +358,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
356
358
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
359
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
358
360
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20240819.dist-info/METADATA,sha256=cWNS9lsoZ8WimoT8NXTaKKuuDZGoboKMlqQVTUhXJyY,7289
|
|
362
|
+
fake_bpy_module-20240819.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
363
|
+
fake_bpy_module-20240819.dist-info/top_level.txt,sha256=RFtEONMp-7cBQp8SY1Y7CMSQl9MOD1rRmBNqS-dGpNg,530
|
|
364
|
+
fake_bpy_module-20240819.dist-info/RECORD,,
|
freestyle/__init__.pyi
CHANGED
|
@@ -19,12 +19,12 @@ freestyle.utils.rst
|
|
|
19
19
|
import typing
|
|
20
20
|
import collections.abc
|
|
21
21
|
import typing_extensions
|
|
22
|
-
from . import chainingiterators
|
|
23
|
-
from . import functions
|
|
24
|
-
from . import predicates
|
|
25
|
-
from . import shaders
|
|
26
|
-
from . import types
|
|
27
|
-
from . import utils
|
|
22
|
+
from . import chainingiterators as chainingiterators
|
|
23
|
+
from . import functions as functions
|
|
24
|
+
from . import predicates as predicates
|
|
25
|
+
from . import shaders as shaders
|
|
26
|
+
from . import types as types
|
|
27
|
+
from . import utils as utils
|
|
28
28
|
|
|
29
29
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
30
30
|
GenericType2 = typing.TypeVar("GenericType2")
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -15,7 +15,7 @@ import typing_extensions
|
|
|
15
15
|
import bpy.types
|
|
16
16
|
import freestyle.types
|
|
17
17
|
|
|
18
|
-
from . import ContextFunctions
|
|
18
|
+
from . import ContextFunctions as ContextFunctions
|
|
19
19
|
|
|
20
20
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
21
21
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -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
|
...
|
gpu/__init__.pyi
CHANGED
|
@@ -226,14 +226,14 @@ based on current time.
|
|
|
226
226
|
import typing
|
|
227
227
|
import collections.abc
|
|
228
228
|
import typing_extensions
|
|
229
|
-
from . import capabilities
|
|
230
|
-
from . import matrix
|
|
231
|
-
from . import platform
|
|
232
|
-
from . import select
|
|
233
|
-
from . import shader
|
|
234
|
-
from . import state
|
|
235
|
-
from . import texture
|
|
236
|
-
from . import types
|
|
229
|
+
from . import capabilities as capabilities
|
|
230
|
+
from . import matrix as matrix
|
|
231
|
+
from . import platform as platform
|
|
232
|
+
from . import select as select
|
|
233
|
+
from . import shader as shader
|
|
234
|
+
from . import state as state
|
|
235
|
+
from . import texture as texture
|
|
236
|
+
from . import types as types
|
|
237
237
|
|
|
238
238
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
239
239
|
GenericType2 = typing.TypeVar("GenericType2")
|
gpu_extras/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ gpu_extras.presets.rst
|
|
|
10
10
|
import typing
|
|
11
11
|
import collections.abc
|
|
12
12
|
import typing_extensions
|
|
13
|
-
from . import batch
|
|
14
|
-
from . import presets
|
|
13
|
+
from . import batch as batch
|
|
14
|
+
from . import presets as presets
|
|
15
15
|
|
|
16
16
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
17
17
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
GenericType1 = typing.TypeVar("GenericType1")
|
|
6
|
+
GenericType2 = typing.TypeVar("GenericType2")
|
|
7
|
+
|
|
8
|
+
class AttributeGetterSetter:
|
|
9
|
+
"""Helper class to get and set attributes at an index for a domain."""
|
|
10
|
+
|
|
11
|
+
...
|
|
12
|
+
|
|
13
|
+
class GreasePencilStrokePointSlice:
|
|
14
|
+
"""A helper class that represents a slice of GreasePencilStrokePoint's."""
|
|
15
|
+
|
|
16
|
+
...
|
|
17
|
+
|
|
18
|
+
class GreasePencilStrokeSlice:
|
|
19
|
+
"""A helper class that represents a slice of GreasePencilStroke's."""
|
|
20
|
+
|
|
21
|
+
...
|
|
22
|
+
|
|
23
|
+
class GreasePencilStroke(AttributeGetterSetter):
|
|
24
|
+
"""A helper class to get access to stroke data."""
|
|
25
|
+
|
|
26
|
+
aspect_ratio: typing.Any
|
|
27
|
+
curve_type: typing.Any
|
|
28
|
+
cyclic: typing.Any
|
|
29
|
+
end_cap: typing.Any
|
|
30
|
+
fill_color: typing.Any
|
|
31
|
+
fill_opacity: typing.Any
|
|
32
|
+
material_index: typing.Any
|
|
33
|
+
points: typing.Any
|
|
34
|
+
select: typing.Any
|
|
35
|
+
softness: typing.Any
|
|
36
|
+
start_cap: typing.Any
|
|
37
|
+
time_start: typing.Any
|
|
38
|
+
|
|
39
|
+
def add_points(self, count):
|
|
40
|
+
"""Add new points at the end of the stroke and returns the new points as a list.
|
|
41
|
+
|
|
42
|
+
:param count:
|
|
43
|
+
"""
|
|
44
|
+
...
|
|
45
|
+
|
|
46
|
+
def remove_points(self, count):
|
|
47
|
+
"""Remove points at the end of the stroke.
|
|
48
|
+
|
|
49
|
+
:param count:
|
|
50
|
+
"""
|
|
51
|
+
...
|
|
52
|
+
|
|
53
|
+
class GreasePencilStrokePoint(AttributeGetterSetter):
|
|
54
|
+
"""A helper class to get access to stroke point data."""
|
|
55
|
+
|
|
56
|
+
delta_time: typing.Any
|
|
57
|
+
opacity: typing.Any
|
|
58
|
+
position: typing.Any
|
|
59
|
+
radius: typing.Any
|
|
60
|
+
rotation: typing.Any
|
|
61
|
+
select: typing.Any
|
|
62
|
+
vertex_color: typing.Any
|
|
63
|
+
|
|
64
|
+
def DefAttributeGetterSetters(attributes_list):
|
|
65
|
+
"""A class decorator that reads a list of attribute information &
|
|
66
|
+
creates properties on the class with getters & setters.
|
|
67
|
+
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
...
|
|
71
|
+
|
|
72
|
+
def def_prop_for_attribute(attr_name, type, default, doc):
|
|
73
|
+
"""Creates a property that can read and write an attribute."""
|
|
74
|
+
|
|
75
|
+
...
|
|
File without changes
|
idprop/__init__.pyi
CHANGED
imbuf/__init__.pyi
CHANGED
mathutils/__init__.pyi
CHANGED
|
@@ -29,11 +29,11 @@ mathutils.noise.rst
|
|
|
29
29
|
import typing
|
|
30
30
|
import collections.abc
|
|
31
31
|
import typing_extensions
|
|
32
|
-
from . import bvhtree
|
|
33
|
-
from . import geometry
|
|
34
|
-
from . import interpolate
|
|
35
|
-
from . import kdtree
|
|
36
|
-
from . import noise
|
|
32
|
+
from . import bvhtree as bvhtree
|
|
33
|
+
from . import geometry as geometry
|
|
34
|
+
from . import interpolate as interpolate
|
|
35
|
+
from . import kdtree as kdtree
|
|
36
|
+
from . import noise as noise
|
|
37
37
|
|
|
38
38
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
39
39
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
File without changes
|