fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -7,15 +7,14 @@ import bpy.typing
7
7
  import mathutils
8
8
 
9
9
  def cyclic_toggle(
10
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
11
10
  execution_context: int | str | None = None,
12
11
  undo: bool | None = None,
12
+ /,
13
13
  *,
14
14
  direction: typing.Literal["CYCLIC_U", "CYCLIC_V"] | None = "CYCLIC_U",
15
15
  ):
16
16
  """Make active spline closed/opened loop
17
17
 
18
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
19
18
  :type execution_context: int | str | None
20
19
  :type undo: bool | None
21
20
  :param direction: Direction, Direction to make surface cyclic in
@@ -23,39 +22,32 @@ def cyclic_toggle(
23
22
  """
24
23
 
25
24
  def de_select_first(
26
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
27
- execution_context: int | str | None = None,
28
- undo: bool | None = None,
25
+ execution_context: int | str | None = None, undo: bool | None = None
29
26
  ):
30
27
  """(De)select first of visible part of each NURBS
31
28
 
32
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
33
29
  :type execution_context: int | str | None
34
30
  :type undo: bool | None
35
31
  """
36
32
 
37
33
  def de_select_last(
38
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
39
- execution_context: int | str | None = None,
40
- undo: bool | None = None,
34
+ execution_context: int | str | None = None, undo: bool | None = None
41
35
  ):
42
36
  """(De)select last of visible part of each NURBS
43
37
 
44
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
45
38
  :type execution_context: int | str | None
46
39
  :type undo: bool | None
47
40
  """
48
41
 
49
42
  def decimate(
50
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
51
43
  execution_context: int | str | None = None,
52
44
  undo: bool | None = None,
45
+ /,
53
46
  *,
54
47
  ratio: float | None = 1.0,
55
48
  ):
56
49
  """Simplify selected curves
57
50
 
58
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
59
51
  :type execution_context: int | str | None
60
52
  :type undo: bool | None
61
53
  :param ratio: Ratio
@@ -63,15 +55,14 @@ def decimate(
63
55
  """
64
56
 
65
57
  def delete(
66
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
67
58
  execution_context: int | str | None = None,
68
59
  undo: bool | None = None,
60
+ /,
69
61
  *,
70
62
  type: typing.Literal["VERT", "SEGMENT"] | None = "VERT",
71
63
  ):
72
64
  """Delete selected control points or segments
73
65
 
74
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
75
66
  :type execution_context: int | str | None
76
67
  :type undo: bool | None
77
68
  :param type: Type, Which elements to delete
@@ -79,21 +70,18 @@ def delete(
79
70
  """
80
71
 
81
72
  def dissolve_verts(
82
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
83
- execution_context: int | str | None = None,
84
- undo: bool | None = None,
73
+ execution_context: int | str | None = None, undo: bool | None = None
85
74
  ):
86
75
  """Delete selected control points, correcting surrounding handles
87
76
 
88
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
89
77
  :type execution_context: int | str | None
90
78
  :type undo: bool | None
91
79
  """
92
80
 
