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

@@ -359,7 +359,7 @@ def brush_settings(layout, context, brush, popover=False):
359
359
 
360
360
  """
361
361
 
362
- def brush_settings_advanced(layout, context, brush, popover=False):
362
+ def brush_settings_advanced(layout, context, settings, brush, popover=False):
363
363
  """Draw advanced brush settings for Sculpt, Texture/Vertex/Weight Paint modes."""
364
364
 
365
365
  def brush_shared_settings(layout, context, brush, popover=False):
@@ -4166,7 +4166,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu):
4166
4166
  :param _context:
4167
4167
  """
4168
4168
 
4169
- class VIEW3D_MT_select_edit_point_cloud(bpy.types.Menu):
4169
+ class VIEW3D_MT_select_edit_pointcloud(bpy.types.Menu):
4170
4170
  bl_label: typing.Any
4171
4171
  bl_rna: typing.Any
4172
4172
  id_data: typing.Any
@@ -399,7 +399,7 @@ type ContextModeItems = typing.Literal[
399
399
  "EDIT_METABALL", # Metaball Edit.
400
400
  "EDIT_LATTICE", # Lattice Edit.
401
401
  "EDIT_GREASE_PENCIL", # Grease Pencil Edit.
402
- "EDIT_POINT_CLOUD", # Point Cloud Edit.
402
+ "EDIT_POINTCLOUD", # Point Cloud Edit.
403
403
  "POSE", # Pose.
404
404
  "SCULPT", # Sculpt.
405
405
  "PAINT_WEIGHT", # Weight Paint.
@@ -785,6 +785,9 @@ type GreasePencilSelectmodeItems = typing.Literal[
785
785
  ]
786
786
  type IconItems = typing.Literal[
787
787
  "NONE", # NONE.
788
+ "CHAR_NOTDEF", # CHAR_NOTDEF.
789
+ "CHAR_REPLACEMENT", # CHAR_REPLACEMENT.
790
+ "NOT_FOUND", # NOT_FOUND.
788
791
  "BLANK1", # BLANK1.
789
792
  "AUTOMERGE_OFF", # AUTOMERGE_OFF.
790
793
  "AUTOMERGE_ON", # AUTOMERGE_ON.
@@ -857,6 +860,7 @@ type IconItems = typing.Literal[
857
860
  "GHOST_DISABLED", # GHOST_DISABLED.
858
861
  "GHOST_ENABLED", # GHOST_ENABLED.
859
862
  "GRIP", # GRIP.
863
+ "GRIP_V", # GRIP_V.
860
864
  "HAND", # HAND.
861
865
  "HELP", # HELP.
862
866
  "LINKED", # LINKED.
bpy/ops/__init__.pyi CHANGED
@@ -207,7 +207,7 @@ from . import paint as paint
207
207
  from . import paintcurve as paintcurve
208
208
  from . import palette as palette
209
209
  from . import particle as particle
210
- from . import point_cloud as point_cloud
210
+ from . import pointcloud as pointcloud
211
211
  from . import pose as pose
212
212
  from . import poselib as poselib
213
213
  from . import preferences as preferences
@@ -393,6 +393,13 @@ def select_random(
393
393
  :type probability: float | None
394
394
  """
395
395
 
396
+ def separate(execution_context: int | str | None = None, undo: bool | None = None):
397
+ """Separate selected geometry into a new object
398
+
399
+ :type execution_context: int | str | None
400
+ :type undo: bool | None
401
+ """
402
+
396
403
  def set_selection_domain(
397
404
  execution_context: int | str | None = None,
398
405
  undo: bool | None = None,
@@ -566,8 +566,7 @@ def convert(
566
566
  undo: bool | None = None,
567
567
  /,
568
568
  *,
569
- target: typing.Literal["CURVE", "MESH", "POINTCLOUD", "CURVES", "GREASEPENCIL"]
570
- | None = "MESH",
569
+ target: typing.Literal["CURVE", "MESH", "CURVES", "GREASEPENCIL"] | None = "MESH",
571
570
  keep_original: bool | None = False,
572
571
  merge_customdata: bool | None = True,
573
572
  thickness: int | None = 5,
@@ -584,17 +583,14 @@ def convert(
584
583
  Curve -- Curve from Mesh or Text objects.
585
584
 
586
585
  MESH
587
- Mesh -- Mesh from Curve, Surface, Metaball, Text, or Point Cloud objects.
588
-
589
- POINTCLOUD
590
- Point Cloud -- Point Cloud from Mesh objects.
586
+ Mesh -- Mesh from Curve, Surface, Metaball, or Text objects.
591
587
 
592
588
  CURVES
593
589
  Curves -- Curves from evaluated curve data.
594
590
 
595
591
  GREASEPENCIL
596
592
  Grease Pencil -- Grease Pencil from Curve or Mesh objects.
597
- :type target: typing.Literal['CURVE','MESH','POINTCLOUD','CURVES','GREASEPENCIL'] | None
593
+ :type target: typing.Literal['CURVE','MESH','CURVES','GREASEPENCIL'] | None
598
594
  :param keep_original: Keep Original, Keep original objects instead of replacing them
599
595
  :type keep_original: bool | None
600
596
  :param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
@@ -43,31 +43,11 @@ def delete(execution_context: int | str | None = None, undo: bool | None = None)
43
43
  :type undo: bool | None
44
44
  """
45
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
- ):
46
+ def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
53
47
  """Copy selected points
54
48
 
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
49
+ :type execution_context: int | str | None
50
+ :type undo: bool | None
71
51
  """
72
52
 
73
53
  def duplicate_move(
@@ -75,15 +55,15 @@ def duplicate_move(
75
55
  undo: bool | None = None,
76
56
  /,
77
57
  *,
78
- POINT_CLOUD_OT_duplicate: typing.Any | None = None,
58
+ POINTCLOUD_OT_duplicate: duplicate | None = None,
79
59
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
80
60
  ):
81
61
  """Make copies of selected elements and move them
82
62
 
83
63
  :type execution_context: int | str | None
84
64
  :type undo: bool | None
85
- :param POINT_CLOUD_OT_duplicate: Duplicate, Copy selected points
86
- :type POINT_CLOUD_OT_duplicate: typing.Any | None
65
+ :param POINTCLOUD_OT_duplicate: Duplicate, Copy selected points
66
+ :type POINTCLOUD_OT_duplicate: duplicate | None
87
67
  :param TRANSFORM_OT_translate: Move, Move selected items
88
68
  :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
89
69
  """
@@ -114,3 +94,28 @@ def select_all(
114
94
  Invert -- Invert selection of all elements.
115
95
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
116
96
  """
97
+
98
+ def select_random(
99
+ execution_context: int | str | None = None,
100
+ undo: bool | None = None,
101
+ /,
102
+ *,
103
+ seed: int | None = 0,
104
+ probability: float | None = 0.5,
105
+ ):
106
+ """Randomizes existing selection or create new random selection
107
+
108
+ :type execution_context: int | str | None
109
+ :type undo: bool | None
110
+ :param seed: Seed, Source of randomness
111
+ :type seed: int | None
112
+ :param probability: Probability, Chance of every point being included in the selection
113
+ :type probability: float | None
114
+ """
115
+
116
+ def separate(execution_context: int | str | None = None, undo: bool | None = None):
117
+ """Separate selected geometry into a new point cloud
118
+
119
+ :type execution_context: int | str | None
120
+ :type undo: bool | None
121
+ """
bpy/types/__init__.pyi CHANGED
@@ -48181,6 +48181,7 @@ database.
48181
48181
  * bpy.context.id
48182
48182
  * bpy.context.selected_ids
48183
48183
  * bpy.context.texture_user
48184
+ * Action.fcurve_ensure_for_datablock
48184
48185
  * AssetRepresentation.local_id
48185
48186
  * BlendDataObjects.new
48186
48187
  * BlendImportContextItem.id
@@ -53282,6 +53283,7 @@ print(positions_data)
53282
53283
  * bpy.context.selected_editable_fcurves
53283
53284
  * bpy.context.selected_visible_fcurves
53284
53285
  * bpy.context.visible_fcurves
53286
+ * Action.fcurve_ensure_for_datablock
53285
53287
  * Action.fcurves
53286
53288
  * ActionChannelbag.fcurves
53287
53289
  * ActionChannelbagFCurves.find
@@ -57633,7 +57635,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
57633
57635
  * BlendDataImages.load
57634
57636
  * BlendDataImages.new
57635
57637
  * BlendDataImages.remove
57636
- * Brush.clone_image
57637
57638
  * CameraBackgroundImage.image
57638
57639
  * CompositorNodeCryptomatteV2.image
57639
57640
  * CompositorNodeImage.image
@@ -106086,12 +106087,12 @@ class ActionChannelbags(bpy_prop_collection[ActionChannelbag], bpy_struct):
106086
106087
  """
106087
106088
 
106088
106089
  class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
106089
- """Collection of action F-Curves"""
106090
+ """Collection of action F-Curves. Note that this is a legacy API that is unaware of action slots, and will only consider the F-Curves for this action's first slot"""
106090
106091
 
106091
106092
  def new(
106092
106093
  self, data_path: str, *, index: int | None = 0, action_group: str = ""
106093
106094
  ) -> FCurve:
106094
- """Add an F-Curve to the action
106095
+ """Add an F-Curve for the first slot of this action, creating the necessary layer, strip, and slot if necessary
106095
106096
 
106096
106097
  :param data_path: Data Path, F-Curve data path to use
106097
106098
  :type data_path: str
@@ -106104,7 +106105,7 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
106104
106105
  """
106105
106106
 
106106
106107
  def find(self, data_path: str, *, index: int | None = 0) -> FCurve:
106107
- """Find an F-Curve. Note that this function performs a linear scan of all F-Curves in the action.
106108
+ """Find an F-Curve. Note that this function performs a linear scan of all F-Curves for the action's first slot.
106108
106109
 
106109
106110
  :param data_path: Data Path, F-Curve data path
106110
106111
  :type data_path: str
@@ -106115,14 +106116,14 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
106115
106116
  """
106116
106117
 
106117
106118
  def remove(self, fcurve: FCurve):
106118
- """Remove F-Curve
106119
+ """Remove the F-Curve from the action's first slot
106119
106120
 
106120
106121
  :param fcurve: F-Curve to remove
106121
106122
  :type fcurve: FCurve
106122
106123
  """
106123
106124
 
106124
106125
  def clear(self):
106125
- """Remove all F-Curves"""
106126
+ """Remove all F-Curves from the action's first slot"""
106126
106127
 
106127
106128
  @classmethod
106128
106129
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -116048,7 +116049,7 @@ class Action(ID, bpy_struct):
116048
116049
  """
116049
116050
 
116050
116051
  fcurves: ActionFCurves
116051
- """ The individual F-Curves that make up the action
116052
+ """ Legacy API, for backward compatibility with code that does not handle slotted actions yet. This collection contains the F-Curves for the action's first slot
116052
116053
 
116053
116054
  :type: ActionFCurves
116054
116055
  """
@@ -116072,7 +116073,7 @@ class Action(ID, bpy_struct):
116072
116073
  """
116073
116074
 
116074
116075
  groups: ActionGroups
116075
- """ Convenient groupings of F-Curves
116076
+ """ Legacy API, for backward compatibility with code that does not handle slotted actions yet. This collection contains the F-Curve groups for the action's first slot
116076
116077
 
116077
116078
  :type: ActionGroups
116078
116079
  """
@@ -116119,7 +116120,7 @@ class Action(ID, bpy_struct):
116119
116120
  "WORLD",
116120
116121
  "UNSPECIFIED",
116121
116122
  ]
116122
- """ Type of ID block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING
116123
+ """ Legacy API, for backward compatibility with code that does not handle slotted actions yet. Type of data-block that the action's first slot can be used on. Do not change unless you know what you are doing
116123
116124
 
116124
116125
  :type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
116125
116126
  """
@@ -116131,7 +116132,7 @@ class Action(ID, bpy_struct):
116131
116132
  """
116132
116133
 
116133
116134
  is_action_legacy: bool
116134
- """ Return whether this is a legacy Action. Legacy Actions have no layers or slots. An empty Action considered as both a 'legacy' and a 'layered' Action.
116135
+ """ Return whether this is a legacy Action. Legacy Actions have no layers or slots. An empty Action considered as both a 'legacy' and a 'layered' Action. Since Blender 4.4 actions are automatically updated to layered actions, and thus this will only return True when the action is empty
116135
116136
 
116136
116137
  :type: bool
116137
116138
  """
@@ -116175,6 +116176,21 @@ class Action(ID, bpy_struct):
116175
116176
  def deselect_keys(self):
116176
116177
  """Deselects all keys of the Action. The selection status of F-Curves is unchanged."""
116177
116178
 
116179
+ def fcurve_ensure_for_datablock(
116180
+ self, datablock: ID, data_path: str, *, index: int | None = 0
116181
+ ) -> FCurve:
116182
+ """Ensure that an F-Curve exists, with the given data path and array index, for the given data-block. This action must already be assigned to the data-block. This function will also create the layer, keyframe strip, and action slot if necessary, and take care of assigning the action slot too
116183
+
116184
+ :param datablock: The data-block animated by this action, for which to ensure the F-Curve exists. This action must already be assigned to the data-block
116185
+ :type datablock: ID
116186
+ :param data_path: Data Path, F-Curve data path
116187
+ :type data_path: str
116188
+ :param index: Index, Array index
116189
+ :type index: int | None
116190
+ :return: The found or created F-Curve
116191
+ :rtype: FCurve
116192
+ """
116193
+
116178
116194
  def flip_with_pose(self, object: Object):
116179
116195
  """Flip the action around the X axis using a pose
116180
116196
 
@@ -120965,24 +120981,6 @@ class Brush(ID, bpy_struct):
120965
120981
  :type: BrushCapabilities
120966
120982
  """
120967
120983
 
120968
- clone_alpha: float
120969
- """ Opacity of clone image display
120970
-
120971
- :type: float
120972
- """
120973
-
120974
- clone_image: Image | None
120975
- """ Image for clone brushes
120976
-
120977
- :type: Image | None
120978
- """
120979
-
120980
- clone_offset: mathutils.Vector
120981
- """
120982
-
120983
- :type: mathutils.Vector
120984
- """
120985
-
120986
120984
  cloth_constraint_softbody_strength: float
120987
120985
  """ How much the cloth preserves the original shape, acting as a soft body
120988
120986
 
@@ -134224,12 +134222,6 @@ class Context(bpy_struct):
134224
134222
  """
134225
134223
 
134226
134224
  curves: typing.Any
134227
- pointcloud: PointCloud | None
134228
- """
134229
-
134230
- :type: PointCloud | None
134231
- """
134232
-
134233
134225
  volume: Volume | None
134234
134226
  """
134235
134227
 
@@ -159100,7 +159092,7 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
159100
159092
  :type: bool
159101
159093
  """
159102
159094
 
159103
- is_type_point_cloud: bool
159095
+ is_type_pointcloud: bool
159104
159096
  """ The node group is used for point clouds
159105
159097
 
159106
159098
  :type: bool
@@ -167189,12 +167181,24 @@ class ImagePaint(Paint, bpy_struct):
167189
167181
  :type: Image | None
167190
167182
  """
167191
167183
 
167184
+ clone_alpha: float
167185
+ """ Opacity of clone image display
167186
+
167187
+ :type: float
167188
+ """
167189
+
167192
167190
  clone_image: Image | None
167193
167191
  """ Image used as clone source
167194
167192
 
167195
167193
  :type: Image | None
167196
167194
  """
167197
167195
 
167196
+ clone_offset: mathutils.Vector
167197
+ """
167198
+
167199
+ :type: mathutils.Vector
167200
+ """
167201
+
167198
167202
  dither: float
167199
167203
  """ Amount of dithering when painting on byte images
167200
167204
 
@@ -227015,9 +227019,8 @@ class UIList(bpy_struct):
227015
227019
  icon: int | None,
227016
227020
  active_data: typing.Any,
227017
227021
  active_property: str | None,
227018
- *,
227019
- index: int | None = 0,
227020
- flt_flag: int | None = 0,
227022
+ index: int | None,
227023
+ flt_flag: int | None,
227021
227024
  ):
227022
227025
  """Draw an item in the list (NOTE: when you define your own draw_item function, you may want to check given 'item' is of the right type...)
227023
227026
 
@@ -237421,7 +237424,7 @@ VIEW3D_MT_select_edit_mesh: bl_ui.space_view3d.VIEW3D_MT_select_edit_mesh
237421
237424
 
237422
237425
  VIEW3D_MT_select_edit_metaball: bl_ui.space_view3d.VIEW3D_MT_select_edit_metaball
237423
237426
 
237424
- VIEW3D_MT_select_edit_point_cloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_point_cloud
237427
+ VIEW3D_MT_select_edit_pointcloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_pointcloud
237425
237428
 
237426
237429
  VIEW3D_MT_select_edit_surface: bl_ui.space_view3d.VIEW3D_MT_select_edit_surface
237427
237430
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250218
3
+ Version: 20250220
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
@@ -136,7 +136,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
137
137
  bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
138
138
  bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
139
- bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
139
+ bl_ui/properties_paint_common/__init__.pyi,sha256=aDxo3QM8DJUqm1tf8VWI5meE_gmpiQJtLSK-hBg8tkU,7992
140
140
  bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
141
141
  bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
142
142
  bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
176
- bl_ui/space_view3d/__init__.pyi,sha256=cYPicnHWYodDU1P6rA9Q9865sZrgmjOPeW7b5gtVeiY,156446
176
+ bl_ui/space_view3d/__init__.pyi,sha256=pOZyJv_EchJpLM6zEFv2cGOL26umD4MbbneLBQ1653o,156445
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
178
178
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
179
179
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
@@ -192,14 +192,14 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
192
192
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
193
193
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
194
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
195
- bpy/_typing/rna_enums/__init__.pyi,sha256=5HbFPSOzvlGhGA1nqaneyn_CPRfXCTsJpIhMc0cNhAU,138715
195
+ bpy/_typing/rna_enums/__init__.pyi,sha256=C6M-ucHcC3LOmsIE8jxja74wsN7qdIgbRdy-mEZJyPg,138850
196
196
  bpy/app/__init__.pyi,sha256=rNqetnnLndA8L1Ap2JsOPF9kSBCk2maa6dQtWV_a3ZY,8739
197
197
  bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
198
198
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
199
199
  bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
200
200
  bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
201
201
  bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
202
- bpy/ops/__init__.pyi,sha256=weYePEygySKk9Hdxl5lKjMZZPVQw2itBZ4_h4jEXQjM,5600
202
+ bpy/ops/__init__.pyi,sha256=NJ3gLwOmQ6GxP7La2osayHxGEpq2MTMfUNXQ_XCPn5g,5598
203
203
  bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
204
204
  bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
205
205
  bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
@@ -215,7 +215,7 @@ bpy/ops/collection/__init__.pyi,sha256=z2rWoNxbdj4xFqPlItbIi2l57eHlarU6RnUM0zjI-
215
215
  bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
216
216
  bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
217
217
  bpy/ops/curve/__init__.pyi,sha256=eO5HeAhCijFOcq-V8WBJVig7VkKmt1QQqiuVijIfueQ,28585
218
- bpy/ops/curves/__init__.pyi,sha256=c2qqV_FWtUG5wRnYQ-389Wp417M6KKXCQK6q7l5Qbuc,15074
218
+ bpy/ops/curves/__init__.pyi,sha256=HebR1M-El_BvS9VTzahaqheg73uCju6XQgGAdzN4eDc,15294
219
219
  bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
220
220
  bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
221
221
  bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
@@ -243,13 +243,13 @@ bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,41
243
243
  bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
244
244
  bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
245
245
  bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
246
- bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
246
+ bpy/ops/object/__init__.pyi,sha256=HJv7yiIe6D8NimfW82XxuHcRe646OhE2HKx34n39bHA,167911
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=Tp7l9XE3ka7BY8Po9WULa0Le-YusoQihIOeprVXbl2k,3580
252
+ bpy/ops/pointcloud/__init__.pyi,sha256=dB3XaaDLeHkeSTERVVOG0UYyg75HwGO1cYrhU3XB9sM,3843
253
253
  bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
254
254
  bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
255
255
  bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
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=pbjHFM-6s0B9Ie905JmRk316a2L3HYTMdt6GGYumMR0,5470297
282
+ bpy/types/__init__.pyi,sha256=iRzBJkRmY53YSL-80sz33Wt6e5vVE5YuWtbcdZR2UmI,5471772
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=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
317
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,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
@@ -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-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,,
364
+ fake_bpy_module-20250220.dist-info/METADATA,sha256=pDTjpLczdmCRbCY-zi189UWJCEtvsIkPwfb7Ajsy-e8,7429
365
+ fake_bpy_module-20250220.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
366
+ fake_bpy_module-20250220.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250220.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={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):