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

Files changed (94) hide show
  1. bl_operators/__init__.pyi +1 -0
  2. bl_operators/image_as_planes/__init__.pyi +457 -0
  3. bl_operators/userpref/__init__.pyi +0 -214
  4. bl_ui/properties_data_modifier/__init__.pyi +284 -0
  5. bl_ui/properties_render/__init__.pyi +1 -1
  6. bl_ui/space_userpref/__init__.pyi +233 -0
  7. bpy/app/__init__.pyi +9 -1
  8. bpy/ops/action/__init__.pyi +21 -0
  9. bpy/ops/anim/__init__.pyi +34 -0
  10. bpy/ops/armature/__init__.pyi +31 -0
  11. bpy/ops/asset/__init__.pyi +5 -0
  12. bpy/ops/bl_pkg/__init__.pyi +28 -17
  13. bpy/ops/boid/__init__.pyi +1 -0
  14. bpy/ops/brush/__init__.pyi +6 -0
  15. bpy/ops/buttons/__init__.pyi +2 -0
  16. bpy/ops/cachefile/__init__.pyi +3 -0
  17. bpy/ops/camera/__init__.pyi +2 -0
  18. bpy/ops/clip/__init__.pyi +49 -0
  19. bpy/ops/cloth/__init__.pyi +1 -0
  20. bpy/ops/collection/__init__.pyi +7 -0
  21. bpy/ops/console/__init__.pyi +11 -0
  22. bpy/ops/constraint/__init__.pyi +15 -0
  23. bpy/ops/curve/__init__.pyi +28 -0
  24. bpy/ops/curves/__init__.pyi +14 -0
  25. bpy/ops/cycles/__init__.pyi +2 -0
  26. bpy/ops/dpaint/__init__.pyi +2 -0
  27. bpy/ops/ed/__init__.pyi +3 -0
  28. bpy/ops/export_anim/__init__.pyi +1 -0
  29. bpy/ops/export_scene/__init__.pyi +20 -3
  30. bpy/ops/file/__init__.pyi +14 -0
  31. bpy/ops/fluid/__init__.pyi +1 -0
  32. bpy/ops/font/__init__.pyi +13 -0
  33. bpy/ops/geometry/__init__.pyi +7 -0
  34. bpy/ops/gizmogroup/__init__.pyi +1 -0
  35. bpy/ops/gpencil/__init__.pyi +106 -0
  36. bpy/ops/graph/__init__.pyi +47 -0
  37. bpy/ops/grease_pencil/__init__.pyi +58 -0
  38. bpy/ops/image/__init__.pyi +308 -0
  39. bpy/ops/import_anim/__init__.pyi +1 -0
  40. bpy/ops/import_curve/__init__.pyi +1 -0
  41. bpy/ops/import_scene/__init__.pyi +2 -0
  42. bpy/ops/info/__init__.pyi +3 -0
  43. bpy/ops/lattice/__init__.pyi +5 -0
  44. bpy/ops/marker/__init__.pyi +9 -0
  45. bpy/ops/mask/__init__.pyi +22 -0
  46. bpy/ops/mball/__init__.pyi +7 -0
  47. bpy/ops/mesh/__init__.pyi +134 -0
  48. bpy/ops/nla/__init__.pyi +20 -0
  49. bpy/ops/node/__init__.pyi +47 -0
  50. bpy/ops/object/__init__.pyi +174 -0
  51. bpy/ops/outliner/__init__.pyi +53 -0
  52. bpy/ops/paint/__init__.pyi +39 -0
  53. bpy/ops/paintcurve/__init__.pyi +4 -0
  54. bpy/ops/palette/__init__.pyi +4 -0
  55. bpy/ops/particle/__init__.pyi +17 -0
  56. bpy/ops/pose/__init__.pyi +24 -0
  57. bpy/ops/poselib/__init__.pyi +4 -0
  58. bpy/ops/preferences/__init__.pyi +26 -14
  59. bpy/ops/ptcache/__init__.pyi +2 -0
  60. bpy/ops/render/__init__.pyi +9 -0
  61. bpy/ops/rigidbody/__init__.pyi +7 -0
  62. bpy/ops/scene/__init__.pyi +16 -0
  63. bpy/ops/screen/__init__.pyi +21 -0
  64. bpy/ops/script/__init__.pyi +2 -0
  65. bpy/ops/sculpt/__init__.pyi +26 -1
  66. bpy/ops/sculpt_curves/__init__.pyi +3 -0
  67. bpy/ops/sequencer/__init__.pyi +57 -0
  68. bpy/ops/sound/__init__.pyi +4 -0
  69. bpy/ops/spreadsheet/__init__.pyi +2 -0
  70. bpy/ops/surface/__init__.pyi +6 -0
  71. bpy/ops/text/__init__.pyi +18 -0
  72. bpy/ops/text_editor/__init__.pyi +1 -0
  73. bpy/ops/texture/__init__.pyi +1 -0
  74. bpy/ops/transform/__init__.pyi +25 -0
  75. bpy/ops/ui/__init__.pyi +13 -0
  76. bpy/ops/uilist/__init__.pyi +3 -0
  77. bpy/ops/uv/__init__.pyi +40 -0
  78. bpy/ops/view2d/__init__.pyi +11 -0
  79. bpy/ops/view3d/__init__.pyi +30 -0
  80. bpy/ops/wm/__init__.pyi +114 -0
  81. bpy/ops/workspace/__init__.pyi +1 -0
  82. bpy/path/__init__.pyi +6 -6
  83. bpy/props/__init__.pyi +11 -1
  84. bpy/types/__init__.pyi +594 -342
  85. bpy/utils/__init__.pyi +10 -8
  86. bpy_extras/anim_utils/__init__.pyi +3 -3
  87. bpy_extras/view3d_utils/__init__.pyi +2 -0
  88. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
  89. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
  90. gpu/types/__init__.pyi +4 -2
  91. gpu_extras/batch/__init__.pyi +1 -1
  92. gpu_extras/presets/__init__.pyi +1 -1
  93. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
  94. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,7 @@ def brush_stroke(
10
10
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
11
11
  execution_context: str | int | None = None,
12
12
  undo: bool | None = None,
13
+ *,
13
14
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
14
15
  | None = None,
15
16
  mode: str | None = "NORMAL",
@@ -40,6 +41,7 @@ def caps_set(
40
41
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
41
42
  execution_context: str | int | None = None,
42
43
  undo: bool | None = None,
44
+ *,
43
45
  type: str | None = "ROUND",
44
46
  ):
45
47
  """Change curve caps mode (rounded or flat)
@@ -69,6 +71,7 @@ def clean_loose(
69
71
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
70
72
  execution_context: str | int | None = None,
71
73
  undo: bool | None = None,
74
+ *,
72
75
  limit: typing.Any | None = 1,
73
76
  ):
74
77
  """Remove loose points
@@ -100,6 +103,7 @@ def cyclical_set(
100
103
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
101
104
  execution_context: str | int | None = None,
102
105
  undo: bool | None = None,
106
+ *,
103
107
  type: str | None = "TOGGLE",
104
108
  ):
105
109
  """Close or open the selected stroke adding a segment from last to first point
@@ -131,6 +135,7 @@ def delete_frame(
131
135
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
132
136
  execution_context: str | int | None = None,
133
137
  undo: bool | None = None,
138
+ *,
134
139
  type: str | None = "ACTIVE_FRAME",
135
140
  ):
136
141
  """Delete Grease Pencil Frame(s)
@@ -154,6 +159,7 @@ def dissolve(
154
159
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
155
160
  execution_context: str | int | None = None,
156
161
  undo: bool | None = None,
162
+ *,
157
163
  type: str | None = "POINTS",
158
164
  ):
159
165
  """Delete selected points without splitting strokes
@@ -194,6 +200,7 @@ def duplicate_move(
194
200
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
195
201
  execution_context: str | int | None = None,
196
202
  undo: bool | None = None,
203
+ *,
197
204
  GREASE_PENCIL_OT_duplicate: typing.Any | None = None,
198
205
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
199
206
  ):
@@ -228,6 +235,7 @@ def extrude_move(
228
235
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
229
236
  execution_context: str | int | None = None,
230
237
  undo: bool | None = None,
238
+ *,
231
239
  GREASE_PENCIL_OT_extrude: typing.Any | None = None,
232
240
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
233
241
  ):
@@ -248,7 +256,10 @@ def fill(
248
256
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
249
257
  execution_context: str | int | None = None,
250
258
  undo: bool | None = None,
259
+ *,
251
260
  on_back: bool | typing.Any | None = False,
261
+ invert: bool | typing.Any | None = False,
262
+ precision: bool | typing.Any | None = False,
252
263
  ):
253
264
  """Fill with color the shape formed by strokes
254
265
 
@@ -257,6 +268,10 @@ def fill(
257
268
  :type undo: bool | None
258
269
  :param on_back: Draw on Back, Send new stroke to back
259
270
  :type on_back: bool | typing.Any | None
271
+ :param invert: Invert, Find boundary of unfilled instead of filled regions
272
+ :type invert: bool | typing.Any | None
273
+ :param precision: Precision, Use precision movement for extension lines
274
+ :type precision: bool | typing.Any | None
260
275
  """
261
276
 
262
277
  ...
@@ -265,6 +280,7 @@ def insert_blank_frame(
265
280
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
266
281
  execution_context: str | int | None = None,
267
282
  undo: bool | None = None,
283
+ *,
268
284
  all_layers: bool | typing.Any | None = False,
269
285
  duration: typing.Any | None = 0,
270
286
  ):
@@ -285,6 +301,7 @@ def layer_active(
285
301
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
286
302
  execution_context: str | int | None = None,
287
303
  undo: bool | None = None,
304
+ *,
288
305
  layer: typing.Any | None = 0,
289
306
  ):
290
307
  """Set the active Grease Pencil layer
@@ -302,6 +319,7 @@ def layer_add(
302
319
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
303
320
  execution_context: str | int | None = None,
304
321
  undo: bool | None = None,
322
+ *,
305
323
  new_layer_name: str | typing.Any = "Layer",
306
324
  ):
307
325
  """Add a new Grease Pencil layer in the active object
@@ -319,6 +337,7 @@ def layer_duplicate(
319
337
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
320
338
  execution_context: str | int | None = None,
321
339
  undo: bool | None = None,
340
+ *,
322
341
  empty_keyframes: bool | typing.Any | None = False,
323
342
  ):
324
343
  """Make a copy of the active Grease Pencil layer
@@ -336,6 +355,7 @@ def layer_group_add(
336
355
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
337
356
  execution_context: str | int | None = None,
338
357
  undo: bool | None = None,
358
+ *,
339
359
  new_layer_group_name: str | typing.Any = "",
340
360
  ):
341
361
  """Add a new Grease Pencil layer group in the active object
@@ -353,6 +373,7 @@ def layer_group_remove(
353
373
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
354
374
  execution_context: str | int | None = None,
355
375
  undo: bool | None = None,
376
+ *,
356
377
  keep_children: bool | typing.Any | None = False,
357
378
  ):
358
379
  """Remove Grease Pencil layer group in the active object
@@ -370,6 +391,7 @@ def layer_hide(
370
391
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
371
392
  execution_context: str | int | None = None,
372
393
  undo: bool | None = None,
394
+ *,
373
395
  unselected: bool | typing.Any | None = False,
374
396
  ):
375
397
  """Hide selected/unselected Grease Pencil layers
@@ -387,6 +409,7 @@ def layer_isolate(
387
409
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
388
410
  execution_context: str | int | None = None,
389
411
  undo: bool | None = None,
412
+ *,
390
413
  affect_visibility: bool | typing.Any | None = False,
391
414
  ):
392
415
  """Make only active layer visible/editable
@@ -404,6 +427,7 @@ def layer_lock_all(
404
427
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
405
428
  execution_context: str | int | None = None,
406
429
  undo: bool | None = None,
430
+ *,
407
431
  lock: bool | typing.Any | None = True,
408
432
  ):
409
433
  """Lock all Grease Pencil layers to prevent them from being accidentally modified
@@ -421,6 +445,7 @@ def layer_mask_add(
421
445
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
422
446
  execution_context: str | int | None = None,
423
447
  undo: bool | None = None,
448
+ *,
424
449
  name: str | typing.Any = "",
425
450
  ):
426
451
  """Add new layer as masking
@@ -452,6 +477,7 @@ def layer_mask_reorder(
452
477
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
453
478
  execution_context: str | int | None = None,
454
479
  undo: bool | None = None,
480
+ *,
455
481
  direction: str | None = "UP",
456
482
  ):
457
483
  """Reorder the active Grease Pencil mask layer up/down in the list
@@ -483,6 +509,7 @@ def layer_reorder(
483
509
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
484
510
  execution_context: str | int | None = None,
485
511
  undo: bool | None = None,
512
+ *,
486
513
  target_layer_name: str | typing.Any = "Layer",
487
514
  location: str | None = "ABOVE",
488
515
  ):
@@ -517,6 +544,7 @@ def material_copy_to_object(
517
544
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
518
545
  execution_context: str | int | None = None,
519
546
  undo: bool | None = None,
547
+ *,
520
548
  only_active: bool | typing.Any | None = True,
521
549
  ):
522
550
  """Append Materials of the active Grease Pencil to other object
@@ -534,6 +562,7 @@ def material_hide(
534
562
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
535
563
  execution_context: str | int | None = None,
536
564
  undo: bool | None = None,
565
+ *,
537
566
  invert: bool | typing.Any | None = False,
538
567
  ):
539
568
  """Hide active/inactive Grease Pencil material(s)
@@ -607,6 +636,7 @@ def material_select(
607
636
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
608
637
  execution_context: str | int | None = None,
609
638
  undo: bool | None = None,
639
+ *,
610
640
  deselect: bool | typing.Any | None = False,
611
641
  ):
612
642
  """Select/Deselect all Grease Pencil strokes using current material
@@ -638,6 +668,7 @@ def move_to_layer(
638
668
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
639
669
  execution_context: str | int | None = None,
640
670
  undo: bool | None = None,
671
+ *,
641
672
  target_layer_name: str | typing.Any = "Layer",
642
673
  add_new_layer: bool | typing.Any | None = False,
643
674
  ):
@@ -658,6 +689,7 @@ def paste(
658
689
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
659
690
  execution_context: str | int | None = None,
660
691
  undo: bool | None = None,
692
+ *,
661
693
  paste_back: bool | typing.Any | None = False,
662
694
  ):
663
695
  """Paste Grease Pencil points or strokes from the internal clipboard to the active layer
@@ -675,6 +707,7 @@ def primitive_arc(
675
707
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
676
708
  execution_context: str | int | None = None,
677
709
  undo: bool | None = None,
710
+ *,
678
711
  subdivision: typing.Any | None = 62,
679
712
  type: str | None = "ARC",
680
713
  ):
@@ -695,6 +728,7 @@ def primitive_box(
695
728
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
696
729
  execution_context: str | int | None = None,
697
730
  undo: bool | None = None,
731
+ *,
698
732
  subdivision: typing.Any | None = 3,
699
733
  type: str | None = "BOX",
700
734
  ):
@@ -715,6 +749,7 @@ def primitive_circle(
715
749
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
716
750
  execution_context: str | int | None = None,
717
751
  undo: bool | None = None,
752
+ *,
718
753
  subdivision: typing.Any | None = 94,
719
754
  type: str | None = "CIRCLE",
720
755
  ):
@@ -735,6 +770,7 @@ def primitive_curve(
735
770
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
736
771
  execution_context: str | int | None = None,
737
772
  undo: bool | None = None,
773
+ *,
738
774
  subdivision: typing.Any | None = 62,
739
775
  type: str | None = "CURVE",
740
776
  ):
@@ -755,6 +791,7 @@ def primitive_line(
755
791
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
756
792
  execution_context: str | int | None = None,
757
793
  undo: bool | None = None,
794
+ *,
758
795
  subdivision: typing.Any | None = 6,
759
796
  type: str | None = "LINE",
760
797
  ):
@@ -775,6 +812,7 @@ def primitive_polyline(
775
812
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
776
813
  execution_context: str | int | None = None,
777
814
  undo: bool | None = None,
815
+ *,
778
816
  subdivision: typing.Any | None = 6,
779
817
  type: str | None = "POLYLINE",
780
818
  ):
@@ -795,6 +833,7 @@ def reorder(
795
833
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
796
834
  execution_context: str | int | None = None,
797
835
  undo: bool | None = None,
836
+ *,
798
837
  direction: str | None = "TOP",
799
838
  ):
800
839
  """Change the display order of the selected strokes
@@ -812,6 +851,7 @@ def sculpt_paint(
812
851
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
813
852
  execution_context: str | int | None = None,
814
853
  undo: bool | None = None,
854
+ *,
815
855
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
816
856
  | None = None,
817
857
  mode: str | None = "NORMAL",
@@ -842,6 +882,7 @@ def select_all(
842
882
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
843
883
  execution_context: str | int | None = None,
844
884
  undo: bool | None = None,
885
+ *,
845
886
  action: str | None = "TOGGLE",
846
887
  ):
847
888
  """(De)select all visible strokes
@@ -871,6 +912,7 @@ def select_alternate(
871
912
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
872
913
  execution_context: str | int | None = None,
873
914
  undo: bool | None = None,
915
+ *,
874
916
  deselect_ends: bool | typing.Any | None = False,
875
917
  ):
876
918
  """Select alternated points in strokes with already selected points
@@ -888,6 +930,7 @@ def select_ends(
888
930
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
889
931
  execution_context: str | int | None = None,
890
932
  undo: bool | None = None,
933
+ *,
891
934
  amount_start: typing.Any | None = 0,
892
935
  amount_end: typing.Any | None = 1,
893
936
  ):
@@ -950,6 +993,7 @@ def select_random(
950
993
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
951
994
  execution_context: str | int | None = None,
952
995
  undo: bool | None = None,
996
+ *,
953
997
  ratio: typing.Any | None = 0.5,
954
998
  seed: typing.Any | None = 0,
955
999
  action: str | None = "SELECT",
@@ -979,6 +1023,7 @@ def separate(
979
1023
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
980
1024
  execution_context: str | int | None = None,
981
1025
  undo: bool | None = None,
1026
+ *,
982
1027
  mode: str | None = "SELECTED",
983
1028
  ):
984
1029
  """Separate the selected geometry into a new grease pencil object
@@ -1019,6 +1064,7 @@ def set_material(
1019
1064
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1020
1065
  execution_context: str | int | None = None,
1021
1066
  undo: bool | None = None,
1067
+ *,
1022
1068
  slot: str | None = "DEFAULT",
1023
1069
  ):
1024
1070
  """Set active material
@@ -1036,6 +1082,7 @@ def set_selection_mode(
1036
1082
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1037
1083
  execution_context: str | int | None = None,
1038
1084
  undo: bool | None = None,
1085
+ *,
1039
1086
  mode: str | None = "POINT",
1040
1087
  ):
1041
1088
  """Change the selection mode for Grease Pencil strokes
@@ -1053,6 +1100,7 @@ def set_uniform_opacity(
1053
1100
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1054
1101
  execution_context: str | int | None = None,
1055
1102
  undo: bool | None = None,
1103
+ *,
1056
1104
  opacity: typing.Any | None = 1.0,
1057
1105
  ):
1058
1106
  """Set all stroke points to same opacity
@@ -1070,6 +1118,7 @@ def set_uniform_thickness(
1070
1118
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1071
1119
  execution_context: str | int | None = None,
1072
1120
  undo: bool | None = None,
1121
+ *,
1073
1122
  thickness: typing.Any | None = 0.1,
1074
1123
  ):
1075
1124
  """Set all stroke points to same thickness
@@ -1101,6 +1150,7 @@ def snap_to_cursor(
1101
1150
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1102
1151
  execution_context: str | int | None = None,
1103
1152
  undo: bool | None = None,
1153
+ *,
1104
1154
  use_offset: bool | typing.Any | None = True,
1105
1155
  ):
1106
1156
  """Snap selected points/strokes to the cursor
@@ -1132,6 +1182,7 @@ def stroke_cutter(
1132
1182
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1133
1183
  execution_context: str | int | None = None,
1134
1184
  undo: bool | None = None,
1185
+ *,
1135
1186
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1136
1187
  ):
1137
1188
  """Delete stroke points in between intersecting strokes
@@ -1149,6 +1200,7 @@ def stroke_material_set(
1149
1200
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1150
1201
  execution_context: str | int | None = None,
1151
1202
  undo: bool | None = None,
1203
+ *,
1152
1204
  material: str | typing.Any = "",
1153
1205
  ):
1154
1206
  """Assign the active material slot to the selected strokes
@@ -1166,6 +1218,7 @@ def stroke_merge_by_distance(
1166
1218
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1167
1219
  execution_context: str | int | None = None,
1168
1220
  undo: bool | None = None,
1221
+ *,
1169
1222
  threshold: typing.Any | None = 0.001,
1170
1223
  use_unselected: bool | typing.Any | None = False,
1171
1224
  ):
@@ -1186,6 +1239,7 @@ def stroke_simplify(
1186
1239
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1187
1240
  execution_context: str | int | None = None,
1188
1241
  undo: bool | None = None,
1242
+ *,
1189
1243
  factor: typing.Any | None = 0.01,
1190
1244
  ):
1191
1245
  """Simplify selected strokes
@@ -1203,6 +1257,7 @@ def stroke_smooth(
1203
1257
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1204
1258
  execution_context: str | int | None = None,
1205
1259
  undo: bool | None = None,
1260
+ *,
1206
1261
  iterations: typing.Any | None = 10,
1207
1262
  factor: typing.Any | None = 1.0,
1208
1263
  smooth_ends: bool | typing.Any | None = False,
@@ -1238,6 +1293,7 @@ def stroke_subdivide(
1238
1293
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1239
1294
  execution_context: str | int | None = None,
1240
1295
  undo: bool | None = None,
1296
+ *,
1241
1297
  number_cuts: typing.Any | None = 1,
1242
1298
  only_selected: bool | typing.Any | None = True,
1243
1299
  ):
@@ -1258,6 +1314,7 @@ def stroke_subdivide_smooth(
1258
1314
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1259
1315
  execution_context: str | int | None = None,
1260
1316
  undo: bool | None = None,
1317
+ *,
1261
1318
  GREASE_PENCIL_OT_stroke_subdivide: typing.Any | None = None,
1262
1319
  GREASE_PENCIL_OT_stroke_smooth: typing.Any | None = None,
1263
1320
  ):
@@ -1292,6 +1349,7 @@ def weight_brush_stroke(
1292
1349
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1293
1350
  execution_context: str | int | None = None,
1294
1351
  undo: bool | None = None,
1352
+ *,
1295
1353
  stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
1296
1354
  | None = None,
1297
1355
  mode: str | None = "NORMAL",