93
81
  def draw(
94
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
95
82
  execution_context: int | str | None = None,
96
83
  undo: bool | None = None,
84
+ /,
97
85
  *,
98
86
  error_threshold: float | None = 0.0,
99
87
  fit_method: bpy.typing.CurveFitMethodItems | None = "REFIT",
@@ -105,7 +93,6 @@ def draw(
105
93
  ):
106
94
  """Draw a freehand spline
107
95
 
108
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
109
96
  :type execution_context: int | str | None
110
97
  :type undo: bool | None
111
98
  :param error_threshold: Error, Error distance threshold (in object units)
@@ -122,29 +109,23 @@ def draw(
122
109
  :type wait_for_input: bool | None
123
110
  """
124
111
 
125
- def duplicate(
126
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
127
- execution_context: int | str | None = None,
128
- undo: bool | None = None,
129
- ):
112
+ def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
130
113
  """Duplicate selected control points
131
114
 
132
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
133
115
  :type execution_context: int | str | None
134
116
  :type undo: bool | None
135
117
  """
136
118
 
137
119
  def duplicate_move(
138
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
139
120
  execution_context: int | str | None = None,
140
121
  undo: bool | None = None,
122
+ /,
141
123
  *,
142
124
  CURVE_OT_duplicate: duplicate | None = None,
143
125
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
144
126
  ):
145
127
  """Duplicate curve and move
146
128
 
147
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
148
129
  :type execution_context: int | str | None
149
130
  :type undo: bool | None
150
131
  :param CURVE_OT_duplicate: Duplicate Curve, Duplicate selected control points
@@ -154,15 +135,14 @@ def duplicate_move(
154
135
  """
155
136
 
156
137
  def extrude(
157
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
158
138
  execution_context: int | str | None = None,
159
139
  undo: bool | None = None,
140
+ /,
160
141
  *,
161
142
  mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
162
143
  ):
163
144
  """Extrude selected control point(s)
164
145
 
165
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
166
146
  :type execution_context: int | str | None
167
147
  :type undo: bool | None
168
148
  :param mode: Mode
@@ -170,16 +150,15 @@ def extrude(
170
150
  """
171
151
 
172
152
  def extrude_move(
173
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
174
153
  execution_context: int | str | None = None,
175
154
  undo: bool | None = None,
155
+ /,
176
156
  *,
177
157
  CURVE_OT_extrude: extrude | None = None,
178
158
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
179
159
  ):
180
160
  """Extrude curve and move result
181
161
 
182
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
183
162
  :type execution_context: int | str | None
184
163
  :type undo: bool | None
185
164
  :param CURVE_OT_extrude: Extrude, Extrude selected control point(s)
@@ -189,9 +168,9 @@ def extrude_move(
189
168
  """
190
169
 
191
170
  def handle_type_set(
192
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
193
171
  execution_context: int | str | None = None,
194
172
  undo: bool | None = None,
173
+ /,
195
174
  *,
196
175
  type: typing.Literal[
197
176
  "AUTOMATIC", "VECTOR", "ALIGNED", "FREE_ALIGN", "TOGGLE_FREE_ALIGN"
@@ -200,7 +179,6 @@ def handle_type_set(
200
179
  ):
201
180
  """Set type of handles for selected control points
202
181
 
203
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
204
182
  :type execution_context: int | str | None
205
183
  :type undo: bool | None
206
184
  :param type: Type, Spline type
@@ -208,55 +186,45 @@ def handle_type_set(
208
186
  """
209
187
 
210
188
  def hide(
211
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
212
189
  execution_context: int | str | None = None,
213
190
  undo: bool | None = None,
191
+ /,
214
192
  *,
215
193
  unselected: bool | None = False,
216
194
  ):
217
195
  """Hide (un)selected control points
218
196
 
219
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
220
197
  :type execution_context: int | str | None
221
198
  :type undo: bool | None
222
199
  :param unselected: Unselected, Hide unselected rather than selected
223
200
  :type unselected: bool | None
224
201
  """
225
202
 
226
- def make_segment(
227
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
228
- execution_context: int | str | None = None,
229
- undo: bool | None = None,
230
- ):
203
+ def make_segment(execution_context: int | str | None = None, undo: bool | None = None):
231
204
  """Join two curves by their selected ends
232
205
 
233
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
234
206
  :type execution_context: int | str | None
235
207
  :type undo: bool | None
236
208
  """
237
209
 
238
210
  def match_texture_space(
239
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
240
- execution_context: int | str | None = None,
241
- undo: bool | None = None,
211
+ execution_context: int | str | None = None, undo: bool | None = None
242
212
  ):
243
213
  """Match texture space to object's bounding box
244
214
 
245
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
246
215
  :type execution_context: int | str | None
247
216
  :type undo: bool | None
248
217
  """
249
218
 
250
219
  def normals_make_consistent(
251
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
252
220
  execution_context: int | str | None = None,
253
221
  undo: bool | None = None,
222
+ /,
254
223
  *,
255
224
  calc_length: bool | None = False,
256
225
  ):
257
226
  """Recalculate the direction of selected handles
258
227
 
259
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
260
228
  :type execution_context: int | str | None
261
229
  :type undo: bool | None
262
230
  :param calc_length: Length, Recalculate handle length
@@ -264,9 +232,9 @@ def normals_make_consistent(
264
232
  """
265
233
 
266
234
  def pen(
267
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
268
235
  execution_context: int | str | None = None,
269
236
  undo: bool | None = None,
237
+ /,
270
238
  *,
271
239
  extend: bool | None = False,
272
240
  deselect: bool | None = False,
@@ -287,7 +255,6 @@ def pen(
287
255
  ):
288
256
  """Construct and edit splines
289
257
 
290
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
291
258
  :type execution_context: int | str | None
292
259
  :type undo: bool | None
293
260
  :param extend: Extend, Extend selection instead of deselecting everything first
@@ -334,9 +301,9 @@ def pen(
334
301
  """
335
302
 
336
303
  def primitive_bezier_circle_add(
337
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
338
304
  execution_context: int | str | None = None,
339
305
  undo: bool | None = None,
306
+ /,
340
307
  *,
341
308
  radius: float | None = 1.0,
342
309
  enter_editmode: bool | None = False,
@@ -355,7 +322,6 @@ def primitive_bezier_circle_add(
355
322
  ):
356
323
  """Construct a Bézier Circle
357
324
 
358
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
359
325
  :type execution_context: int | str | None
360
326
  :type undo: bool | None
361
327
  :param radius: Radius
@@ -382,9 +348,9 @@ def primitive_bezier_circle_add(
382
348
  """
383
349
 
384
350
  def primitive_bezier_curve_add(
385
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
386
351
  execution_context: int | str | None = None,
387
352
  undo: bool | None = None,
353
+ /,
388
354
  *,
389
355
  radius: float | None = 1.0,
390
356
  enter_editmode: bool | None = False,
@@ -403,7 +369,6 @@ def primitive_bezier_curve_add(
403
369
  ):
404
370
  """Construct a Bézier Curve
405
371
 
406
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
407
372
  :type execution_context: int | str | None
408
373
  :type undo: bool | None
409
374
  :param radius: Radius
@@ -430,9 +395,9 @@ def primitive_bezier_curve_add(
430
395
  """
431
396
 
432
397
  def primitive_nurbs_circle_add(
433
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
434
398
  execution_context: int | str | None = None,
435
399
  undo: bool | None = None,
400
+ /,
436
401
  *,
437
402
  radius: float | None = 1.0,
438
403
  enter_editmode: bool | None = False,
@@ -451,7 +416,6 @@ def primitive_nurbs_circle_add(
451
416
  ):
452
417
  """Construct a Nurbs Circle
453
418
 
454
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
455
419
  :type execution_context: int | str | None
456
420
  :type undo: bool | None
457
421
  :param radius: Radius
@@ -478,9 +442,9 @@ def primitive_nurbs_circle_add(
478
442
  """
479
443
 
480
444
  def primitive_nurbs_curve_add(
481
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
482
445
  execution_context: int | str | None = None,
483
446
  undo: bool | None = None,
447
+ /,
484
448
  *,
485
449
  radius: float | None = 1.0,
486
450
  enter_editmode: bool | None = False,
@@ -499,7 +463,6 @@ def primitive_nurbs_curve_add(
499
463
  ):
500
464
  """Construct a Nurbs Curve
501
465
 
502
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
503
466
  :type execution_context: int | str | None
504
467
  :type undo: bool | None
505
468
  :param radius: Radius
@@ -526,9 +489,9 @@ def primitive_nurbs_curve_add(
526
489
  """
527
490
 
528
491
  def primitive_nurbs_path_add(
529
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
530
492
  execution_context: int | str | None = None,
531
493
  undo: bool | None = None,
494
+ /,
532
495
  *,
533
496
  radius: float | None = 1.0,
534
497
  enter_editmode: bool | None = False,
@@ -547,7 +510,6 @@ def primitive_nurbs_path_add(
547
510
  ):
548
511
  """Construct a Path
549
512
 
550
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
551
513
  :type execution_context: int | str | None
552
514
  :type undo: bool | None
553
515
  :param radius: Radius
@@ -574,15 +536,14 @@ def primitive_nurbs_path_add(
574
536
  """
575
537
 
576
538
  def radius_set(
577
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
578
539
  execution_context: int | str | None = None,
579
540
  undo: bool | None = None,
541
+ /,
580
542
  *,
581
543
  radius: float | None = 1.0,
582
544
  ):
583
545
  """Set per-point radius which is used for bevel tapering
584
546
 
585
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
586
547
  :type execution_context: int | str | None
587
548
  :type undo: bool | None
588
549
  :param radius: Radius
@@ -590,15 +551,14 @@ def radius_set(
590
551
  """
591
552
 
592
553
  def reveal(
593
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
594
554
  execution_context: int | str | None = None,
595
555
  undo: bool | None = None,
556
+ /,
596
557
  *,
597
558
  select: bool | None = True,
598
559
  ):
599
560
  """Reveal hidden control points
600
561
 
601
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
602
562
  :type execution_context: int | str | None
603
563
  :type undo: bool | None
604
564
  :param select: Select
@@ -606,15 +566,14 @@ def reveal(
606
566
  """
607
567
 
608
568
  def select_all(
609
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
610
569
  execution_context: int | str | None = None,
611
570
  undo: bool | None = None,
571
+ /,
612
572
  *,
613
573
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
614
574
  ):
615
575
  """(De)select all control points
616
576
 
617
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
618
577
  :type execution_context: int | str | None
619
578
  :type undo: bool | None
620
579
  :param action: Action, Selection action to execute
@@ -633,74 +592,53 @@ def select_all(
633
592
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
634
593
  """
635
594
 
636
- def select_less(
637
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
638
- execution_context: int | str | None = None,
639
- undo: bool | None = None,
640
- ):
595
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
641
596
  """Deselect control points at the boundary of each selection region
642
597
 
643
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
644
598
  :type execution_context: int | str | None
645
599
  :type undo: bool | None
646
600
  """
647
601
 
648
- def select_linked(
649
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
650
- execution_context: int | str | None = None,
651
- undo: bool | None = None,
652
- ):
602
+ def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
653
603
  """Select all control points linked to the current selection
654
604
 
655
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
656
605
  :type execution_context: int | str | None
657
606
  :type undo: bool | None
658
607
  """
659
608
 
660
609
  def select_linked_pick(
661
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
662
610
  execution_context: int | str | None = None,
663
611
  undo: bool | None = None,
612
+ /,
664
613
  *,
665
614
  deselect: bool | None = False,
666
615
  ):
667
616
  """Select all control points linked to already selected ones
668
617
 
669
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
670
618
  :type execution_context: int | str | None
671
619
  :type undo: bool | None
672
620
  :param deselect: Deselect, Deselect linked control points rather than selecting them
673
621
  :type deselect: bool | None
674
622
  """
675
623
 
676
- def select_more(
677
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
678
- execution_context: int | str | None = None,
679
- undo: bool | None = None,
680
- ):
624
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
681
625
  """Select control points at the boundary of each selection region
682
626
 
683
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
684
627
  :type execution_context: int | str | None
685
628
  :type undo: bool | None
686
629
  """
687
630
 
688
- def select_next(
689
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
690
- execution_context: int | str | None = None,
691
- undo: bool | None = None,
692
- ):
631
+ def select_next(execution_context: int | str | None = None, undo: bool | None = None):
693
632
  """Select control points following already selected ones along the curves
694
633
 
695
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
696
634
  :type execution_context: int | str | None
697
635
  :type undo: bool | None
698
636
  """
699
637
 
700
638
  def select_nth(
701
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
702
639
  execution_context: int | str | None = None,
703
640
  undo: bool | None = None,
641
+ /,
704
642
  *,
705
643
  skip: int | None = 1,
706
644
  nth: int | None = 1,
@@ -708,7 +646,6 @@ def select_nth(
708
646
  ):
709
647
  """Deselect every Nth point starting from the active one
710
648
 
711
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
712
649
  :type execution_context: int | str | None
713
650
  :type undo: bool | None
714
651
  :param skip: Deselected, Number of deselected elements in the repetitive sequence
@@ -720,21 +657,18 @@ def select_nth(
720
657
  """
721
658
 
722
659
  def select_previous(
723
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
724
- execution_context: int | str | None = None,
725
- undo: bool | None = None,
660
+ execution_context: int | str | None = None, undo: bool | None = None
726
661
  ):
727
662
  """Select control points preceding already selected ones along the curves
728
663
 
729
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
730
664
  :type execution_context: int | str | None
731
665
  :type undo: bool | None
732
666
  """
733
667
 
734
668
  def select_random(
735
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
736
669
  execution_context: int | str | None = None,
737
670
  undo: bool | None = None,
671
+ /,
738
672
  *,
739
673
  ratio: float | None = 0.5,
740
674
  seed: int | None = 0,
@@ -742,7 +676,6 @@ def select_random(
742
676
  ):
743
677
  """Randomly select some control points
744
678
 
745
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
746
679
  :type execution_context: int | str | None
747
680
  :type undo: bool | None
748
681
  :param ratio: Ratio, Portion of items to select randomly
@@ -759,22 +692,17 @@ def select_random(
759
692
  :type action: typing.Literal['SELECT','DESELECT'] | None
760
693
  """
761
694
 
762
- def select_row(
763
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
764
- execution_context: int | str | None = None,
765
- undo: bool | None = None,
766
- ):
695
+ def select_row(execution_context: int | str | None = None, undo: bool | None = None):
767
696
  """Select a row of control points including active one
768
697
 
769
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
770
698
  :type execution_context: int | str | None
771
699
  :type undo: bool | None
772
700
  """
773
701
 
774
702
  def select_similar(
775
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
776
703
  execution_context: int | str | None = None,
777
704
  undo: bool | None = None,
705
+ /,
778
706
  *,
779
707
  type: typing.Literal["TYPE", "RADIUS", "WEIGHT", "DIRECTION"] | None = "WEIGHT",
780
708
  compare: typing.Literal["EQUAL", "GREATER", "LESS"] | None = "EQUAL",
@@ -782,7 +710,6 @@ def select_similar(
782
710
  ):
783
711
  """Select similar curve points by property type
784
712
 
785
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
786
713
  :type execution_context: int | str | None
787
714
  :type undo: bool | None
788
715
  :param type: Type
@@ -793,113 +720,74 @@ def select_similar(
793
720
  :type threshold: float | None
794
721
  """
795
722
 
796
- def separate(
797
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
798
- execution_context: int | str | None = None,
799
- undo: bool | None = None,
800
- ):
723
+ def separate(execution_context: int | str | None = None, undo: bool | None = None):
801
724
  """Separate selected points from connected unselected points into a new object
802
725
 
803
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
804
726
  :type execution_context: int | str | None
805
727
  :type undo: bool | None
806
728
  """
807
729
 
808
- def shade_flat(
809
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
810
- execution_context: int | str | None = None,
811
- undo: bool | None = None,
812
- ):
730
+ def shade_flat(execution_context: int | str | None = None, undo: bool | None = None):
813
731
  """Set shading to flat
814
732
 
815
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
816
733
  :type execution_context: int | str | None
817
734
  :type undo: bool | None
818
735
  """
819
736
 
820
- def shade_smooth(
821
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
822
- execution_context: int | str | None = None,
823
- undo: bool | None = None,
824
- ):
737
+ def shade_smooth(execution_context: int | str | None = None, undo: bool | None = None):
825
738
  """Set shading to smooth
826
739
 
827
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
828
740
  :type execution_context: int | str | None
829
741
  :type undo: bool | None
830
742
  """
831
743
 
832
744
  def shortest_path_pick(
833
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
834
- execution_context: int | str | None = None,
835
- undo: bool | None = None,
745
+ execution_context: int | str | None = None, undo: bool | None = None
836
746
  ):
837
747
  """Select shortest path between two selections
838
748
 
839
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
840
749
  :type execution_context: int | str | None
841
750
  :type undo: bool | None
842
751
  """
843
752
 
844
- def smooth(
845
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
846
- execution_context: int | str | None = None,
847
- undo: bool | None = None,
848
- ):
753
+ def smooth(execution_context: int | str | None = None, undo: bool | None = None):
849
754
  """Flatten angles of selected points
850
755
 
851
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
852
756
  :type execution_context: int | str | None
853
757
  :type undo: bool | None
854
758
  """
855
759
 
856
- def smooth_radius(
857
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
858
- execution_context: int | str | None = None,
859
- undo: bool | None = None,
860
- ):
760
+ def smooth_radius(execution_context: int | str | None = None, undo: bool | None = None):
861
761
  """Interpolate radii of selected points
862
762
 
863
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
864
763
  :type execution_context: int | str | None
865
764
  :type undo: bool | None
866
765
  """
867
766
 
868
- def smooth_tilt(
869
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
870
- execution_context: int | str | None = None,
871
- undo: bool | None = None,
872
- ):
767
+ def smooth_tilt(execution_context: int | str | None = None, undo: bool | None = None):
873
768
  """Interpolate tilt of selected points
874
769
 
875
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
876
770
  :type execution_context: int | str | None
877
771
  :type undo: bool | None
878
772
  """
879
773
 
880
- def smooth_weight(
881
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
882
- execution_context: int | str | None = None,
883
- undo: bool | None = None,
884
- ):
774
+ def smooth_weight(execution_context: int | str | None = None, undo: bool | None = None):
885
775
  """Interpolate weight of selected points
886
776
 
887
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
888
777
  :type execution_context: int | str | None
889
778
  :type undo: bool | None
890
779
  """
891
780
 
892
781
  def spin(
893
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
894
782
  execution_context: int | str | None = None,
895
783
  undo: bool | None = None,
784
+ /,
896
785
  *,
897
786
  center: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
898
787
  axis: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
899
788
  ):
900
789
  """Extrude selected boundary row around pivot point and current view axis
901
790
 
902
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
903
791
  :type execution_context: int | str | None
904
792
  :type undo: bool | None
905
793
  :param center: Center, Center in global view space
@@ -909,16 +797,15 @@ def spin(
909
797
  """
910
798
 
911
799
  def spline_type_set(
912
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
913
800
  execution_context: int | str | None = None,
914
801
  undo: bool | None = None,
802
+ /,
915
803
  *,
916
804
  type: typing.Literal["POLY", "BEZIER", "NURBS"] | None = "POLY",
917
805
  use_handles: bool | None = False,
918
806
  ):
919
807
  """Set type of active spline
920
808
 
921
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
922
809
  :type execution_context: int | str | None
923
810
  :type undo: bool | None
924
811
  :param type: Type, Spline type
@@ -928,43 +815,36 @@ def spline_type_set(
928
815
  """
929
816
 
930
817
  def spline_weight_set(
931
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
932
818
  execution_context: int | str | None = None,
933
819
  undo: bool | None = None,
820
+ /,
934
821
  *,
935
822
  weight: float | None = 1.0,
936
823
  ):
937
824
  """Set softbody goal weight for selected points
938
825
 
939
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
940
826
  :type execution_context: int | str | None
941
827
  :type undo: bool | None
942
828
  :param weight: Weight
943
829
  :type weight: float | None
944
830
  """
945
831
 
946
- def split(
947
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
948
- execution_context: int | str | None = None,
949
- undo: bool | None = None,
950
- ):
832
+ def split(execution_context: int | str | None = None, undo: bool | None = None):
951
833
  """Split off selected points from connected unselected points
952
834
 
953
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
954
835
  :type execution_context: int | str | None
955
836
  :type undo: bool | None
956
837
  """
957
838
 
958
839
  def subdivide(
959
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
960
840
  execution_context: int | str | None = None,
961
841
  undo: bool | None = None,
842
+ /,
962
843
  *,
963
844
  number_cuts: int | None = 1,
964
845
  ):
965
846
  """Subdivide selected segments
966
847
 
967
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
968
848
  :type execution_context: int | str | None
969
849
  :type undo: bool | None
970
850
  :param number_cuts: Number of Cuts
@@ -972,33 +852,25 @@ def subdivide(
972
852
  """
973
853
 
974
854
  def switch_direction(
975
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
976
- execution_context: int | str | None = None,
977
- undo: bool | None = None,
855
+ execution_context: int | str | None = None, undo: bool | None = None
978
856
  ):
979
857
  """Switch direction of selected splines
980
858
 
981
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
982
859
  :type execution_context: int | str | None
983
860
  :type undo: bool | None
984
861
  """
985
862
 
986
- def tilt_clear(
987
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
988
- execution_context: int | str | None = None,
989
- undo: bool | None = None,
990
- ):
863
+ def tilt_clear(execution_context: int | str | None = None, undo: bool | None = None):
991
864
  """Clear the tilt of selected control points
992
865
 
993
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
994
866
  :type execution_context: int | str | None
995
867
  :type undo: bool | None
996
868
  """
997
869
 
998
870
  def vertex_add(
999
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1000
871
  execution_context: int | str | None = None,
1001
872
  undo: bool | None = None,
873
+ /,
1002
874
  *,
1003
875
  location: collections.abc.Sequence[float] | mathutils.Vector | None = (
1004
876
  0.0,
@@ -1008,7 +880,6 @@ def vertex_add(
1008
880
  ):
1009
881
  """Add a new control point (linked to only selected end-curve one, if any)
1010
882
 
1011
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1012
883
  :type execution_context: int | str | None
1013
884
  :type undo: bool | None
1014
885
  :param location: Location, Location to add new vertex at