fake-bpy-module 20241207__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 (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -1,56 +1,39 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
- def new(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
- execution_context: int | str | None = None,
9
- undo: bool | None = None,
10
- ):
5
+ def new(execution_context: int | str | None = None, undo: bool | None = None):
11
6
  """Add a new texture
12
7
 
13
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
14
8
  :type execution_context: int | str | None
15
9
  :type undo: bool | None
16
10
  """
17
11
 
18
- def slot_copy(
19
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
20
- execution_context: int | str | None = None,
21
- undo: bool | None = None,
22
- ):
12
+ def slot_copy(execution_context: int | str | None = None, undo: bool | None = None):
23
13
  """Copy the material texture settings and nodes
24
14
 
25
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
26
15
  :type execution_context: int | str | None
27
16
  :type undo: bool | None
28
17
  """
29
18
 
30
19
  def slot_move(
31
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
32
20
  execution_context: int | str | None = None,
33
21
  undo: bool | None = None,
22
+ /,
34
23
  *,
35
24
  type: typing.Literal["UP", "DOWN"] | None = "UP",
36
25
  ):
37
26
  """Move texture slots up and down
38
27
 
39
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
40
28
  :type execution_context: int | str | None
41
29
  :type undo: bool | None
42
30
  :param type: Type
43
31
  :type type: typing.Literal['UP','DOWN'] | None
44
32
  """
45
33
 
46
- def slot_paste(
47
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
48
- execution_context: int | str | None = None,
49
- undo: bool | None = None,
50
- ):
34
+ def slot_paste(execution_context: int | str | None = None, undo: bool | None = None):
51
35
  """Copy the texture settings and nodes
52
36
 
53
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
54
37
  :type execution_context: int | str | None
55
38
  :type undo: bool | None
56
39
  """
@@ -1,14 +1,13 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
  import bpy.typing
6
5
  import mathutils
7
6
 
8
7
  def bbone_resize(
9
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
8
  execution_context: int | str | None = None,
11
9
  undo: bool | None = None,
10
+ /,
12
11
  *,
13
12
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
14
13
  orient_type: str | None = "GLOBAL",
@@ -23,7 +22,6 @@ def bbone_resize(
23
22
  ):
24
23
  """Scale selected bendy bones display size
25
24
 
26
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
27
25
  :type execution_context: int | str | None
28
26
  :type undo: bool | None
29
27
  :param value: Display Size
@@ -45,9 +43,9 @@ def bbone_resize(
45
43
  """
46
44
 
47
45
  def bend(
48
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
49
46
  execution_context: int | str | None = None,
50
47
  undo: bool | None = None,
48
+ /,
51
49
  *,
52
50
  value: collections.abc.Iterable[float] | None = 0.0,
53
51
  mirror: bool | None = False,
@@ -68,7 +66,6 @@ def bend(
68
66
  ):
69
67
  """Bend selected items between the 3D cursor and the mouse
70
68
 
71
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
72
69
  :type execution_context: int | str | None
73
70
  :type undo: bool | None
74
71
  :param value: Angle
@@ -98,9 +95,9 @@ def bend(
98
95
  """
99
96
 
100
97
  def create_orientation(
101
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
102
98
  execution_context: int | str | None = None,
103
99
  undo: bool | None = None,
100
+ /,
104
101
  *,
105
102
  name: str = "",
106
103
  use_view: bool | None = False,
@@ -109,7 +106,6 @@ def create_orientation(
109
106
  ):
110
107
  """Create transformation orientation from selection
111
108
 
112
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
113
109
  :type execution_context: int | str | None
114
110
  :type undo: bool | None
115
111
  :param name: Name, Name of the new custom orientation
@@ -123,21 +119,18 @@ def create_orientation(
123
119
  """
124
120
 
125
121
  def delete_orientation(
126
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
127
- execution_context: int | str | None = None,
128
- undo: bool | None = None,
122
+ execution_context: int | str | None = None, undo: bool | None = None
129
123
  ):
130
124
  """Delete transformation orientation
131
125
 
132
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
133
126
  :type execution_context: int | str | None
134
127
  :type undo: bool | None
135
128
  """
136
129
 
137
130
  def edge_bevelweight(
138
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
139
131
  execution_context: int | str | None = None,
140
132
  undo: bool | None = None,
133
+ /,
141
134
  *,
142
135
  value: float | None = 0.0,
143
136
  snap: bool | None = False,
@@ -146,7 +139,6 @@ def edge_bevelweight(
146
139
  ):
147
140
  """Change the bevel weight of edges
148
141
 
149
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
150
142
  :type execution_context: int | str | None
151
143
  :type undo: bool | None
152
144
  :param value: Factor
@@ -160,9 +152,9 @@ def edge_bevelweight(
160
152
  """
161
153
 
162
154
  def edge_crease(
163
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
164
155
  execution_context: int | str | None = None,
165
156
  undo: bool | None = None,
157
+ /,
166
158
  *,
167
159
  value: float | None = 0.0,
168
160
  snap: bool | None = False,
@@ -171,7 +163,6 @@ def edge_crease(
171
163
  ):
172
164
  """Change the crease of edges
173
165
 
174
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
175
166
  :type execution_context: int | str | None
176
167
  :type undo: bool | None
177
168
  :param value: Factor
@@ -185,9 +176,9 @@ def edge_crease(
185
176
  """
186
177
 
187
178
  def edge_slide(
188
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
189
179
  execution_context: int | str | None = None,
190
180
  undo: bool | None = None,
181
+ /,
191
182
  *,
192
183
  value: float | None = 0.0,
193
184
  single_side: bool | None = False,
@@ -214,7 +205,6 @@ def edge_slide(
214
205
  ):
215
206
  """Slide an edge loop along a mesh
216
207
 
217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
218
208
  :type execution_context: int | str | None
219
209
  :type undo: bool | None
220
210
  :param value: Factor
@@ -255,22 +245,17 @@ def edge_slide(
255
245
  :type use_accurate: bool | None
256
246
  """
257
247
 
258
- def from_gizmo(
259
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
260
- execution_context: int | str | None = None,
261
- undo: bool | None = None,
262
- ):
248
+ def from_gizmo(execution_context: int | str | None = None, undo: bool | None = None):
263
249
  """Transform selected items by mode type
264
250
 
265
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
266
251
  :type execution_context: int | str | None
267
252
  :type undo: bool | None
268
253
  """
269
254
 
270
255
  def mirror(
271
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
272
256
  execution_context: int | str | None = None,
273
257
  undo: bool | None = None,
258
+ /,
274
259
  *,
275
260
  orient_type: str | None = "GLOBAL",
276
261
  orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -289,7 +274,6 @@ def mirror(
289
274
  ):
290
275
  """Mirror selected items around one or more axes
291
276
 
292
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
293
277
  :type execution_context: int | str | None
294
278
  :type undo: bool | None
295
279
  :param orient_type: Orientation, Transformation orientation
@@ -311,9 +295,9 @@ def mirror(
311
295
  """
312
296
 
313
297
  def push_pull(
314
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
315
298
  execution_context: int | str | None = None,
316
299
  undo: bool | None = None,
300
+ /,
317
301
  *,
318
302
  value: float | None = 0.0,
319
303
  mirror: bool | None = False,
@@ -333,7 +317,6 @@ def push_pull(
333
317
  ):
334
318
  """Push/Pull selected items
335
319
 
336
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
337
320
  :type execution_context: int | str | None
338
321
  :type undo: bool | None
339
322
  :param value: Distance
@@ -361,9 +344,9 @@ def push_pull(
361
344
  """
362
345
 
363
346
  def resize(
364
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
365
347
  execution_context: int | str | None = None,
366
348
  undo: bool | None = None,
349
+ /,
367
350
  *,
368
351
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
369
352
  mouse_dir_constraint: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -410,7 +393,6 @@ def resize(
410
393
  ):
411
394
  """Scale (resize) selected items
412
395
 
413
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
414
396
  :type execution_context: int | str | None
415
397
  :type undo: bool | None
416
398
  :param value: Scale
@@ -472,9 +454,9 @@ def resize(
472
454
  """
473
455
 
474
456
  def rotate(
475
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
476
457
  execution_context: int | str | None = None,
477
458
  undo: bool | None = None,
459
+ /,
478
460
  *,
479
461
  value: float | None = 0.0,
480
462
  orient_axis: bpy.typing.AxisXyzItems | None = "Z",
@@ -514,7 +496,6 @@ def rotate(
514
496
  ):
515
497
  """Rotate selected items
516
498
 
517
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
518
499
  :type execution_context: int | str | None
519
500
  :type undo: bool | None
520
501
  :param value: Angle
@@ -570,9 +551,9 @@ def rotate(
570
551
  """
571
552
 
572
553
  def rotate_normal(
573
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
574
554
  execution_context: int | str | None = None,
575
555
  undo: bool | None = None,
556
+ /,
576
557
  *,
577
558
  value: float | None = 0.0,
578
559
  orient_axis: bpy.typing.AxisXyzItems | None = "Z",
@@ -588,7 +569,6 @@ def rotate_normal(
588
569
  ):
589
570
  """Rotate split normal of selected items
590
571
 
591
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
592
572
  :type execution_context: int | str | None
593
573
  :type undo: bool | None
594
574
  :param value: Angle
@@ -612,15 +592,14 @@ def rotate_normal(
612
592
  """
613
593
 
614
594
  def select_orientation(
615
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
616
595
  execution_context: int | str | None = None,
617
596
  undo: bool | None = None,
597
+ /,
618
598
  *,
619
599
  orientation: str | None = "GLOBAL",
620
600
  ):
621
601
  """Select transformation orientation
622
602
 
623
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
624
603
  :type execution_context: int | str | None
625
604
  :type undo: bool | None
626
605
  :param orientation: Orientation, Transformation orientation
@@ -628,9 +607,9 @@ def select_orientation(
628
607
  """
629
608
 
630
609
  def seq_slide(
631
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
632
610
  execution_context: int | str | None = None,
633
611
  undo: bool | None = None,
612
+ /,
634
613
  *,
635
614
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
636
615
  use_restore_handle_selection: bool | None = False,
@@ -641,7 +620,6 @@ def seq_slide(
641
620
  ):
642
621
  """Slide a sequence strip in time
643
622
 
644
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
645
623
  :type execution_context: int | str | None
646
624
  :type undo: bool | None
647
625
  :param value: Offset
@@ -659,9 +637,9 @@ def seq_slide(
659
637
  """
660
638
 
661
639
  def shear(
662
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
663
640
  execution_context: int | str | None = None,
664
641
  undo: bool | None = None,
642
+ /,
665
643
  *,
666
644
  value: float | None = 0.0,
667
645
  orient_axis: bpy.typing.AxisXyzItems | None = "Z",
@@ -684,7 +662,6 @@ def shear(
684
662
  ):
685
663
  """Shear selected items along the given axis
686
664
 
687
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
688
665
  :type execution_context: int | str | None
689
666
  :type undo: bool | None
690
667
  :param value: Offset
@@ -722,9 +699,9 @@ def shear(
722
699
  """
723
700
 
724
701
  def shrink_fatten(
725
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
726
702
  execution_context: int | str | None = None,
727
703
  undo: bool | None = None,
704
+ /,
728
705
  *,
729
706
  value: float | None = 0.0,
730
707
  use_even_offset: bool | None = False,
@@ -740,7 +717,6 @@ def shrink_fatten(
740
717
  ):
741
718
  """Shrink/fatten selected vertices along normals
742
719
 
743
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
744
720
  :type execution_context: int | str | None
745
721
  :type undo: bool | None
746
722
  :param value: Offset
@@ -768,9 +744,9 @@ def shrink_fatten(
768
744
  """
769
745
 
770
746
  def skin_resize(
771
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
772
747
  execution_context: int | str | None = None,
773
748
  undo: bool | None = None,
749
+ /,
774
750
  *,
775
751
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
776
752
  orient_type: str | None = "GLOBAL",
@@ -803,7 +779,6 @@ def skin_resize(
803
779
  ):
804
780
  """Scale selected vertices' skin radii
805
781
 
806
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
807
782
  :type execution_context: int | str | None
808
783
  :type undo: bool | None
809
784
  :param value: Scale
@@ -853,9 +828,9 @@ def skin_resize(
853
828
  """
854
829
 
855
830
  def tilt(
856
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
857
831
  execution_context: int | str | None = None,
858
832
  undo: bool | None = None,
833
+ /,
859
834
  *,
860
835
  value: float | None = 0.0,
861
836
  mirror: bool | None = False,
@@ -870,7 +845,6 @@ def tilt(
870
845
  ):
871
846
  """Tilt selected control vertices of 3D curve
872
847
 
873
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
874
848
  :type execution_context: int | str | None
875
849
  :type undo: bool | None
876
850
  :param value: Angle
@@ -896,9 +870,9 @@ def tilt(
896
870
  """
897
871
 
898
872
  def tosphere(
899
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
900
873
  execution_context: int | str | None = None,
901
874
  undo: bool | None = None,
875
+ /,
902
876
  *,
903
877
  value: float | None = 0.0,
904
878
  mirror: bool | None = False,
@@ -919,7 +893,6 @@ def tosphere(
919
893
  ):
920
894
  """Move selected items outward in a spherical shape around geometric center
921
895
 
922
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
923
896
  :type execution_context: int | str | None
924
897
  :type undo: bool | None
925
898
  :param value: Factor
@@ -949,9 +922,9 @@ def tosphere(
949
922
  """
950
923
 
951
924
  def trackball(
952
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
953
925
  execution_context: int | str | None = None,
954
926
  undo: bool | None = None,
927
+ /,
955
928
  *,
956
929
  value: collections.abc.Iterable[float] | None = (0.0, 0.0),
957
930
  mirror: bool | None = False,
@@ -972,7 +945,6 @@ def trackball(
972
945
  ):
973
946
  """Trackball style rotation of selected items
974
947
 
975
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
976
948
  :type execution_context: int | str | None
977
949
  :type undo: bool | None
978
950
  :param value: Angle
@@ -1002,9 +974,9 @@ def trackball(
1002
974
  """
1003
975
 
1004
976
  def transform(
1005
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1006
977
  execution_context: int | str | None = None,
1007
978
  undo: bool | None = None,
979
+ /,
1008
980
  *,
1009
981
  mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
1010
982
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (
@@ -1060,7 +1032,6 @@ def transform(
1060
1032
  ):
1061
1033
  """Transform selected items by mode type
1062
1034
 
1063
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1064
1035
  :type execution_context: int | str | None
1065
1036
  :type undo: bool | None
1066
1037
  :param mode: Mode
@@ -1130,9 +1101,9 @@ def transform(
1130
1101
  """
1131
1102
 
1132
1103
  def translate(
1133
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1134
1104
  execution_context: int | str | None = None,
1135
1105
  undo: bool | None = None,
1106
+ /,
1136
1107
  *,
1137
1108
  value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
1138
1109
  orient_type: bpy.typing.TransformOrientationItems | None = "GLOBAL",
@@ -1178,7 +1149,6 @@ def translate(
1178
1149
  ):
1179
1150
  """Move selected items
1180
1151
 
1181
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1182
1152
  :type execution_context: int | str | None
1183
1153
  :type undo: bool | None
1184
1154
  :param value: Move
@@ -1246,9 +1216,9 @@ def translate(
1246
1216
  """
1247
1217
 
1248
1218
  def vert_crease(
1249
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1250
1219
  execution_context: int | str | None = None,
1251
1220
  undo: bool | None = None,
1221
+ /,
1252
1222
  *,
1253
1223
  value: float | None = 0.0,
1254
1224
  snap: bool | None = False,
@@ -1257,7 +1227,6 @@ def vert_crease(
1257
1227
  ):
1258
1228
  """Change the crease of vertices
1259
1229
 
1260
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1261
1230
  :type execution_context: int | str | None
1262
1231
  :type undo: bool | None
1263
1232
  :param value: Factor
@@ -1271,9 +1240,9 @@ def vert_crease(
1271
1240
  """
1272
1241
 
1273
1242
  def vert_slide(
1274
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1275
1243
  execution_context: int | str | None = None,
1276
1244
  undo: bool | None = None,
1245
+ /,
1277
1246
  *,
1278
1247
  value: float | None = 0.0,
1279
1248
  use_even: bool | None = False,
@@ -1299,7 +1268,6 @@ def vert_slide(
1299
1268
  ):
1300
1269
  """Slide a vertex along a mesh
1301
1270
 
1302
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1303
1271
  :type execution_context: int | str | None
1304
1272
  :type undo: bool | None
1305
1273
  :param value: Factor
@@ -1339,9 +1307,9 @@ def vert_slide(
1339
1307
  """
1340
1308
 
1341
1309
  def vertex_random(
1342
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1343
1310
  execution_context: int | str | None = None,
1344
1311
  undo: bool | None = None,
1312
+ /,
1345
1313
  *,
1346
1314
  offset: float | None = 0.0,
1347
1315
  uniform: float | None = 0.0,
@@ -1351,7 +1319,6 @@ def vertex_random(
1351
1319
  ):
1352
1320
  """Randomize vertices
1353
1321
 
1354
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1355
1322
  :type execution_context: int | str | None
1356
1323
  :type undo: bool | None
1357
1324
  :param offset: Amount, Distance to offset
@@ -1367,9 +1334,9 @@ def vertex_random(
1367
1334
  """
1368
1335
 
1369
1336
  def vertex_warp(
1370
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1371
1337
  execution_context: int | str | None = None,
1372
1338
  undo: bool | None = None,
1339
+ /,
1373
1340
  *,
1374
1341
  warp_angle: float | None = 6.28319,
1375
1342
  offset_angle: float | None = 0.0,
@@ -1387,7 +1354,6 @@ def vertex_warp(
1387
1354
  ):
1388
1355
  """Warp vertices around the cursor
1389
1356
 
1390
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1391
1357
  :type execution_context: int | str | None
1392
1358
  :type undo: bool | None
1393
1359
  :param warp_angle: Warp Angle, Amount to warp about the cursor