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

@@ -67,8 +67,7 @@ def package_install_files(
67
67
  *,
68
68
  filter_glob: str = "*.zip;*.py",
69
69
  directory: str = "",
70
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
71
- | None = None,
70
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
72
71
  filepath: str = "",
73
72
  repo: str | None = "",
74
73
  enable_on_install: bool | None = True,
@@ -85,7 +84,7 @@ def package_install_files(
85
84
  :param directory: Directory
86
85
  :type directory: str
87
86
  :param files: files
88
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
87
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
89
88
  :param filepath: filepath
90
89
  :type filepath: str
91
90
  :param repo: User Repository, The user repository to install extensions into
@@ -377,8 +377,7 @@ def import_as_mesh_planes(
377
377
  0.0,
378
378
  0.0,
379
379
  ),
380
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
381
- | None = None,
380
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
382
381
  directory: str = "",
383
382
  filter_image: bool | None = True,
384
383
  filter_movie: bool | None = True,
@@ -494,7 +493,7 @@ def import_as_mesh_planes(
494
493
  :param rotation: Rotation
495
494
  :type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
496
495
  :param files: files
497
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
496
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
498
497
  :param directory: directory
499
498
  :type directory: str
500
499
  :param filter_image: filter_image
@@ -815,8 +814,7 @@ def open_images(
815
814
  /,
816
815
  *,
817
816
  directory: str = "",
818
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
819
- | None = None,
817
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
820
818
  relative_path: bool | None = True,
821
819
  use_sequence_detection: bool | None = True,
822
820
  use_udim_detection: bool | None = True,
@@ -828,7 +826,7 @@ def open_images(
828
826
  :param directory: directory
829
827
  :type directory: str
830
828
  :param files: files
831
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
829
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
832
830
  :param relative_path: Use relative path
833
831
  :type relative_path: bool | None
834
832
  :param use_sequence_detection: Use sequence detection
@@ -11,8 +11,7 @@ def fbx(
11
11
  filepath: str = "",
12
12
  directory: str = "",
13
13
  filter_glob: str = "*.fbx",
14
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
15
- | None = None,
14
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
16
15
  ui_tab: typing.Literal["MAIN", "ARMATURE"] | None = "MAIN",
17
16
  use_manual_orientation: bool | None = False,
18
17
  global_scale: float | None = 1.0,
@@ -47,7 +46,7 @@ def fbx(
47
46
  :param filter_glob: filter_glob
48
47
  :type filter_glob: str
49
48
  :param files: File Path
50
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
49
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
51
50
  :param ui_tab: ui_tab, Import options categories
52
51
 
53
52
  MAIN
@@ -118,8 +117,7 @@ def gltf(
118
117
  export_import_convert_lighting_mode: typing.Literal["SPEC", "COMPAT", "RAW"]
119
118
  | None = "SPEC",
120
119
  filter_glob: str = "*.glb;*.gltf",
121
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
122
- | None = None,
120
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
123
121
  loglevel: int | None = 0,
124
122
  import_pack_images: bool | None = True,
125
123
  merge_vertices: bool | None = False,
@@ -153,7 +151,7 @@ def gltf(
153
151
  :param filter_glob: filter_glob
154
152
  :type filter_glob: str
155
153
  :param files: File Path
156
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
154
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
157
155
  :param loglevel: Log Level, Log Level
158
156
  :type loglevel: int | None
159
157
  :param import_pack_images: Pack Images, Pack all images into .blend file
bpy/ops/node/__init__.pyi CHANGED
@@ -195,8 +195,7 @@ def add_foreach_geometry_element_zone(
195
195
  /,
196
196
  *,
197
197
  use_transform: bool | None = False,
198
- settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
199
- | None = None,
198
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
200
199
  offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
201
200
  ):
202
201
  """Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
@@ -206,7 +205,7 @@ def add_foreach_geometry_element_zone(
206
205
  :param use_transform: Use Transform, Start transform operator after inserting the node
207
206
  :type use_transform: bool | None
208
207
  :param settings: Settings, Settings to be applied on the newly created node
209
- :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
208
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
210
209
  :param offset: Offset, Offset of nodes from the cursor when added
211
210
  :type offset: collections.abc.Iterable[float] | None
212
211
  """
@@ -295,8 +294,7 @@ def add_node(
295
294
  /,
296
295
  *,
297
296
  use_transform: bool | None = False,
298
- settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
299
- | None = None,
297
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
300
298
  type: str = "",
301
299
  ):
302
300
  """Add a node to the active tree
@@ -306,7 +304,7 @@ def add_node(
306
304
  :param use_transform: Use Transform, Start transform operator after inserting the node
307
305
  :type use_transform: bool | None
308
306
  :param settings: Settings, Settings to be applied on the newly created node
309
- :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
307
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
310
308
  :param type: Node Type, Node type
311
309
  :type type: str
312
310
  """
@@ -335,8 +333,7 @@ def add_repeat_zone(
335
333
  /,
336
334
  *,
337
335
  use_transform: bool | None = False,
338
- settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
339
- | None = None,
336
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
340
337
  offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
341
338
  ):
342
339
  """Add a repeat zone that allows executing nodes a dynamic number of times
@@ -346,7 +343,7 @@ def add_repeat_zone(
346
343
  :param use_transform: Use Transform, Start transform operator after inserting the node
347
344
  :type use_transform: bool | None
348
345
  :param settings: Settings, Settings to be applied on the newly created node
349
- :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
346
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
350
347
  :param offset: Offset, Offset of nodes from the cursor when added
351
348
  :type offset: collections.abc.Iterable[float] | None
352
349
  """
@@ -375,8 +372,7 @@ def add_simulation_zone(
375
372
  /,
376
373
  *,
377
374
  use_transform: bool | None = False,
378
- settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
379
- | None = None,
375
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
380
376
  offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
381
377
  ):
382
378
  """Add simulation zone input and output nodes to the active tree
@@ -386,7 +382,7 @@ def add_simulation_zone(
386
382
  :param use_transform: Use Transform, Start transform operator after inserting the node
387
383
  :type use_transform: bool | None
388
384
  :param settings: Settings, Settings to be applied on the newly created node
389
- :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
385
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
390
386
  :param offset: Offset, Offset of nodes from the cursor when added
391
387
  :type offset: collections.abc.Iterable[float] | None
392
388
  """
@@ -1,6 +1,92 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy.ops.transform
5
+
6
+ def attribute_set(
7
+ execution_context: int | str | None = None,
8
+ undo: bool | None = None,
9
+ /,
10
+ *,
11
+ value_float: float | None = 0.0,
12
+ value_float_vector_2d: collections.abc.Iterable[float] | None = (0.0, 0.0),
13
+ value_float_vector_3d: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0),
14
+ value_int: int | None = 0,
15
+ value_int_vector_2d: collections.abc.Iterable[int] | None = (0, 0),
16
+ value_color: collections.abc.Iterable[float] | None = (1.0, 1.0, 1.0, 1.0),
17
+ value_bool: bool | None = False,
18
+ ):
19
+ """Set values of the active attribute for selected elements
20
+
21
+ :type execution_context: int | str | None
22
+ :type undo: bool | None
23
+ :param value_float: Value
24
+ :type value_float: float | None
25
+ :param value_float_vector_2d: Value
26
+ :type value_float_vector_2d: collections.abc.Iterable[float] | None
27
+ :param value_float_vector_3d: Value
28
+ :type value_float_vector_3d: collections.abc.Iterable[float] | None
29
+ :param value_int: Value
30
+ :type value_int: int | None
31
+ :param value_int_vector_2d: Value
32
+ :type value_int_vector_2d: collections.abc.Iterable[int] | None
33
+ :param value_color: Value
34
+ :type value_color: collections.abc.Iterable[float] | None
35
+ :param value_bool: Value
36
+ :type value_bool: bool | None
37
+ """
38
+
39
+ def delete(execution_context: int | str | None = None, undo: bool | None = None):
40
+ """Remove selected points
41
+
42
+ :type execution_context: int | str | None
43
+ :type undo: bool | None
44
+ """
45
+
46
+ def duplicate(
47
+ execution_context: int | str | None = None,
48
+ undo: bool | None = None,
49
+ /,
50
+ *,
51
+ action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
52
+ ):
53
+ """Copy selected points
54
+
55
+ :type execution_context: int | str | None
56
+ :type undo: bool | None
57
+ :param action: Action, Selection action to execute
58
+
59
+ TOGGLE
60
+ Toggle -- Toggle selection for all elements.
61
+
62
+ SELECT
63
+ Select -- Select all elements.
64
+
65
+ DESELECT
66
+ Deselect -- Deselect all elements.
67
+
68
+ INVERT
69
+ Invert -- Invert selection of all elements.
70
+ :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
71
+ """
72
+
73
+ def duplicate_move(
74
+ execution_context: int | str | None = None,
75
+ undo: bool | None = None,
76
+ /,
77
+ *,
78
+ POINT_CLOUD_OT_duplicate: typing.Any | None = None,
79
+ TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
80
+ ):
81
+ """Make copies of selected elements and move them
82
+
83
+ :type execution_context: int | str | None
84
+ :type undo: bool | None
85
+ :param POINT_CLOUD_OT_duplicate: Duplicate, Copy selected points
86
+ :type POINT_CLOUD_OT_duplicate: typing.Any | None
87
+ :param TRANSFORM_OT_translate: Move, Move selected items
88
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
89
+ """
4
90
 
5
91
  def select_all(
6
92
  execution_context: int | str | None = None,
@@ -569,8 +569,7 @@ def studiolight_install(
569
569
  undo: bool | None = None,
570
570
  /,
571
571
  *,
572
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
573
- | None = None,
572
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
574
573
  directory: str = "",
575
574
  filter_folder: bool | None = True,
576
575
  filter_glob: str = "*.png;*.jpg;*.hdr;*.exr",
@@ -581,7 +580,7 @@ def studiolight_install(
581
580
  :type execution_context: int | str | None
582
581
  :type undo: bool | None
583
582
  :param files: File Path
584
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
583
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
585
584
  :param directory: directory
586
585
  :type directory: str
587
586
  :param filter_folder: Filter Folders
bpy/ops/wm/__init__.pyi CHANGED
@@ -480,8 +480,7 @@ def batch_rename(
480
480
  ]
481
481
  | None = "OBJECT",
482
482
  data_source: typing.Literal["SELECT", "ALL"] | None = "SELECT",
483
- actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
484
- | None = None,
483
+ actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction] = None,
485
484
  ):
486
485
  """Rename multiple items at once
487
486
 
@@ -492,7 +491,7 @@ def batch_rename(
492
491
  :param data_source: Source
493
492
  :type data_source: typing.Literal['SELECT','ALL'] | None
494
493
  :param actions: actions
495
- :type actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction] | None
494
+ :type actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
496
495
  """
497
496
 
498
497
  def blend_strings_utf8_validate(
@@ -2817,8 +2816,7 @@ def operator_presets_cleanup(
2817
2816
  /,
2818
2817
  *,
2819
2818
  operator: str = "",
2820
- properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
2821
- | None = None,
2819
+ properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
2822
2820
  ):
2823
2821
  """Remove outdated operator properties from presets that may cause problems
2824
2822
 
@@ -2827,7 +2825,7 @@ def operator_presets_cleanup(
2827
2825
  :param operator: operator
2828
2826
  :type operator: str
2829
2827
  :param properties: properties
2830
- :type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
2828
+ :type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
2831
2829
  """
2832
2830
 
2833
2831
  def owner_disable(
@@ -3234,8 +3232,7 @@ def previews_batch_clear(
3234
3232
  undo: bool | None = None,
3235
3233
  /,
3236
3234
  *,
3237
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
3238
- | None = None,
3235
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
3239
3236
  directory: str = "",
3240
3237
  filter_blender: bool | None = True,
3241
3238
  filter_folder: bool | None = True,
@@ -3251,7 +3248,7 @@ def previews_batch_clear(
3251
3248
  :type execution_context: int | str | None
3252
3249
  :type undo: bool | None
3253
3250
  :param files: files
3254
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
3251
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
3255
3252
  :param directory: directory
3256
3253
  :type directory: str
3257
3254
  :param filter_blender: filter_blender
@@ -3277,8 +3274,7 @@ def previews_batch_generate(
3277
3274
  undo: bool | None = None,
3278
3275
  /,
3279
3276
  *,
3280
- files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
3281
- | None = None,
3277
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
3282
3278
  directory: str = "",
3283
3279
  filter_blender: bool | None = True,
3284
3280
  filter_folder: bool | None = True,
@@ -3294,7 +3290,7 @@ def previews_batch_generate(
3294
3290
  :type execution_context: int | str | None
3295
3291
  :type undo: bool | None
3296
3292
  :param files: Collection of file paths with common directory root
3297
- :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
3293
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
3298
3294
  :param directory: Root path of all files listed in files collection
3299
3295
  :type directory: str
3300
3296
  :param filter_blender: Show Blender files in the File Browser
bpy/types/__init__.pyi CHANGED
@@ -195902,10 +195902,10 @@ class PropertyGroupItem(bpy_struct):
195902
195902
  :type: PropertyGroup
195903
195903
  """
195904
195904
 
195905
- id: ID | None
195905
+ id: ID
195906
195906
  """
195907
195907
 
195908
- :type: ID | None
195908
+ :type: ID
195909
195909
  """
195910
195910
 
195911
195911
  idp_array: bpy_prop_collection[PropertyGroup]
@@ -232307,10 +232307,10 @@ class WindowManager(ID, bpy_struct):
232307
232307
  :type: bpy_prop_collection[Operator]
232308
232308
  """
232309
232309
 
232310
- poselib_previous_action: Action | None
232310
+ poselib_previous_action: Action
232311
232311
  """
232312
232312
 
232313
- :type: Action | None
232313
+ :type: Action
232314
232314
  """
232315
232315
 
232316
232316
  preset_name: str | typing.Any
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250217
3
+ Version: 20250218
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -221,7 +221,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1
221
221
  bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
222
222
  bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
223
223
  bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
224
- bpy/ops/extensions/__init__.pyi,sha256=GtWfFBmoeA2PoRiMqdgYu7cuSXJuVRnLgFpOa-B3M5E,12748
224
+ bpy/ops/extensions/__init__.pyi,sha256=yr_vbqofPPNDn86y_YoUYNOTOI5k2bowWti_1cUmAns,12730
225
225
  bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
226
226
  bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
227
227
  bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
@@ -230,10 +230,10 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9t
230
230
  bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
231
231
  bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
232
232
  bpy/ops/grease_pencil/__init__.pyi,sha256=-5jE8hJDQbMhbAYidVq_c6EmLLgRglboXrElJwlp6oU,62541
233
- bpy/ops/image/__init__.pyi,sha256=GiNPnZRmVUdtFmuckOxdV55Po_2ul_qda5wU2fFrm6U,52466
233
+ bpy/ops/image/__init__.pyi,sha256=ifILNvTm7UirNQzTa3sk9qpHCbinsmxUW4HSNWXF7B8,52430
234
234
  bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
235
235
  bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
236
- bpy/ops/import_scene/__init__.pyi,sha256=-DCT923onVq2BOas29bCrybOE9qJN-1j7KTUhGQ81CM,10282
236
+ bpy/ops/import_scene/__init__.pyi,sha256=hqNXwHQZlcEHpnVhsGhSBeOPndVzmopuH-tcKerEv34,10246
237
237
  bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
238
238
  bpy/ops/lattice/__init__.pyi,sha256=q9buSVqGTwv5woNjo5gvJ8Ymuad0kEXaNulBoOeGCBY,3579
239
239
  bpy/ops/marker/__init__.pyi,sha256=UdcuNJTcu5roTdeLXoV6Rgfpxtnb_LTEJlXklwMtUk0,5376
@@ -242,17 +242,17 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
242
242
  bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
243
243
  bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
244
244
  bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
245
- bpy/ops/node/__init__.pyi,sha256=nX6jbMBsyypERuhUpBJ3Y9ML0wNylwyCH_7WgvDdCtI,53668
245
+ bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
246
246
  bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
247
247
  bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
248
248
  bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
249
249
  bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
250
250
  bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
251
251
  bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
252
- bpy/ops/point_cloud/__init__.pyi,sha256=Wn2jJGg5uLaT-iB_8CC0wivPQfTayFwo1wByePjqp5k,750
252
+ bpy/ops/point_cloud/__init__.pyi,sha256=Tp7l9XE3ka7BY8Po9WULa0Le-YusoQihIOeprVXbl2k,3580
253
253
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
254
254
  bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
255
- bpy/ops/preferences/__init__.pyi,sha256=iG82fOc0EGoI0_KoSgUbtUEMlcN71gxdq3SlVkCz01w,19499
255
+ bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
256
256
  bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
257
257
  bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
258
258
  bpy/ops/rigidbody/__init__.pyi,sha256=WL-53YoWliMEFDB0TAbvSwE9RgqakWuJqaytrj5kPGs,6698
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1
274
274
  bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
275
275
  bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
276
276
  bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
277
- bpy/ops/wm/__init__.pyi,sha256=j7hlRICQ5pqYjsgTQPkJozhTMs4EMBzG6XbGjuLrzDk,215926
277
+ bpy/ops/wm/__init__.pyi,sha256=BiJxzx3scDcCmBLLg7n_sCIaJO4N9J10668yjqyQy8I,215854
278
278
  bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
279
279
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
280
280
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
281
281
  bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
282
- bpy/types/__init__.pyi,sha256=r0btO2YPQW6FCTixTDq2o_7Xfti0uvPWm0iOVIaGwRk,5470325
282
+ bpy/types/__init__.pyi,sha256=pbjHFM-6s0B9Ie905JmRk316a2L3HYTMdt6GGYumMR0,5470297
283
283
  bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
284
284
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
285
285
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
314
314
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
315
315
  freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
316
316
  freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
317
- freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
317
+ freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
319
319
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
320
320
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -345,10 +345,10 @@ keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  mathutils/__init__.pyi,sha256=I80TgzGwK0Xvj-9lrikpgylvmC5DiE6PYt0NTpKXCgg,89255
346
346
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
347
  mathutils/bvhtree/__init__.pyi,sha256=UtzuOlaUjgPwVQZnDiZhPrzgrFmgpyVY7z9WqoZzNsI,4933
348
- mathutils/geometry/__init__.pyi,sha256=q6y5a8T54ZNoIlqkfjx2nZ8iF7G-uHfeFrN7SJqrapc,23278
348
+ mathutils/geometry/__init__.pyi,sha256=Flbctbyann3JzPiTWOILM8KxiiiHLAK39INr-HHNMlo,23219
349
349
  mathutils/interpolate/__init__.pyi,sha256=3MaN3gfetfW_J0ZGye7U9Ae-O5cT7Ok2nyRWjy6HuV4,535
350
350
  mathutils/kdtree/__init__.pyi,sha256=R7efrHFwgdpF3LKlQzW25s-GxVCECQgTuXOwSGoKJTk,2247
351
- mathutils/noise/__init__.pyi,sha256=nDUTZpaghLXZwQG_8sVJnR-vdPeN7qk0p343sAsovgI,12725
351
+ mathutils/noise/__init__.pyi,sha256=zJMNhWV5lwqH09UqfUZ8Kf5kkB4T1kpLBTgfRffwRbE,12727
352
352
  nodeitems_builtins/__init__.pyi,sha256=UEiW_FT6HF0dl6FrM3-n3OnTE1SiufVzyyLjCsGCqPc,475
353
353
  nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
354
  nodeitems_utils/__init__.pyi,sha256=F82sRq2Foowt3d9IUxloVB_qg7pTQP5w8qYvMJhwvFs,747
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250217.dist-info/METADATA,sha256=Ojac8dFRafxqIOPRqZ0YH5YVMQhX_-uJCSMMr-4RYl4,7429
365
- fake_bpy_module-20250217.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
- fake_bpy_module-20250217.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250217.dist-info/RECORD,,
364
+ fake_bpy_module-20250218.dist-info/METADATA,sha256=NbQ7RMQXRxoOI70jkqVXnW6vOlLqQK4j7dGzLHC7vWk,7429
365
+ fake_bpy_module-20250218.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
+ fake_bpy_module-20250218.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250218.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
127
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):
@@ -64,13 +64,11 @@ def box_fit_2d(
64
64
  :rtype: float
65
65
  """
66
66
 
67
- def box_pack_2d(
68
- boxes: list[list[float, float, float, float, ...]],
69
- ) -> tuple[float, float]:
67
+ def box_pack_2d(boxes: list[list[float]]) -> tuple[float, float]:
70
68
  """Returns a tuple with the width and height of the packed bounding box.
71
69
 
72
70
  :param boxes: list of boxes, each box is a list where the first 4 items are [X, Y, width, height, ...] other items are ignored. The X & Y values in this list are modified to set the packed positions.
73
- :type boxes: list[list[float, float, float, float, ...]]
71
+ :type boxes: list[list[float]]
74
72
  :return: The width and height of the packed bounding box.
75
73
  :rtype: tuple[float, float]
76
74
  """
@@ -295,7 +295,7 @@ def voronoi(
295
295
  position: collections.abc.Sequence[float] | mathutils.Vector,
296
296
  distance_metric: str = "DISTANCE",
297
297
  exponent: float = 2.5,
298
- ) -> list[list[float], list[mathutils.Vector]]:
298
+ ) -> list[list[float] | list[mathutils.Vector]]:
299
299
  """Returns a list of distances to the four closest features and their locations.
300
300
 
301
301
  :param position: The position to evaluate the selected noise function.
@@ -305,5 +305,5 @@ def voronoi(
305
305
  :param exponent: The exponent for Minkowski distance metric.
306
306
  :type exponent: float
307
307
  :return: A list of distances to the four closest features and their locations.
308
- :rtype: list[list[float], list[mathutils.Vector]]
308
+ :rtype: list[list[float] | list[mathutils.Vector]]
309
309
  """