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

@@ -30,6 +30,278 @@ class RenderButtonsPanel:
30
30
  """
31
31
  ...
32
32
 
33
+ class RENDER_PT_color_management_white_balance_presets(
34
+ bl_ui.utils.PresetPanel, bpy_types._GenericUI
35
+ ):
36
+ bl_label: typing.Any
37
+ bl_region_type: typing.Any
38
+ bl_rna: typing.Any
39
+ bl_space_type: typing.Any
40
+ id_data: typing.Any
41
+ preset_add_operator: typing.Any
42
+ preset_operator: typing.Any
43
+ preset_subdir: typing.Any
44
+
45
+ def append(self, draw_func):
46
+ """Append a draw function to this menu,
47
+ takes the same arguments as the menus draw function
48
+
49
+ :param draw_func:
50
+ """
51
+ ...
52
+
53
+ def as_pointer(self) -> int:
54
+ """Returns the memory address which holds a pointer to Blender's internal data
55
+
56
+ :return: int (memory address).
57
+ :rtype: int
58
+ """
59
+ ...
60
+
61
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
62
+ """
63
+
64
+ :return: The RNA type or default when not found.
65
+ :rtype: bpy.types.Struct
66
+ """
67
+ ...
68
+
69
+ def bl_rna_get_subclass_py(self) -> typing.Any:
70
+ """
71
+
72
+ :return: The class or default when not found.
73
+ :rtype: typing.Any
74
+ """
75
+ ...
76
+
77
+ def draw(self, context):
78
+ """
79
+
80
+ :param context:
81
+ """
82
+ ...
83
+
84
+ def draw_menu(self, layout, text=None):
85
+ """
86
+
87
+ :param layout:
88
+ :param text:
89
+ """
90
+ ...
91
+
92
+ def draw_panel_header(self, layout):
93
+ """
94
+
95
+ :param layout:
96
+ """
97
+ ...
98
+
99
+ def driver_add(self) -> bpy.types.FCurve:
100
+ """Adds driver(s) to the given property
101
+
102
+ :return: The driver(s) added.
103
+ :rtype: bpy.types.FCurve
104
+ """
105
+ ...
106
+
107
+ def driver_remove(self) -> bool:
108
+ """Remove driver(s) from the given property
109
+
110
+ :return: Success of driver removal.
111
+ :rtype: bool
112
+ """
113
+ ...
114
+
115
+ def get(self):
116
+ """Returns the value of the custom property assigned to key or default
117
+ when not found (matches Python's dictionary function of the same name).
118
+
119
+ """
120
+ ...
121
+
122
+ def id_properties_clear(self):
123
+ """
124
+
125
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
126
+ """
127
+ ...
128
+
129
+ def id_properties_ensure(self):
130
+ """
131
+
132
+ :return: the parent group for an RNA struct's custom IDProperties.
133
+ """
134
+ ...
135
+
136
+ def id_properties_ui(self):
137
+ """
138
+
139
+ :return: Return an object used to manage an IDProperty's UI data.
140
+ """
141
+ ...
142
+
143
+ def is_extended(self): ...
144
+ def is_property_hidden(self) -> bool:
145
+ """Check if a property is hidden.
146
+
147
+ :return: True when the property is hidden.
148
+ :rtype: bool
149
+ """
150
+ ...
151
+
152
+ def is_property_overridable_library(self) -> bool:
153
+ """Check if a property is overridable.
154
+
155
+ :return: True when the property is overridable.
156
+ :rtype: bool
157
+ """
158
+ ...
159
+
160
+ def is_property_readonly(self) -> bool:
161
+ """Check if a property is readonly.
162
+
163
+ :return: True when the property is readonly (not writable).
164
+ :rtype: bool
165
+ """
166
+ ...
167
+
168
+ def is_property_set(self) -> bool:
169
+ """Check if a property is set, use for testing operator properties.
170
+
171
+ :return: True when the property has been set.
172
+ :rtype: bool
173
+ """
174
+ ...
175
+
176
+ def items(self):
177
+ """Returns the items of this objects custom properties (matches Python's
178
+ dictionary function of the same name).
179
+
180
+ :return: custom property key, value pairs.
181
+ """
182
+ ...
183
+
184
+ def keyframe_delete(self) -> bool:
185
+ """Remove a keyframe from this properties fcurve.
186
+
187
+ :return: Success of keyframe deletion.
188
+ :rtype: bool
189
+ """
190
+ ...
191
+
192
+ def keyframe_insert(self) -> bool:
193
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
194
+
195
+ :return: Success of keyframe insertion.
196
+ :rtype: bool
197
+ """
198
+ ...
199
+
200
+ def keys(self):
201
+ """Returns the keys of this objects custom properties (matches Python's
202
+ dictionary function of the same name).
203
+
204
+ :return: custom property keys.
205
+ """
206
+ ...
207
+
208
+ def path_from_id(self) -> str:
209
+ """Returns the data path from the ID to this object (string).
210
+
211
+ :return: The path from `bpy.types.bpy_struct.id_data`
212
+ to this struct and property (when given).
213
+ :rtype: str
214
+ """
215
+ ...
216
+
217
+ def path_menu(
218
+ self,
219
+ searchpaths: list[str],
220
+ operator: str,
221
+ props_default: dict = None,
222
+ prop_filepath: str | None = "filepath",
223
+ filter_ext: collections.abc.Callable | None = None,
224
+ filter_path=None,
225
+ display_name: collections.abc.Callable | None = None,
226
+ add_operator=None,
227
+ add_operator_props=None,
228
+ ):
229
+ """Populate a menu from a list of paths.
230
+
231
+ :param searchpaths: Paths to scan.
232
+ :type searchpaths: list[str]
233
+ :param operator: The operator id to use with each file.
234
+ :type operator: str
235
+ :param props_default: Properties to assign to each operator.
236
+ :type props_default: dict
237
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
238
+ :type prop_filepath: str | None
239
+ :param filter_ext: Optional callback that takes the file extensions.
240
+
241
+ Returning false excludes the file from the list.
242
+ :type filter_ext: collections.abc.Callable | None
243
+ :param filter_path:
244
+ :param display_name: Optional callback that takes the full path, returns the name to display.
245
+ :type display_name: collections.abc.Callable | None
246
+ :param add_operator:
247
+ :param add_operator_props:
248
+ """
249
+ ...
250
+
251
+ def path_resolve(self):
252
+ """Returns the property from the path, raise an exception when not found."""
253
+ ...
254
+
255
+ def pop(self):
256
+ """Remove and return the value of the custom property assigned to key or default
257
+ when not found (matches Python's dictionary function of the same name).
258
+
259
+ """
260
+ ...
261
+
262
+ def prepend(self, draw_func):
263
+ """Prepend a draw function to this menu, takes the same arguments as
264
+ the menus draw function
265
+
266
+ :param draw_func:
267
+ """
268
+ ...
269
+
270
+ def property_overridable_library_set(self) -> bool:
271
+ """Define a property as overridable or not (only for custom properties!).
272
+
273
+ :return: True when the overridable status of the property was successfully set.
274
+ :rtype: bool
275
+ """
276
+ ...
277
+
278
+ def property_unset(self):
279
+ """Unset a property, will use default value afterward."""
280
+ ...
281
+
282
+ def remove(self, draw_func):
283
+ """Remove a draw function that has been added to this menu
284
+
285
+ :param draw_func:
286
+ """
287
+ ...
288
+
289
+ def type_recast(self):
290
+ """Return a new instance, this is needed because types
291
+ such as textures can be changed at runtime.
292
+
293
+ :return: a new instance of this object with the type initialized again.
294
+ """
295
+ ...
296
+
297
+ def values(self):
298
+ """Returns the values of this objects custom properties (matches Python's
299
+ dictionary function of the same name).
300
+
301
+ :return: custom property values.
302
+ """
303
+ ...
304
+
33
305
  class RENDER_PT_context(bpy_types._GenericUI):
34
306
  bl_context: typing.Any
35
307
  bl_label: typing.Any
@@ -1225,6 +1497,251 @@ class RENDER_PT_color_management_display_settings(
1225
1497
  """
1226
1498
  ...
1227
1499
 
1500
+ class RENDER_PT_color_management_white_balance(
1501
+ RenderButtonsPanel, bpy_types._GenericUI
1502
+ ):
1503
+ COMPAT_ENGINES: typing.Any
1504
+ bl_context: typing.Any
1505
+ bl_label: typing.Any
1506
+ bl_options: typing.Any
1507
+ bl_parent_id: typing.Any
1508
+ bl_region_type: typing.Any
1509
+ bl_rna: typing.Any
1510
+ bl_space_type: typing.Any
1511
+ id_data: typing.Any
1512
+
1513
+ def append(self, draw_func):
1514
+ """Append a draw function to this menu,
1515
+ takes the same arguments as the menus draw function
1516
+
1517
+ :param draw_func:
1518
+ """
1519
+ ...
1520
+
1521
+ def as_pointer(self) -> int:
1522
+ """Returns the memory address which holds a pointer to Blender's internal data
1523
+
1524
+ :return: int (memory address).
1525
+ :rtype: int
1526
+ """
1527
+ ...
1528
+
1529
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1530
+ """
1531
+
1532
+ :return: The RNA type or default when not found.
1533
+ :rtype: bpy.types.Struct
1534
+ """
1535
+ ...
1536
+
1537
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1538
+ """
1539
+
1540
+ :return: The class or default when not found.
1541
+ :rtype: typing.Any
1542
+ """
1543
+ ...
1544
+
1545
+ def draw(self, context):
1546
+ """
1547
+
1548
+ :param context:
1549
+ """
1550
+ ...
1551
+
1552
+ def draw_header(self, context):
1553
+ """
1554
+
1555
+ :param context:
1556
+ """
1557
+ ...
1558
+
1559
+ def draw_header_preset(self, context):
1560
+ """
1561
+
1562
+ :param context:
1563
+ """
1564
+ ...
1565
+
1566
+ def driver_add(self) -> bpy.types.FCurve:
1567
+ """Adds driver(s) to the given property
1568
+
1569
+ :return: The driver(s) added.
1570
+ :rtype: bpy.types.FCurve
1571
+ """
1572
+ ...
1573
+
1574
+ def driver_remove(self) -> bool:
1575
+ """Remove driver(s) from the given property
1576
+
1577
+ :return: Success of driver removal.
1578
+ :rtype: bool
1579
+ """
1580
+ ...
1581
+
1582
+ def get(self):
1583
+ """Returns the value of the custom property assigned to key or default
1584
+ when not found (matches Python's dictionary function of the same name).
1585
+
1586
+ """
1587
+ ...
1588
+
1589
+ def id_properties_clear(self):
1590
+ """
1591
+
1592
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
1593
+ """
1594
+ ...
1595
+
1596
+ def id_properties_ensure(self):
1597
+ """
1598
+
1599
+ :return: the parent group for an RNA struct's custom IDProperties.
1600
+ """
1601
+ ...
1602
+
1603
+ def id_properties_ui(self):
1604
+ """
1605
+
1606
+ :return: Return an object used to manage an IDProperty's UI data.
1607
+ """
1608
+ ...
1609
+
1610
+ def is_extended(self): ...
1611
+ def is_property_hidden(self) -> bool:
1612
+ """Check if a property is hidden.
1613
+
1614
+ :return: True when the property is hidden.
1615
+ :rtype: bool
1616
+ """
1617
+ ...
1618
+
1619
+ def is_property_overridable_library(self) -> bool:
1620
+ """Check if a property is overridable.
1621
+
1622
+ :return: True when the property is overridable.
1623
+ :rtype: bool
1624
+ """
1625
+ ...
1626
+
1627
+ def is_property_readonly(self) -> bool:
1628
+ """Check if a property is readonly.
1629
+
1630
+ :return: True when the property is readonly (not writable).
1631
+ :rtype: bool
1632
+ """
1633
+ ...
1634
+
1635
+ def is_property_set(self) -> bool:
1636
+ """Check if a property is set, use for testing operator properties.
1637
+
1638
+ :return: True when the property has been set.
1639
+ :rtype: bool
1640
+ """
1641
+ ...
1642
+
1643
+ def items(self):
1644
+ """Returns the items of this objects custom properties (matches Python's
1645
+ dictionary function of the same name).
1646
+
1647
+ :return: custom property key, value pairs.
1648
+ """
1649
+ ...
1650
+
1651
+ def keyframe_delete(self) -> bool:
1652
+ """Remove a keyframe from this properties fcurve.
1653
+
1654
+ :return: Success of keyframe deletion.
1655
+ :rtype: bool
1656
+ """
1657
+ ...
1658
+
1659
+ def keyframe_insert(self) -> bool:
1660
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
1661
+
1662
+ :return: Success of keyframe insertion.
1663
+ :rtype: bool
1664
+ """
1665
+ ...
1666
+
1667
+ def keys(self):
1668
+ """Returns the keys of this objects custom properties (matches Python's
1669
+ dictionary function of the same name).
1670
+
1671
+ :return: custom property keys.
1672
+ """
1673
+ ...
1674
+
1675
+ def path_from_id(self) -> str:
1676
+ """Returns the data path from the ID to this object (string).
1677
+
1678
+ :return: The path from `bpy.types.bpy_struct.id_data`
1679
+ to this struct and property (when given).
1680
+ :rtype: str
1681
+ """
1682
+ ...
1683
+
1684
+ def path_resolve(self):
1685
+ """Returns the property from the path, raise an exception when not found."""
1686
+ ...
1687
+
1688
+ def poll(self, context):
1689
+ """
1690
+
1691
+ :param context:
1692
+ """
1693
+ ...
1694
+
1695
+ def pop(self):
1696
+ """Remove and return the value of the custom property assigned to key or default
1697
+ when not found (matches Python's dictionary function of the same name).
1698
+
1699
+ """
1700
+ ...
1701
+
1702
+ def prepend(self, draw_func):
1703
+ """Prepend a draw function to this menu, takes the same arguments as
1704
+ the menus draw function
1705
+
1706
+ :param draw_func:
1707
+ """
1708
+ ...
1709
+
1710
+ def property_overridable_library_set(self) -> bool:
1711
+ """Define a property as overridable or not (only for custom properties!).
1712
+
1713
+ :return: True when the overridable status of the property was successfully set.
1714
+ :rtype: bool
1715
+ """
1716
+ ...
1717
+
1718
+ def property_unset(self):
1719
+ """Unset a property, will use default value afterward."""
1720
+ ...
1721
+
1722
+ def remove(self, draw_func):
1723
+ """Remove a draw function that has been added to this menu
1724
+
1725
+ :param draw_func:
1726
+ """
1727
+ ...
1728
+
1729
+ def type_recast(self):
1730
+ """Return a new instance, this is needed because types
1731
+ such as textures can be changed at runtime.
1732
+
1733
+ :return: a new instance of this object with the type initialized again.
1734
+ """
1735
+ ...
1736
+
1737
+ def values(self):
1738
+ """Returns the values of this objects custom properties (matches Python's
1739
+ dictionary function of the same name).
1740
+
1741
+ :return: custom property values.
1742
+ """
1743
+ ...
1744
+
1228
1745
  class RENDER_PT_eevee_ambient_occlusion(RenderButtonsPanel, bpy_types._GenericUI):
1229
1746
  COMPAT_ENGINES: typing.Any
1230
1747
  bl_context: typing.Any
@@ -848,6 +848,16 @@ class _defs_sculpt:
848
848
  trim_line: typing.Any
849
849
  trim_polyline: typing.Any
850
850
 
851
+ def draw_lasso_stroke_settings(self, layout, props, draw_inline, draw_popover):
852
+ """
853
+
854
+ :param layout:
855
+ :param props:
856
+ :param draw_inline:
857
+ :param draw_popover:
858
+ """
859
+ ...
860
+
851
861
  def generate_from_brushes(self, context):
852
862
  """
853
863
 
@@ -1223,6 +1223,7 @@ class USERPREF_MT_interface_theme_presets(bpy_types._GenericUI):
1223
1223
  preset_subdir: typing.Any
1224
1224
  preset_type: typing.Any
1225
1225
  preset_xml_map: typing.Any
1226
+ preset_xml_secure_types: typing.Any
1226
1227
 
1227
1228
  def append(self, draw_func):
1228
1229
  """Append a draw function to this menu,
@@ -21344,6 +21345,13 @@ class USERPREF_PT_viewport_subdivision(
21344
21345
  """Returns the property from the path, raise an exception when not found."""
21345
21346
  ...
21346
21347
 
21348
+ def poll(self, context):
21349
+ """
21350
+
21351
+ :param context:
21352
+ """
21353
+ ...
21354
+
21347
21355
  def pop(self):
21348
21356
  """Remove and return the value of the custom property assigned to key or default
21349
21357
  when not found (matches Python's dictionary function of the same name).
@@ -554,6 +554,9 @@ def select_lasso(
554
554
  undo: bool | None = None,
555
555
  *,
556
556
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
557
+ use_smooth_stroke: bool | None = False,
558
+ smooth_stroke_factor: float | None = 0.75,
559
+ smooth_stroke_radius: int | None = 35,
557
560
  mode: str | None = "SET",
558
561
  ):
559
562
  """Select keyframe points using lasso selection
@@ -563,6 +566,12 @@ def select_lasso(
563
566
  :type undo: bool | None
564
567
  :param path: Path
565
568
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
569
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
570
+ :type use_smooth_stroke: bool | None
571
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
572
+ :type smooth_stroke_factor: float | None
573
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
574
+ :type smooth_stroke_radius: int | None
566
575
  :param mode: Mode
567
576
 
568
577
  SET
bpy/ops/clip/__init__.pyi CHANGED
@@ -1208,6 +1208,9 @@ def select_lasso(
1208
1208
  undo: bool | None = None,
1209
1209
  *,
1210
1210
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1211
+ use_smooth_stroke: bool | None = False,
1212
+ smooth_stroke_factor: float | None = 0.75,
1213
+ smooth_stroke_radius: int | None = 35,
1211
1214
  mode: str | None = "SET",
1212
1215
  ):
1213
1216
  """Select markers using lasso selection
@@ -1217,6 +1220,12 @@ def select_lasso(
1217
1220
  :type undo: bool | None
1218
1221
  :param path: Path
1219
1222
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1223
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1224
+ :type use_smooth_stroke: bool | None
1225
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1226
+ :type smooth_stroke_factor: float | None
1227
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1228
+ :type smooth_stroke_radius: int | None
1220
1229
  :param mode: Mode
1221
1230
 
1222
1231
  SET
@@ -2068,6 +2068,9 @@ def select_lasso(
2068
2068
  *,
2069
2069
  mode: str | None = "SET",
2070
2070
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
2071
+ use_smooth_stroke: bool | None = False,
2072
+ smooth_stroke_factor: float | None = 0.75,
2073
+ smooth_stroke_radius: int | None = 35,
2071
2074
  ):
2072
2075
  """Select Grease Pencil strokes using lasso selection
2073
2076
 
@@ -2093,6 +2096,12 @@ def select_lasso(
2093
2096
  :type mode: str | None
2094
2097
  :param path: Path
2095
2098
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
2099
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
2100
+ :type use_smooth_stroke: bool | None
2101
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
2102
+ :type smooth_stroke_factor: float | None
2103
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
2104
+ :type smooth_stroke_radius: int | None
2096
2105
  """
2097
2106
 
2098
2107
  ...
@@ -2389,6 +2398,9 @@ def stroke_cutter(
2389
2398
  undo: bool | None = None,
2390
2399
  *,
2391
2400
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
2401
+ use_smooth_stroke: bool | None = False,
2402
+ smooth_stroke_factor: float | None = 0.75,
2403
+ smooth_stroke_radius: int | None = 35,
2392
2404
  flat_caps: bool | None = False,
2393
2405
  ):
2394
2406
  """Select section and cut
@@ -2398,6 +2410,12 @@ def stroke_cutter(
2398
2410
  :type undo: bool | None
2399
2411
  :param path: Path
2400
2412
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
2413
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
2414
+ :type use_smooth_stroke: bool | None
2415
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
2416
+ :type smooth_stroke_factor: float | None
2417
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
2418
+ :type smooth_stroke_radius: int | None
2401
2419
  :param flat_caps: Flat Caps
2402
2420
  :type flat_caps: bool | None
2403
2421
  """
@@ -1128,6 +1128,9 @@ def select_lasso(
1128
1128
  undo: bool | None = None,
1129
1129
  *,
1130
1130
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1131
+ use_smooth_stroke: bool | None = False,
1132
+ smooth_stroke_factor: float | None = 0.75,
1133
+ smooth_stroke_radius: int | None = 35,
1131
1134
  mode: str | None = "SET",
1132
1135
  use_curve_selection: bool | None = True,
1133
1136
  ):
@@ -1138,6 +1141,12 @@ def select_lasso(
1138
1141
  :type undo: bool | None
1139
1142
  :param path: Path
1140
1143
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1144
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1145
+ :type use_smooth_stroke: bool | None
1146
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1147
+ :type smooth_stroke_factor: float | None
1148
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1149
+ :type smooth_stroke_radius: int | None
1141
1150
  :param mode: Mode
1142
1151
 
1143
1152
  SET
@@ -1262,6 +1262,9 @@ def stroke_cutter(
1262
1262
  undo: bool | None = None,
1263
1263
  *,
1264
1264
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1265
+ use_smooth_stroke: bool | None = False,
1266
+ smooth_stroke_factor: float | None = 0.75,
1267
+ smooth_stroke_radius: int | None = 35,
1265
1268
  ):
1266
1269
  """Delete stroke points in between intersecting strokes
1267
1270
 
@@ -1270,6 +1273,12 @@ def stroke_cutter(
1270
1273
  :type undo: bool | None
1271
1274
  :param path: Path
1272
1275
  :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
1276
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
1277
+ :type use_smooth_stroke: bool | None
1278
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
1279
+ :type smooth_stroke_factor: float | None
1280
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
1281
+ :type smooth_stroke_radius: int | None
1273
1282
  """
1274
1283
 
1275
1284
  ...