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
bpy/ops/mesh/__init__.pyi CHANGED
@@ -10,6 +10,7 @@ def attribute_set(
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
  value_float: typing.Any | None = 0.0,
14
15
  value_float_vector_2d: typing.Any | None = (0.0, 0.0),
15
16
  value_float_vector_3d: typing.Any | None = (0.0, 0.0, 0.0),
@@ -45,6 +46,7 @@ def average_normals(
45
46
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
46
47
  execution_context: str | int | None = None,
47
48
  undo: bool | None = None,
49
+ *,
48
50
  average_type: str | None = "CUSTOM_NORMAL",
49
51
  weight: typing.Any | None = 50,
50
52
  threshold: typing.Any | None = 0.01,
@@ -77,6 +79,7 @@ def beautify_fill(
77
79
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
78
80
  execution_context: str | int | None = None,
79
81
  undo: bool | None = None,
82
+ *,
80
83
  angle_limit: typing.Any | None = 3.14159,
81
84
  ):
82
85
  """Rearrange some faces to try to get less degenerated geometry
@@ -94,6 +97,7 @@ def bevel(
94
97
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
95
98
  execution_context: str | int | None = None,
96
99
  undo: bool | None = None,
100
+ *,
97
101
  offset_type: str | None = "OFFSET",
98
102
  offset: typing.Any | None = 0.0,
99
103
  profile_type: str | None = "SUPERELLIPSE",
@@ -225,6 +229,7 @@ def bisect(
225
229
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
226
230
  execution_context: str | int | None = None,
227
231
  undo: bool | None = None,
232
+ *,
228
233
  plane_co: typing.Any | None = (0.0, 0.0, 0.0),
229
234
  plane_no: typing.Any | None = (0.0, 0.0, 0.0),
230
235
  use_fill: bool | typing.Any | None = False,
@@ -275,6 +280,7 @@ def blend_from_shape(
275
280
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
276
281
  execution_context: str | int | None = None,
277
282
  undo: bool | None = None,
283
+ *,
278
284
  shape: str | None = "",
279
285
  blend: typing.Any | None = 1.0,
280
286
  add: bool | typing.Any | None = True,
@@ -298,6 +304,7 @@ def bridge_edge_loops(
298
304
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
299
305
  execution_context: str | int | None = None,
300
306
  undo: bool | None = None,
307
+ *,
301
308
  type: str | None = "SINGLE",
302
309
  use_merge: bool | typing.Any | None = False,
303
310
  merge_factor: typing.Any | None = 0.5,
@@ -353,6 +360,7 @@ def colors_rotate(
353
360
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
354
361
  execution_context: str | int | None = None,
355
362
  undo: bool | None = None,
363
+ *,
356
364
  use_ccw: bool | typing.Any | None = False,
357
365
  ):
358
366
  """Rotate face corner color attribute inside faces
@@ -370,6 +378,7 @@ def convex_hull(
370
378
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
371
379
  execution_context: str | int | None = None,
372
380
  undo: bool | None = None,
381
+ *,
373
382
  delete_unused: bool | typing.Any | None = True,
374
383
  use_existing_faces: bool | typing.Any | None = True,
375
384
  make_holes: bool | typing.Any | None = False,
@@ -487,6 +496,7 @@ def decimate(
487
496
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
488
497
  execution_context: str | int | None = None,
489
498
  undo: bool | None = None,
499
+ *,
490
500
  ratio: typing.Any | None = 1.0,
491
501
  use_vertex_group: bool | typing.Any | None = False,
492
502
  vertex_group_factor: typing.Any | None = 1.0,
@@ -519,6 +529,7 @@ def delete(
519
529
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
520
530
  execution_context: str | int | None = None,
521
531
  undo: bool | None = None,
532
+ *,
522
533
  type: str | None = "VERT",
523
534
  ):
524
535
  """Delete selected vertices, edges or faces
@@ -536,6 +547,7 @@ def delete_edgeloop(
536
547
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
537
548
  execution_context: str | int | None = None,
538
549
  undo: bool | None = None,
550
+ *,
539
551
  use_face_split: bool | typing.Any | None = True,
540
552
  ):
541
553
  """Delete an edge loop by merging the faces on each side
@@ -553,6 +565,7 @@ def delete_loose(
553
565
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
554
566
  execution_context: str | int | None = None,
555
567
  undo: bool | None = None,
568
+ *,
556
569
  use_verts: bool | typing.Any | None = True,
557
570
  use_edges: bool | typing.Any | None = True,
558
571
  use_faces: bool | typing.Any | None = False,
@@ -576,6 +589,7 @@ def dissolve_degenerate(
576
589
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
577
590
  execution_context: str | int | None = None,
578
591
  undo: bool | None = None,
592
+ *,
579
593
  threshold: typing.Any | None = 0.0001,
580
594
  ):
581
595
  """Dissolve zero area faces and zero length edges
@@ -593,6 +607,7 @@ def dissolve_edges(
593
607
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
594
608
  execution_context: str | int | None = None,
595
609
  undo: bool | None = None,
610
+ *,
596
611
  use_verts: bool | typing.Any | None = True,
597
612
  use_face_split: bool | typing.Any | None = False,
598
613
  ):
@@ -613,6 +628,7 @@ def dissolve_faces(
613
628
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
614
629
  execution_context: str | int | None = None,
615
630
  undo: bool | None = None,
631
+ *,
616
632
  use_verts: bool | typing.Any | None = False,
617
633
  ):
618
634
  """Dissolve faces
@@ -630,6 +646,7 @@ def dissolve_limited(
630
646
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
631
647
  execution_context: str | int | None = None,
632
648
  undo: bool | None = None,
649
+ *,
633
650
  angle_limit: typing.Any | None = 0.0872665,
634
651
  use_dissolve_boundaries: bool | typing.Any | None = False,
635
652
  delimit: typing.Any | None = {"NORMAL"},
@@ -653,6 +670,7 @@ def dissolve_mode(
653
670
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
654
671
  execution_context: str | int | None = None,
655
672
  undo: bool | None = None,
673
+ *,
656
674
  use_verts: bool | typing.Any | None = False,
657
675
  use_face_split: bool | typing.Any | None = False,
658
676
  use_boundary_tear: bool | typing.Any | None = False,
@@ -676,6 +694,7 @@ def dissolve_verts(
676
694
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
677
695
  execution_context: str | int | None = None,
678
696
  undo: bool | None = None,
697
+ *,
679
698
  use_face_split: bool | typing.Any | None = False,
680
699
  use_boundary_tear: bool | typing.Any | None = False,
681
700
  ):
@@ -696,6 +715,7 @@ def dupli_extrude_cursor(
696
715
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
697
716
  execution_context: str | int | None = None,
698
717
  undo: bool | None = None,
718
+ *,
699
719
  rotate_source: bool | typing.Any | None = True,
700
720
  ):
701
721
  """Duplicate and extrude selected vertices, edges or faces towards the mouse cursor
@@ -713,6 +733,7 @@ def duplicate(
713
733
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
714
734
  execution_context: str | int | None = None,
715
735
  undo: bool | None = None,
736
+ *,
716
737
  mode: typing.Any | None = 1,
717
738
  ):
718
739
  """Duplicate selected vertices, edges or faces
@@ -730,6 +751,7 @@ def duplicate_move(
730
751
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
731
752
  execution_context: str | int | None = None,
732
753
  undo: bool | None = None,
754
+ *,
733
755
  MESH_OT_duplicate: duplicate | None = None,
734
756
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
735
757
  ):
@@ -778,6 +800,7 @@ def edge_rotate(
778
800
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
779
801
  execution_context: str | int | None = None,
780
802
  undo: bool | None = None,
803
+ *,
781
804
  use_ccw: bool | typing.Any | None = False,
782
805
  ):
783
806
  """Rotate selected edge or adjoining faces
@@ -795,6 +818,7 @@ def edge_split(
795
818
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
796
819
  execution_context: str | int | None = None,
797
820
  undo: bool | None = None,
821
+ *,
798
822
  type: str | None = "EDGE",
799
823
  ):
800
824
  """Split selected edges so that each neighbor face gets its own copy
@@ -818,6 +842,7 @@ def edgering_select(
818
842
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
819
843
  execution_context: str | int | None = None,
820
844
  undo: bool | None = None,
845
+ *,
821
846
  extend: bool | typing.Any | None = False,
822
847
  deselect: bool | typing.Any | None = False,
823
848
  toggle: bool | typing.Any | None = False,
@@ -844,6 +869,7 @@ def edges_select_sharp(
844
869
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
845
870
  execution_context: str | int | None = None,
846
871
  undo: bool | None = None,
872
+ *,
847
873
  sharpness: typing.Any | None = 0.523599,
848
874
  ):
849
875
  """Select all sharp enough edges
@@ -861,6 +887,7 @@ def extrude_context(
861
887
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
862
888
  execution_context: str | int | None = None,
863
889
  undo: bool | None = None,
890
+ *,
864
891
  use_normal_flip: bool | typing.Any | None = False,
865
892
  use_dissolve_ortho_edges: bool | typing.Any | None = False,
866
893
  mirror: bool | typing.Any | None = False,
@@ -884,6 +911,7 @@ def extrude_context_move(
884
911
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
885
912
  execution_context: str | int | None = None,
886
913
  undo: bool | None = None,
914
+ *,
887
915
  MESH_OT_extrude_context: extrude_context | None = None,
888
916
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
889
917
  ):
@@ -904,6 +932,7 @@ def extrude_edges_indiv(
904
932
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
905
933
  execution_context: str | int | None = None,
906
934
  undo: bool | None = None,
935
+ *,
907
936
  use_normal_flip: bool | typing.Any | None = False,
908
937
  mirror: bool | typing.Any | None = False,
909
938
  ):
@@ -924,6 +953,7 @@ def extrude_edges_move(
924
953
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
925
954
  execution_context: str | int | None = None,
926
955
  undo: bool | None = None,
956
+ *,
927
957
  MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
928
958
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
929
959
  ):
@@ -944,6 +974,7 @@ def extrude_faces_indiv(
944
974
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
945
975
  execution_context: str | int | None = None,
946
976
  undo: bool | None = None,
977
+ *,
947
978
  mirror: bool | typing.Any | None = False,
948
979
  ):
949
980
  """Extrude individual faces only
@@ -961,6 +992,7 @@ def extrude_faces_move(
961
992
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
962
993
  execution_context: str | int | None = None,
963
994
  undo: bool | None = None,
995
+ *,
964
996
  MESH_OT_extrude_faces_indiv: extrude_faces_indiv | None = None,
965
997
  TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
966
998
  ):
@@ -981,6 +1013,7 @@ def extrude_manifold(
981
1013
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
982
1014
  execution_context: str | int | None = None,
983
1015
  undo: bool | None = None,
1016
+ *,
984
1017
  MESH_OT_extrude_region: extrude_region | None = None,
985
1018
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
986
1019
  ):
@@ -1001,6 +1034,7 @@ def extrude_region(
1001
1034
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1002
1035
  execution_context: str | int | None = None,
1003
1036
  undo: bool | None = None,
1037
+ *,
1004
1038
  use_normal_flip: bool | typing.Any | None = False,
1005
1039
  use_dissolve_ortho_edges: bool | typing.Any | None = False,
1006
1040
  mirror: bool | typing.Any | None = False,
@@ -1024,6 +1058,7 @@ def extrude_region_move(
1024
1058
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1025
1059
  execution_context: str | int | None = None,
1026
1060
  undo: bool | None = None,
1061
+ *,
1027
1062
  MESH_OT_extrude_region: extrude_region | None = None,
1028
1063
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1029
1064
  ):
@@ -1044,6 +1079,7 @@ def extrude_region_shrink_fatten(
1044
1079
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1045
1080
  execution_context: str | int | None = None,
1046
1081
  undo: bool | None = None,
1082
+ *,
1047
1083
  MESH_OT_extrude_region: extrude_region | None = None,
1048
1084
  TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
1049
1085
  ):
@@ -1064,6 +1100,7 @@ def extrude_repeat(
1064
1100
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1065
1101
  execution_context: str | int | None = None,
1066
1102
  undo: bool | None = None,
1103
+ *,
1067
1104
  steps: typing.Any | None = 10,
1068
1105
  offset: typing.Any | None = (0.0, 0.0, 0.0),
1069
1106
  scale_offset: typing.Any | None = 1.0,
@@ -1087,6 +1124,7 @@ def extrude_vertices_move(
1087
1124
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1088
1125
  execution_context: str | int | None = None,
1089
1126
  undo: bool | None = None,
1127
+ *,
1090
1128
  MESH_OT_extrude_verts_indiv: extrude_verts_indiv | None = None,
1091
1129
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1092
1130
  ):
@@ -1107,6 +1145,7 @@ def extrude_verts_indiv(
1107
1145
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1108
1146
  execution_context: str | int | None = None,
1109
1147
  undo: bool | None = None,
1148
+ *,
1110
1149
  mirror: bool | typing.Any | None = False,
1111
1150
  ):
1112
1151
  """Extrude individual vertices only
@@ -1124,6 +1163,7 @@ def face_make_planar(
1124
1163
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1125
1164
  execution_context: str | int | None = None,
1126
1165
  undo: bool | None = None,
1166
+ *,
1127
1167
  factor: typing.Any | None = 1.0,
1128
1168
  repeat: typing.Any | None = 1,
1129
1169
  ):
@@ -1144,6 +1184,7 @@ def face_set_extract(
1144
1184
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1145
1185
  execution_context: str | int | None = None,
1146
1186
  undo: bool | None = None,
1187
+ *,
1147
1188
  add_boundary_loop: bool | typing.Any | None = True,
1148
1189
  smooth_iterations: typing.Any | None = 4,
1149
1190
  apply_shrinkwrap: bool | typing.Any | None = True,
@@ -1184,6 +1225,7 @@ def faces_mirror_uv(
1184
1225
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1185
1226
  execution_context: str | int | None = None,
1186
1227
  undo: bool | None = None,
1228
+ *,
1187
1229
  direction: str | None = "POSITIVE",
1188
1230
  precision: typing.Any | None = 3,
1189
1231
  ):
@@ -1204,6 +1246,7 @@ def faces_select_linked_flat(
1204
1246
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1205
1247
  execution_context: str | int | None = None,
1206
1248
  undo: bool | None = None,
1249
+ *,
1207
1250
  sharpness: typing.Any | None = 0.0174533,
1208
1251
  ):
1209
1252
  """Select linked faces by angle
@@ -1249,6 +1292,7 @@ def fill(
1249
1292
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1250
1293
  execution_context: str | int | None = None,
1251
1294
  undo: bool | None = None,
1295
+ *,
1252
1296
  use_beauty: bool | typing.Any | None = True,
1253
1297
  ):
1254
1298
  """Fill a selected edge loop with faces
@@ -1266,6 +1310,7 @@ def fill_grid(
1266
1310
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1267
1311
  execution_context: str | int | None = None,
1268
1312
  undo: bool | None = None,
1313
+ *,
1269
1314
  span: typing.Any | None = 1,
1270
1315
  offset: typing.Any | None = 0,
1271
1316
  use_interp_simple: bool | typing.Any | None = False,
@@ -1289,6 +1334,7 @@ def fill_holes(
1289
1334
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1290
1335
  execution_context: str | int | None = None,
1291
1336
  undo: bool | None = None,
1337
+ *,
1292
1338
  sides: typing.Any | None = 4,
1293
1339
  ):
1294
1340
  """Fill in holes (boundary edge loops)
@@ -1306,6 +1352,7 @@ def flip_normals(
1306
1352
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1307
1353
  execution_context: str | int | None = None,
1308
1354
  undo: bool | None = None,
1355
+ *,
1309
1356
  only_clnors: bool | typing.Any | None = False,
1310
1357
  ):
1311
1358
  """Flip the direction of selected faces' normals (and of their vertices)
@@ -1337,6 +1384,7 @@ def hide(
1337
1384
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1338
1385
  execution_context: str | int | None = None,
1339
1386
  undo: bool | None = None,
1387
+ *,
1340
1388
  unselected: bool | typing.Any | None = False,
1341
1389
  ):
1342
1390
  """Hide (un)selected vertices, edges or faces
@@ -1354,6 +1402,7 @@ def inset(
1354
1402
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1355
1403
  execution_context: str | int | None = None,
1356
1404
  undo: bool | None = None,
1405
+ *,
1357
1406
  use_boundary: bool | typing.Any | None = True,
1358
1407
  use_even_offset: bool | typing.Any | None = True,
1359
1408
  use_relative_offset: bool | typing.Any | None = False,
@@ -1401,6 +1450,7 @@ def intersect(
1401
1450
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1402
1451
  execution_context: str | int | None = None,
1403
1452
  undo: bool | None = None,
1453
+ *,
1404
1454
  mode: str | None = "SELECT_UNSELECT",
1405
1455
  separate_mode: str | None = "CUT",
1406
1456
  threshold: typing.Any | None = 1e-06,
@@ -1448,6 +1498,7 @@ def intersect_boolean(
1448
1498
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1449
1499
  execution_context: str | int | None = None,
1450
1500
  undo: bool | None = None,
1501
+ *,
1451
1502
  operation: str | None = "DIFFERENCE",
1452
1503
  use_swap: bool | typing.Any | None = False,
1453
1504
  use_self: bool | typing.Any | None = False,
@@ -1483,6 +1534,7 @@ def knife_project(
1483
1534
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1484
1535
  execution_context: str | int | None = None,
1485
1536
  undo: bool | None = None,
1537
+ *,
1486
1538
  cut_through: bool | typing.Any | None = False,
1487
1539
  ):
1488
1540
  """Use other objects outlines and boundaries to project knife cuts
@@ -1500,6 +1552,7 @@ def knife_tool(
1500
1552
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1501
1553
  execution_context: str | int | None = None,
1502
1554
  undo: bool | None = None,
1555
+ *,
1503
1556
  use_occlude_geometry: bool | typing.Any | None = True,
1504
1557
  only_selected: bool | typing.Any | None = False,
1505
1558
  xray: bool | typing.Any | None = True,
@@ -1556,6 +1609,7 @@ def loop_multi_select(
1556
1609
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1557
1610
  execution_context: str | int | None = None,
1558
1611
  undo: bool | None = None,
1612
+ *,
1559
1613
  ring: bool | typing.Any | None = False,
1560
1614
  ):
1561
1615
  """Select a loop of connected edges by connection type
@@ -1573,6 +1627,7 @@ def loop_select(
1573
1627
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1574
1628
  execution_context: str | int | None = None,
1575
1629
  undo: bool | None = None,
1630
+ *,
1576
1631
  extend: bool | typing.Any | None = False,
1577
1632
  deselect: bool | typing.Any | None = False,
1578
1633
  toggle: bool | typing.Any | None = False,
@@ -1599,6 +1654,7 @@ def loop_to_region(
1599
1654
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1600
1655
  execution_context: str | int | None = None,
1601
1656
  undo: bool | None = None,
1657
+ *,
1602
1658
  select_bigger: bool | typing.Any | None = False,
1603
1659
  ):
1604
1660
  """Select region of faces inside of a selected loop of edges
@@ -1616,6 +1672,7 @@ def loopcut(
1616
1672
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1617
1673
  execution_context: str | int | None = None,
1618
1674
  undo: bool | None = None,
1675
+ *,
1619
1676
  number_cuts: typing.Any | None = 1,
1620
1677
  smoothness: typing.Any | None = 0.0,
1621
1678
  falloff: str | None = "INVERSE_SQUARE",
@@ -1647,6 +1704,7 @@ def loopcut_slide(
1647
1704
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1648
1705
  execution_context: str | int | None = None,
1649
1706
  undo: bool | None = None,
1707
+ *,
1650
1708
  MESH_OT_loopcut: loopcut | None = None,
1651
1709
  TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
1652
1710
  ):
@@ -1667,6 +1725,7 @@ def mark_freestyle_edge(
1667
1725
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1668
1726
  execution_context: str | int | None = None,
1669
1727
  undo: bool | None = None,
1728
+ *,
1670
1729
  clear: bool | typing.Any | None = False,
1671
1730
  ):
1672
1731
  """(Un)mark selected edges as Freestyle feature edges
@@ -1684,6 +1743,7 @@ def mark_freestyle_face(
1684
1743
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1685
1744
  execution_context: str | int | None = None,
1686
1745
  undo: bool | None = None,
1746
+ *,
1687
1747
  clear: bool | typing.Any | None = False,
1688
1748
  ):
1689
1749
  """(Un)mark selected faces for exclusion from Freestyle feature edge detection
@@ -1701,6 +1761,7 @@ def mark_seam(
1701
1761
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1702
1762
  execution_context: str | int | None = None,
1703
1763
  undo: bool | None = None,
1764
+ *,
1704
1765
  clear: bool | typing.Any | None = False,
1705
1766
  ):
1706
1767
  """(Un)mark selected edges as a seam
@@ -1718,6 +1779,7 @@ def mark_sharp(
1718
1779
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1719
1780
  execution_context: str | int | None = None,
1720
1781
  undo: bool | None = None,
1782
+ *,
1721
1783
  clear: bool | typing.Any | None = False,
1722
1784
  use_verts: bool | typing.Any | None = False,
1723
1785
  ):
@@ -1738,6 +1800,7 @@ def merge(
1738
1800
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1739
1801
  execution_context: str | int | None = None,
1740
1802
  undo: bool | None = None,
1803
+ *,
1741
1804
  type: str | None = "CENTER",
1742
1805
  uvs: bool | typing.Any | None = False,
1743
1806
  ):
@@ -1772,6 +1835,7 @@ def mod_weighted_strength(
1772
1835
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1773
1836
  execution_context: str | int | None = None,
1774
1837
  undo: bool | None = None,
1838
+ *,
1775
1839
  set: bool | typing.Any | None = False,
1776
1840
  face_strength: str | None = "MEDIUM",
1777
1841
  ):
@@ -1792,6 +1856,7 @@ def normals_make_consistent(
1792
1856
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1793
1857
  execution_context: str | int | None = None,
1794
1858
  undo: bool | None = None,
1859
+ *,
1795
1860
  inside: bool | typing.Any | None = False,
1796
1861
  ):
1797
1862
  """Make face and vertex normals point either outside or inside the mesh
@@ -1809,6 +1874,7 @@ def normals_tools(
1809
1874
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1810
1875
  execution_context: str | int | None = None,
1811
1876
  undo: bool | None = None,
1877
+ *,
1812
1878
  mode: str | None = "COPY",
1813
1879
  absolute: bool | typing.Any | None = False,
1814
1880
  ):
@@ -1844,6 +1910,7 @@ def offset_edge_loops(
1844
1910
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1845
1911
  execution_context: str | int | None = None,
1846
1912
  undo: bool | None = None,
1913
+ *,
1847
1914
  use_cap_endpoint: bool | typing.Any | None = False,
1848
1915
  ):
1849
1916
  """Create offset edge loop from the current selection
@@ -1861,6 +1928,7 @@ def offset_edge_loops_slide(
1861
1928
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1862
1929
  execution_context: str | int | None = None,
1863
1930
  undo: bool | None = None,
1931
+ *,
1864
1932
  MESH_OT_offset_edge_loops: offset_edge_loops | None = None,
1865
1933
  TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
1866
1934
  ):
@@ -1881,6 +1949,7 @@ def paint_mask_extract(
1881
1949
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1882
1950
  execution_context: str | int | None = None,
1883
1951
  undo: bool | None = None,
1952
+ *,
1884
1953
  mask_threshold: typing.Any | None = 0.5,
1885
1954
  add_boundary_loop: bool | typing.Any | None = True,
1886
1955
  smooth_iterations: typing.Any | None = 4,
@@ -1910,6 +1979,7 @@ def paint_mask_slice(
1910
1979
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1911
1980
  execution_context: str | int | None = None,
1912
1981
  undo: bool | None = None,
1982
+ *,
1913
1983
  mask_threshold: typing.Any | None = 0.5,
1914
1984
  fill_holes: bool | typing.Any | None = True,
1915
1985
  new_object: bool | typing.Any | None = True,
@@ -1933,6 +2003,7 @@ def point_normals(
1933
2003
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1934
2004
  execution_context: str | int | None = None,
1935
2005
  undo: bool | None = None,
2006
+ *,
1936
2007
  mode: str | None = "COORDINATES",
1937
2008
  invert: bool | typing.Any | None = False,
1938
2009
  align: bool | typing.Any | None = False,
@@ -1971,6 +2042,7 @@ def poke(
1971
2042
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1972
2043
  execution_context: str | int | None = None,
1973
2044
  undo: bool | None = None,
2045
+ *,
1974
2046
  offset: typing.Any | None = 0.0,
1975
2047
  use_relative_offset: bool | typing.Any | None = False,
1976
2048
  center_mode: str | None = "MEDIAN_WEIGHTED",
@@ -2003,6 +2075,7 @@ def polybuild_delete_at_cursor(
2003
2075
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2004
2076
  execution_context: str | int | None = None,
2005
2077
  undo: bool | None = None,
2078
+ *,
2006
2079
  mirror: bool | typing.Any | None = False,
2007
2080
  use_proportional_edit: bool | typing.Any | None = False,
2008
2081
  proportional_edit_falloff: str | None = "SMOOTH",
@@ -2055,6 +2128,7 @@ def polybuild_extrude_at_cursor_move(
2055
2128
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2056
2129
  execution_context: str | int | None = None,
2057
2130
  undo: bool | None = None,
2131
+ *,
2058
2132
  MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
2059
2133
  MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
2060
2134
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
@@ -2078,6 +2152,7 @@ def polybuild_face_at_cursor(
2078
2152
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2079
2153
  execution_context: str | int | None = None,
2080
2154
  undo: bool | None = None,
2155
+ *,
2081
2156
  create_quads: bool | typing.Any | None = True,
2082
2157
  mirror: bool | typing.Any | None = False,
2083
2158
  use_proportional_edit: bool | typing.Any | None = False,
@@ -2119,6 +2194,7 @@ def polybuild_face_at_cursor_move(
2119
2194
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2120
2195
  execution_context: str | int | None = None,
2121
2196
  undo: bool | None = None,
2197
+ *,
2122
2198
  MESH_OT_polybuild_face_at_cursor: polybuild_face_at_cursor | None = None,
2123
2199
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
2124
2200
  ):
@@ -2139,6 +2215,7 @@ def polybuild_split_at_cursor(
2139
2215
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2140
2216
  execution_context: str | int | None = None,
2141
2217
  undo: bool | None = None,
2218
+ *,
2142
2219
  mirror: bool | typing.Any | None = False,
2143
2220
  use_proportional_edit: bool | typing.Any | None = False,
2144
2221
  proportional_edit_falloff: str | None = "SMOOTH",
@@ -2177,6 +2254,7 @@ def polybuild_split_at_cursor_move(
2177
2254
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2178
2255
  execution_context: str | int | None = None,
2179
2256
  undo: bool | None = None,
2257
+ *,
2180
2258
  MESH_OT_polybuild_split_at_cursor: polybuild_split_at_cursor | None = None,
2181
2259
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
2182
2260
  ):
@@ -2197,6 +2275,7 @@ def polybuild_transform_at_cursor(
2197
2275
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2198
2276
  execution_context: str | int | None = None,
2199
2277
  undo: bool | None = None,
2278
+ *,
2200
2279
  mirror: bool | typing.Any | None = False,
2201
2280
  use_proportional_edit: bool | typing.Any | None = False,
2202
2281
  proportional_edit_falloff: str | None = "SMOOTH",
@@ -2235,6 +2314,7 @@ def polybuild_transform_at_cursor_move(
2235
2314
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2236
2315
  execution_context: str | int | None = None,
2237
2316
  undo: bool | None = None,
2317
+ *,
2238
2318
  MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
2239
2319
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
2240
2320
  ):
@@ -2255,6 +2335,7 @@ def primitive_circle_add(
2255
2335
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2256
2336
  execution_context: str | int | None = None,
2257
2337
  undo: bool | None = None,
2338
+ *,
2258
2339
  vertices: typing.Any | None = 32,
2259
2340
  radius: typing.Any | None = 1.0,
2260
2341
  fill_type: str | None = "NOTHING",
@@ -2314,6 +2395,7 @@ def primitive_cone_add(
2314
2395
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2315
2396
  execution_context: str | int | None = None,
2316
2397
  undo: bool | None = None,
2398
+ *,
2317
2399
  vertices: typing.Any | None = 32,
2318
2400
  radius1: typing.Any | None = 1.0,
2319
2401
  radius2: typing.Any | None = 0.0,
@@ -2379,6 +2461,7 @@ def primitive_cube_add(
2379
2461
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2380
2462
  execution_context: str | int | None = None,
2381
2463
  undo: bool | None = None,
2464
+ *,
2382
2465
  size: typing.Any | None = 2.0,
2383
2466
  calc_uvs: bool | typing.Any | None = True,
2384
2467
  enter_editmode: bool | typing.Any | None = False,
@@ -2423,6 +2506,7 @@ def primitive_cube_add_gizmo(
2423
2506
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2424
2507
  execution_context: str | int | None = None,
2425
2508
  undo: bool | None = None,
2509
+ *,
2426
2510
  calc_uvs: bool | typing.Any | None = True,
2427
2511
  enter_editmode: bool | typing.Any | None = False,
2428
2512
  align: str | None = "WORLD",
@@ -2472,6 +2556,7 @@ def primitive_cylinder_add(
2472
2556
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2473
2557
  execution_context: str | int | None = None,
2474
2558
  undo: bool | None = None,
2559
+ *,
2475
2560
  vertices: typing.Any | None = 32,
2476
2561
  radius: typing.Any | None = 1.0,
2477
2562
  depth: typing.Any | None = 2.0,
@@ -2534,6 +2619,7 @@ def primitive_grid_add(
2534
2619
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2535
2620
  execution_context: str | int | None = None,
2536
2621
  undo: bool | None = None,
2622
+ *,
2537
2623
  x_subdivisions: typing.Any | None = 10,
2538
2624
  y_subdivisions: typing.Any | None = 10,
2539
2625
  size: typing.Any | None = 2.0,
@@ -2584,6 +2670,7 @@ def primitive_ico_sphere_add(
2584
2670
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2585
2671
  execution_context: str | int | None = None,
2586
2672
  undo: bool | None = None,
2673
+ *,
2587
2674
  subdivisions: typing.Any | None = 2,
2588
2675
  radius: typing.Any | None = 1.0,
2589
2676
  calc_uvs: bool | typing.Any | None = True,
@@ -2631,6 +2718,7 @@ def primitive_monkey_add(
2631
2718
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2632
2719
  execution_context: str | int | None = None,
2633
2720
  undo: bool | None = None,
2721
+ *,
2634
2722
  size: typing.Any | None = 2.0,
2635
2723
  calc_uvs: bool | typing.Any | None = True,
2636
2724
  enter_editmode: bool | typing.Any | None = False,
@@ -2675,6 +2763,7 @@ def primitive_plane_add(
2675
2763
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2676
2764
  execution_context: str | int | None = None,
2677
2765
  undo: bool | None = None,
2766
+ *,
2678
2767
  size: typing.Any | None = 2.0,
2679
2768
  calc_uvs: bool | typing.Any | None = True,
2680
2769
  enter_editmode: bool | typing.Any | None = False,
@@ -2719,6 +2808,7 @@ def primitive_torus_add(
2719
2808
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2720
2809
  execution_context: str | int | None = None,
2721
2810
  undo: bool | None = None,
2811
+ *,
2722
2812
  align: str | None = "WORLD",
2723
2813
  location: typing.Any | None = (0.0, 0.0, 0.0),
2724
2814
  rotation: typing.Any | None = (0.0, 0.0, 0.0),
@@ -2781,6 +2871,7 @@ def primitive_uv_sphere_add(
2781
2871
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2782
2872
  execution_context: str | int | None = None,
2783
2873
  undo: bool | None = None,
2874
+ *,
2784
2875
  segments: typing.Any | None = 32,
2785
2876
  ring_count: typing.Any | None = 16,
2786
2877
  radius: typing.Any | None = 1.0,
@@ -2831,6 +2922,7 @@ def quads_convert_to_tris(
2831
2922
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2832
2923
  execution_context: str | int | None = None,
2833
2924
  undo: bool | None = None,
2925
+ *,
2834
2926
  quad_method: str | None = "BEAUTY",
2835
2927
  ngon_method: str | None = "BEAUTY",
2836
2928
  ):
@@ -2865,6 +2957,7 @@ def remove_doubles(
2865
2957
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2866
2958
  execution_context: str | int | None = None,
2867
2959
  undo: bool | None = None,
2960
+ *,
2868
2961
  threshold: typing.Any | None = 0.0001,
2869
2962
  use_unselected: bool | typing.Any | None = False,
2870
2963
  use_sharp_edge_from_normals: bool | typing.Any | None = False,
@@ -2888,6 +2981,7 @@ def reveal(
2888
2981
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2889
2982
  execution_context: str | int | None = None,
2890
2983
  undo: bool | None = None,
2984
+ *,
2891
2985
  select: bool | typing.Any | None = True,
2892
2986
  ):
2893
2987
  """Reveal all hidden vertices, edges and faces
@@ -2905,6 +2999,7 @@ def rip(
2905
2999
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2906
3000
  execution_context: str | int | None = None,
2907
3001
  undo: bool | None = None,
3002
+ *,
2908
3003
  mirror: bool | typing.Any | None = False,
2909
3004
  use_proportional_edit: bool | typing.Any | None = False,
2910
3005
  proportional_edit_falloff: str | None = "SMOOTH",
@@ -2946,6 +3041,7 @@ def rip_edge(
2946
3041
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2947
3042
  execution_context: str | int | None = None,
2948
3043
  undo: bool | None = None,
3044
+ *,
2949
3045
  mirror: bool | typing.Any | None = False,
2950
3046
  use_proportional_edit: bool | typing.Any | None = False,
2951
3047
  proportional_edit_falloff: str | None = "SMOOTH",
@@ -2984,6 +3080,7 @@ def rip_edge_move(
2984
3080
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
2985
3081
  execution_context: str | int | None = None,
2986
3082
  undo: bool | None = None,
3083
+ *,
2987
3084
  MESH_OT_rip_edge: rip_edge | None = None,
2988
3085
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
2989
3086
  ):
@@ -3004,6 +3101,7 @@ def rip_move(
3004
3101
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3005
3102
  execution_context: str | int | None = None,
3006
3103
  undo: bool | None = None,
3104
+ *,
3007
3105
  MESH_OT_rip: rip | None = None,
3008
3106
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
3009
3107
  ):
@@ -3024,6 +3122,7 @@ def screw(
3024
3122
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3025
3123
  execution_context: str | int | None = None,
3026
3124
  undo: bool | None = None,
3125
+ *,
3027
3126
  steps: typing.Any | None = 9,
3028
3127
  turns: typing.Any | None = 1,
3029
3128
  center: typing.Any | None = (0.0, 0.0, 0.0),
@@ -3050,6 +3149,7 @@ def select_all(
3050
3149
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3051
3150
  execution_context: str | int | None = None,
3052
3151
  undo: bool | None = None,
3152
+ *,
3053
3153
  action: str | None = "TOGGLE",
3054
3154
  ):
3055
3155
  """(De)select all vertices, edges or faces
@@ -3079,6 +3179,7 @@ def select_axis(
3079
3179
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3080
3180
  execution_context: str | int | None = None,
3081
3181
  undo: bool | None = None,
3182
+ *,
3082
3183
  orientation: str | None = "LOCAL",
3083
3184
  sign: str | None = "POS",
3084
3185
  axis: str | None = "X",
@@ -3119,6 +3220,7 @@ def select_face_by_sides(
3119
3220
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3120
3221
  execution_context: str | int | None = None,
3121
3222
  undo: bool | None = None,
3223
+ *,
3122
3224
  number: typing.Any | None = 4,
3123
3225
  type: str | None = "EQUAL",
3124
3226
  extend: bool | typing.Any | None = True,
@@ -3156,6 +3258,7 @@ def select_less(
3156
3258
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3157
3259
  execution_context: str | int | None = None,
3158
3260
  undo: bool | None = None,
3261
+ *,
3159
3262
  use_face_step: bool | typing.Any | None = True,
3160
3263
  ):
3161
3264
  """Deselect vertices, edges or faces at the boundary of each selection region
@@ -3173,6 +3276,7 @@ def select_linked(
3173
3276
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3174
3277
  execution_context: str | int | None = None,
3175
3278
  undo: bool | None = None,
3279
+ *,
3176
3280
  delimit: typing.Any | None = {"SEAM"},
3177
3281
  ):
3178
3282
  """Select all vertices connected to the current selection
@@ -3190,6 +3294,7 @@ def select_linked_pick(
3190
3294
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3191
3295
  execution_context: str | int | None = None,
3192
3296
  undo: bool | None = None,
3297
+ *,
3193
3298
  deselect: bool | typing.Any | None = False,
3194
3299
  delimit: typing.Any | None = {"SEAM"},
3195
3300
  object_index: typing.Any | None = -1,
@@ -3214,6 +3319,7 @@ def select_loose(
3214
3319
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3215
3320
  execution_context: str | int | None = None,
3216
3321
  undo: bool | None = None,
3322
+ *,
3217
3323
  extend: bool | typing.Any | None = False,
3218
3324
  ):
3219
3325
  """Select loose geometry based on the selection mode
@@ -3231,6 +3337,7 @@ def select_mirror(
3231
3337
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3232
3338
  execution_context: str | int | None = None,
3233
3339
  undo: bool | None = None,
3340
+ *,
3234
3341
  axis: typing.Any | None = {"X"},
3235
3342
  extend: bool | typing.Any | None = False,
3236
3343
  ):
@@ -3251,6 +3358,7 @@ def select_mode(
3251
3358
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3252
3359
  execution_context: str | int | None = None,
3253
3360
  undo: bool | None = None,
3361
+ *,
3254
3362
  use_extend: bool | typing.Any | None = False,
3255
3363
  use_expand: bool | typing.Any | None = False,
3256
3364
  type: str | None = "VERT",
@@ -3286,6 +3394,7 @@ def select_more(
3286
3394
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3287
3395
  execution_context: str | int | None = None,
3288
3396
  undo: bool | None = None,
3397
+ *,
3289
3398
  use_face_step: bool | typing.Any | None = True,
3290
3399
  ):
3291
3400
  """Select more vertices, edges or faces connected to initial selection
@@ -3317,6 +3426,7 @@ def select_non_manifold(
3317
3426
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3318
3427
  execution_context: str | int | None = None,
3319
3428
  undo: bool | None = None,
3429
+ *,
3320
3430
  extend: bool | typing.Any | None = True,
3321
3431
  use_wire: bool | typing.Any | None = True,
3322
3432
  use_boundary: bool | typing.Any | None = True,
@@ -3349,6 +3459,7 @@ def select_nth(
3349
3459
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3350
3460
  execution_context: str | int | None = None,
3351
3461
  undo: bool | None = None,
3462
+ *,
3352
3463
  skip: typing.Any | None = 1,
3353
3464
  nth: typing.Any | None = 1,
3354
3465
  offset: typing.Any | None = 0,
@@ -3386,6 +3497,7 @@ def select_random(
3386
3497
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3387
3498
  execution_context: str | int | None = None,
3388
3499
  undo: bool | None = None,
3500
+ *,
3389
3501
  ratio: typing.Any | None = 0.5,
3390
3502
  seed: typing.Any | None = 0,
3391
3503
  action: str | None = "SELECT",
@@ -3415,6 +3527,7 @@ def select_similar(
3415
3527
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3416
3528
  execution_context: str | int | None = None,
3417
3529
  undo: bool | None = None,
3530
+ *,
3418
3531
  type: str | None = "VERT_NORMAL",
3419
3532
  compare: str | None = "EQUAL",
3420
3533
  threshold: typing.Any | None = 0.0,
@@ -3452,6 +3565,7 @@ def select_ungrouped(
3452
3565
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3453
3566
  execution_context: str | int | None = None,
3454
3567
  undo: bool | None = None,
3568
+ *,
3455
3569
  extend: bool | typing.Any | None = False,
3456
3570
  ):
3457
3571
  """Select vertices without a group
@@ -3469,6 +3583,7 @@ def separate(
3469
3583
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3470
3584
  execution_context: str | int | None = None,
3471
3585
  undo: bool | None = None,
3586
+ *,
3472
3587
  type: str | None = "SELECTED",
3473
3588
  ):
3474
3589
  """Separate selected geometry into a new mesh
@@ -3486,6 +3601,7 @@ def set_normals_from_faces(
3486
3601
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3487
3602
  execution_context: str | int | None = None,
3488
3603
  undo: bool | None = None,
3604
+ *,
3489
3605
  keep_sharp: bool | typing.Any | None = False,
3490
3606
  ):
3491
3607
  """Set the custom normals from the selected faces ones
@@ -3503,6 +3619,7 @@ def set_sharpness_by_angle(
3503
3619
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3504
3620
  execution_context: str | int | None = None,
3505
3621
  undo: bool | None = None,
3622
+ *,
3506
3623
  angle: typing.Any | None = 0.523599,
3507
3624
  extend: bool | typing.Any | None = False,
3508
3625
  ):
@@ -3537,6 +3654,7 @@ def shortest_path_pick(
3537
3654
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3538
3655
  execution_context: str | int | None = None,
3539
3656
  undo: bool | None = None,
3657
+ *,
3540
3658
  edge_mode: str | None = "SELECT",
3541
3659
  use_face_step: bool | typing.Any | None = False,
3542
3660
  use_topology_distance: bool | typing.Any | None = False,
@@ -3574,6 +3692,7 @@ def shortest_path_select(
3574
3692
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3575
3693
  execution_context: str | int | None = None,
3576
3694
  undo: bool | None = None,
3695
+ *,
3577
3696
  edge_mode: str | None = "SELECT",
3578
3697
  use_face_step: bool | typing.Any | None = False,
3579
3698
  use_topology_distance: bool | typing.Any | None = False,
@@ -3609,6 +3728,7 @@ def smooth_normals(
3609
3728
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3610
3729
  execution_context: str | int | None = None,
3611
3730
  undo: bool | None = None,
3731
+ *,
3612
3732
  factor: typing.Any | None = 0.5,
3613
3733
  ):
3614
3734
  """Smooth custom normals based on adjacent vertex normals
@@ -3626,6 +3746,7 @@ def solidify(
3626
3746
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3627
3747
  execution_context: str | int | None = None,
3628
3748
  undo: bool | None = None,
3749
+ *,
3629
3750
  thickness: typing.Any | None = 0.01,
3630
3751
  ):
3631
3752
  """Create a solid skin by extruding, compensating for sharp angles
@@ -3643,6 +3764,7 @@ def sort_elements(
3643
3764
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3644
3765
  execution_context: str | int | None = None,
3645
3766
  undo: bool | None = None,
3767
+ *,
3646
3768
  type: str | None = "VIEW_ZAXIS",
3647
3769
  elements: set[str] | None = {"VERT"},
3648
3770
  reverse: bool | typing.Any | None = False,
@@ -3691,6 +3813,7 @@ def spin(
3691
3813
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3692
3814
  execution_context: str | int | None = None,
3693
3815
  undo: bool | None = None,
3816
+ *,
3694
3817
  steps: typing.Any | None = 12,
3695
3818
  dupli: bool | typing.Any | None = False,
3696
3819
  angle: typing.Any | None = 1.5708,
@@ -3754,6 +3877,7 @@ def subdivide(
3754
3877
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3755
3878
  execution_context: str | int | None = None,
3756
3879
  undo: bool | None = None,
3880
+ *,
3757
3881
  number_cuts: typing.Any | None = 1,
3758
3882
  smoothness: typing.Any | None = 0.0,
3759
3883
  ngon: bool | typing.Any | None = True,
@@ -3789,6 +3913,7 @@ def subdivide_edgering(
3789
3913
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3790
3914
  execution_context: str | int | None = None,
3791
3915
  undo: bool | None = None,
3916
+ *,
3792
3917
  number_cuts: typing.Any | None = 10,
3793
3918
  interpolation: str | None = "PATH",
3794
3919
  smoothness: typing.Any | None = 1.0,
@@ -3818,6 +3943,7 @@ def symmetrize(
3818
3943
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3819
3944
  execution_context: str | int | None = None,
3820
3945
  undo: bool | None = None,
3946
+ *,
3821
3947
  direction: str | None = "NEGATIVE_X",
3822
3948
  threshold: typing.Any | None = 0.0001,
3823
3949
  ):
@@ -3838,6 +3964,7 @@ def symmetry_snap(
3838
3964
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3839
3965
  execution_context: str | int | None = None,
3840
3966
  undo: bool | None = None,
3967
+ *,
3841
3968
  direction: str | None = "NEGATIVE_X",
3842
3969
  threshold: typing.Any | None = 0.05,
3843
3970
  factor: typing.Any | None = 0.5,
@@ -3864,6 +3991,7 @@ def tris_convert_to_quads(
3864
3991
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3865
3992
  execution_context: str | int | None = None,
3866
3993
  undo: bool | None = None,
3994
+ *,
3867
3995
  face_threshold: typing.Any | None = 0.698132,
3868
3996
  shape_threshold: typing.Any | None = 0.698132,
3869
3997
  uvs: bool | typing.Any | None = False,
@@ -3899,6 +4027,7 @@ def unsubdivide(
3899
4027
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3900
4028
  execution_context: str | int | None = None,
3901
4029
  undo: bool | None = None,
4030
+ *,
3902
4031
  iterations: typing.Any | None = 2,
3903
4032
  ):
3904
4033
  """Un-subdivide selected edges and faces
@@ -3958,6 +4087,7 @@ def uvs_rotate(
3958
4087
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
3959
4088
  execution_context: str | int | None = None,
3960
4089
  undo: bool | None = None,
4090
+ *,
3961
4091
  use_ccw: bool | typing.Any | None = False,
3962
4092
  ):
3963
4093
  """Rotate UV coordinates inside faces
@@ -4003,6 +4133,7 @@ def vert_connect_nonplanar(
4003
4133
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4004
4134
  execution_context: str | int | None = None,
4005
4135
  undo: bool | None = None,
4136
+ *,
4006
4137
  angle_limit: typing.Any | None = 0.0872665,
4007
4138
  ):
4008
4139
  """Split non-planar faces that exceed the angle threshold
@@ -4034,6 +4165,7 @@ def vertices_smooth(
4034
4165
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4035
4166
  execution_context: str | int | None = None,
4036
4167
  undo: bool | None = None,
4168
+ *,
4037
4169
  factor: typing.Any | None = 0.0,
4038
4170
  repeat: typing.Any | None = 1,
4039
4171
  xaxis: bool | typing.Any | None = True,
@@ -4066,6 +4198,7 @@ def vertices_smooth_laplacian(
4066
4198
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4067
4199
  execution_context: str | int | None = None,
4068
4200
  undo: bool | None = None,
4201
+ *,
4069
4202
  repeat: typing.Any | None = 1,
4070
4203
  lambda_factor: typing.Any | None = 1.0,
4071
4204
  lambda_border: typing.Any | None = 5e-05,
@@ -4101,6 +4234,7 @@ def wireframe(
4101
4234
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
4102
4235
  execution_context: str | int | None = None,
4103
4236
  undo: bool | None = None,
4237
+ *,
4104
4238
  use_boundary: bool | typing.Any | None = True,
4105
4239
  use_even_offset: bool | typing.Any | None = True,
4106
4240
  use_relative_offset: bool | typing.Any | None = False,