fake-bpy-module 20240620__py3-none-any.whl → 20240621__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 (77) hide show
  1. bl_ui/space_userpref/__init__.pyi +225 -0
  2. bpy/ops/action/__init__.pyi +50 -50
  3. bpy/ops/anim/__init__.pyi +94 -94
  4. bpy/ops/armature/__init__.pyi +54 -54
  5. bpy/ops/asset/__init__.pyi +50 -50
  6. bpy/ops/brush/__init__.pyi +10 -10
  7. bpy/ops/buttons/__init__.pyi +88 -88
  8. bpy/ops/cachefile/__init__.pyi +88 -88
  9. bpy/ops/camera/__init__.pyi +14 -14
  10. bpy/ops/clip/__init__.pyi +175 -174
  11. bpy/ops/cloth/__init__.pyi +6 -6
  12. bpy/ops/collection/__init__.pyi +8 -8
  13. bpy/ops/console/__init__.pyi +26 -26
  14. bpy/ops/constraint/__init__.pyi +42 -42
  15. bpy/ops/curve/__init__.pyi +167 -122
  16. bpy/ops/curves/__init__.pyi +75 -58
  17. bpy/ops/cycles/__init__.pyi +10 -10
  18. bpy/ops/ed/__init__.pyi +50 -50
  19. bpy/ops/export_anim/__init__.pyi +14 -14
  20. bpy/ops/export_scene/__init__.pyi +250 -250
  21. bpy/ops/extensions/__init__.pyi +73 -73
  22. bpy/ops/file/__init__.pyi +94 -94
  23. bpy/ops/fluid/__init__.pyi +6 -6
  24. bpy/ops/font/__init__.pyi +100 -100
  25. bpy/ops/geometry/__init__.pyi +20 -20
  26. bpy/ops/gizmogroup/__init__.pyi +10 -10
  27. bpy/ops/gpencil/__init__.pyi +411 -410
  28. bpy/ops/graph/__init__.pyi +194 -194
  29. bpy/ops/grease_pencil/__init__.pyi +100 -100
  30. bpy/ops/image/__init__.pyi +399 -390
  31. bpy/ops/import_anim/__init__.pyi +16 -16
  32. bpy/ops/import_curve/__init__.pyi +4 -4
  33. bpy/ops/import_scene/__init__.pyi +56 -56
  34. bpy/ops/info/__init__.pyi +14 -14
  35. bpy/ops/lattice/__init__.pyi +8 -8
  36. bpy/ops/marker/__init__.pyi +34 -34
  37. bpy/ops/mask/__init__.pyi +63 -62
  38. bpy/ops/mball/__init__.pyi +12 -12
  39. bpy/ops/mesh/__init__.pyi +893 -790
  40. bpy/ops/nla/__init__.pyi +70 -70
  41. bpy/ops/node/__init__.pyi +192 -192
  42. bpy/ops/object/__init__.pyi +1013 -840
  43. bpy/ops/outliner/__init__.pyi +44 -44
  44. bpy/ops/paint/__init__.pyi +169 -168
  45. bpy/ops/paintcurve/__init__.pyi +12 -12
  46. bpy/ops/palette/__init__.pyi +4 -4
  47. bpy/ops/particle/__init__.pyi +34 -34
  48. bpy/ops/pose/__init__.pyi +60 -60
  49. bpy/ops/poselib/__init__.pyi +18 -18
  50. bpy/ops/preferences/__init__.pyi +150 -150
  51. bpy/ops/ptcache/__init__.pyi +4 -4
  52. bpy/ops/render/__init__.pyi +56 -56
  53. bpy/ops/rigidbody/__init__.pyi +8 -8
  54. bpy/ops/scene/__init__.pyi +20 -20
  55. bpy/ops/screen/__init__.pyi +128 -128
  56. bpy/ops/script/__init__.pyi +6 -6
  57. bpy/ops/sculpt/__init__.pyi +207 -202
  58. bpy/ops/sculpt_curves/__init__.pyi +12 -12
  59. bpy/ops/sequencer/__init__.pyi +465 -464
  60. bpy/ops/sound/__init__.pyi +154 -154
  61. bpy/ops/spreadsheet/__init__.pyi +6 -6
  62. bpy/ops/surface/__init__.pyi +109 -60
  63. bpy/ops/text/__init__.pyi +110 -110
  64. bpy/ops/text_editor/__init__.pyi +6 -6
  65. bpy/ops/transform/__init__.pyi +628 -566
  66. bpy/ops/ui/__init__.pyi +25 -24
  67. bpy/ops/uilist/__init__.pyi +12 -12
  68. bpy/ops/uv/__init__.pyi +235 -234
  69. bpy/ops/view2d/__init__.pyi +72 -72
  70. bpy/ops/view3d/__init__.pyi +144 -144
  71. bpy/ops/wm/__init__.pyi +1813 -1806
  72. bpy/ops/workspace/__init__.pyi +4 -4
  73. bpy/types/__init__.pyi +1611 -1802
  74. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
  75. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
  76. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
  77. {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import bpy.types
4
+ import mathutils
4
5
 
5
6
  GenericType1 = typing.TypeVar("GenericType1")
6
7
  GenericType2 = typing.TypeVar("GenericType2")
@@ -10,18 +11,16 @@ def bbone_resize(
10
11
  execution_context: int | str | None = None,
11
12
  undo: bool | None = None,
12
13
  *,
13
- value: typing.Any | None = (1.0, 1.0, 1.0),
14
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
14
15
  orient_type: str | None = "GLOBAL",
15
- orient_matrix: typing.Any | None = (
16
- (0.0, 0.0, 0.0),
17
- (0.0, 0.0, 0.0),
18
- (0.0, 0.0, 0.0),
19
- ),
16
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
17
+ | mathutils.Matrix
18
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
20
19
  orient_matrix_type: str | None = "GLOBAL",
21
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
22
- mirror: bool | typing.Any | None = False,
23
- release_confirm: bool | typing.Any | None = False,
24
- use_accurate: bool | typing.Any | None = False,
20
+ constraint_axis: list[bool] | None = (False, False, False),
21
+ mirror: bool | None = False,
22
+ release_confirm: bool | None = False,
23
+ use_accurate: bool | None = False,
25
24
  ):
26
25
  """Scale selected bendy bones display size
27
26
 
@@ -29,21 +28,21 @@ def bbone_resize(
29
28
  :type execution_context: int | str | None
30
29
  :type undo: bool | None
31
30
  :param value: Display Size
32
- :type value: typing.Any | None
31
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
33
32
  :param orient_type: Orientation, Transformation orientation
34
33
  :type orient_type: str | None
35
34
  :param orient_matrix: Matrix
36
- :type orient_matrix: typing.Any | None
35
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
37
36
  :param orient_matrix_type: Matrix Orientation
38
37
  :type orient_matrix_type: str | None
39
38
  :param constraint_axis: Constraint Axis
40
- :type constraint_axis: list[bool] | typing.Any | None
39
+ :type constraint_axis: list[bool] | None
41
40
  :param mirror: Mirror Editing
42
- :type mirror: bool | typing.Any | None
41
+ :type mirror: bool | None
43
42
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
44
- :type release_confirm: bool | typing.Any | None
43
+ :type release_confirm: bool | None
45
44
  :param use_accurate: Accurate, Use accurate transformation
46
- :type use_accurate: bool | typing.Any | None
45
+ :type use_accurate: bool | None
47
46
  """
48
47
 
49
48
  ...
@@ -53,18 +52,22 @@ def bend(
53
52
  execution_context: int | str | None = None,
54
53
  undo: bool | None = None,
55
54
  *,
56
- value: typing.Any | None = 0.0,
57
- mirror: bool | typing.Any | None = False,
58
- use_proportional_edit: bool | typing.Any | None = False,
55
+ value: collections.abc.Iterable[float] | None = 0.0,
56
+ mirror: bool | None = False,
57
+ use_proportional_edit: bool | None = False,
59
58
  proportional_edit_falloff: str | None = "SMOOTH",
60
- proportional_size: typing.Any | None = 1.0,
61
- use_proportional_connected: bool | typing.Any | None = False,
62
- use_proportional_projected: bool | typing.Any | None = False,
63
- snap: bool | typing.Any | None = False,
64
- gpencil_strokes: bool | typing.Any | None = False,
65
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
66
- release_confirm: bool | typing.Any | None = False,
67
- use_accurate: bool | typing.Any | None = False,
59
+ proportional_size: float | None = 1.0,
60
+ use_proportional_connected: bool | None = False,
61
+ use_proportional_projected: bool | None = False,
62
+ snap: bool | None = False,
63
+ gpencil_strokes: bool | None = False,
64
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
65
+ 0.0,
66
+ 0.0,
67
+ 0.0,
68
+ ),
69
+ release_confirm: bool | None = False,
70
+ use_accurate: bool | None = False,
68
71
  ):
69
72
  """Bend selected items between the 3D cursor and the mouse
70
73
 
@@ -72,29 +75,29 @@ def bend(
72
75
  :type execution_context: int | str | None
73
76
  :type undo: bool | None
74
77
  :param value: Angle
75
- :type value: typing.Any | None
78
+ :type value: collections.abc.Iterable[float] | None
76
79
  :param mirror: Mirror Editing
77
- :type mirror: bool | typing.Any | None
80
+ :type mirror: bool | None
78
81
  :param use_proportional_edit: Proportional Editing
79
- :type use_proportional_edit: bool | typing.Any | None
82
+ :type use_proportional_edit: bool | None
80
83
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
81
84
  :type proportional_edit_falloff: str | None
82
85
  :param proportional_size: Proportional Size
83
- :type proportional_size: typing.Any | None
86
+ :type proportional_size: float | None
84
87
  :param use_proportional_connected: Connected
85
- :type use_proportional_connected: bool | typing.Any | None
88
+ :type use_proportional_connected: bool | None
86
89
  :param use_proportional_projected: Projected (2D)
87
- :type use_proportional_projected: bool | typing.Any | None
90
+ :type use_proportional_projected: bool | None
88
91
  :param snap: Use Snapping Options
89
- :type snap: bool | typing.Any | None
92
+ :type snap: bool | None
90
93
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
91
- :type gpencil_strokes: bool | typing.Any | None
94
+ :type gpencil_strokes: bool | None
92
95
  :param center_override: Center Override, Force using this center value (when set)
93
- :type center_override: typing.Any | None
96
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
94
97
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
95
- :type release_confirm: bool | typing.Any | None
98
+ :type release_confirm: bool | None
96
99
  :param use_accurate: Accurate, Use accurate transformation
97
- :type use_accurate: bool | typing.Any | None
100
+ :type use_accurate: bool | None
98
101
  """
99
102
 
100
103
  ...
@@ -104,10 +107,10 @@ def create_orientation(
104
107
  execution_context: int | str | None = None,
105
108
  undo: bool | None = None,
106
109
  *,
107
- name: str | typing.Any = "",
108
- use_view: bool | typing.Any | None = False,
109
- use: bool | typing.Any | None = False,
110
- overwrite: bool | typing.Any | None = False,
110
+ name: str = "",
111
+ use_view: bool | None = False,
112
+ use: bool | None = False,
113
+ overwrite: bool | None = False,
111
114
  ):
112
115
  """Create transformation orientation from selection
113
116
 
@@ -115,13 +118,13 @@ def create_orientation(
115
118
  :type execution_context: int | str | None
116
119
  :type undo: bool | None
117
120
  :param name: Name, Name of the new custom orientation
118
- :type name: str | typing.Any
121
+ :type name: str
119
122
  :param use_view: Use View, Use the current view instead of the active object to create the new orientation
120
- :type use_view: bool | typing.Any | None
123
+ :type use_view: bool | None
121
124
  :param use: Use After Creation, Select orientation after its creation
122
- :type use: bool | typing.Any | None
125
+ :type use: bool | None
123
126
  :param overwrite: Overwrite Previous, Overwrite previously created orientation with same name
124
- :type overwrite: bool | typing.Any | None
127
+ :type overwrite: bool | None
125
128
  """
126
129
 
127
130
  ...
@@ -145,10 +148,10 @@ def edge_bevelweight(
145
148
  execution_context: int | str | None = None,
146
149
  undo: bool | None = None,
147
150
  *,
148
- value: typing.Any | None = 0.0,
149
- snap: bool | typing.Any | None = False,
150
- release_confirm: bool | typing.Any | None = False,
151
- use_accurate: bool | typing.Any | None = False,
151
+ value: float | None = 0.0,
152
+ snap: bool | None = False,
153
+ release_confirm: bool | None = False,
154
+ use_accurate: bool | None = False,
152
155
  ):
153
156
  """Change the bevel weight of edges
154
157
 
@@ -156,13 +159,13 @@ def edge_bevelweight(
156
159
  :type execution_context: int | str | None
157
160
  :type undo: bool | None
158
161
  :param value: Factor
159
- :type value: typing.Any | None
162
+ :type value: float | None
160
163
  :param snap: Use Snapping Options
161
- :type snap: bool | typing.Any | None
164
+ :type snap: bool | None
162
165
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
163
- :type release_confirm: bool | typing.Any | None
166
+ :type release_confirm: bool | None
164
167
  :param use_accurate: Accurate, Use accurate transformation
165
- :type use_accurate: bool | typing.Any | None
168
+ :type use_accurate: bool | None
166
169
  """
167
170
 
168
171
  ...
@@ -172,10 +175,10 @@ def edge_crease(
172
175
  execution_context: int | str | None = None,
173
176
  undo: bool | None = None,
174
177
  *,
175
- value: typing.Any | None = 0.0,
176
- snap: bool | typing.Any | None = False,
177
- release_confirm: bool | typing.Any | None = False,
178
- use_accurate: bool | typing.Any | None = False,
178
+ value: float | None = 0.0,
179
+ snap: bool | None = False,
180
+ release_confirm: bool | None = False,
181
+ use_accurate: bool | None = False,
179
182
  ):
180
183
  """Change the crease of edges
181
184
 
@@ -183,13 +186,13 @@ def edge_crease(
183
186
  :type execution_context: int | str | None
184
187
  :type undo: bool | None
185
188
  :param value: Factor
186
- :type value: typing.Any | None
189
+ :type value: float | None
187
190
  :param snap: Use Snapping Options
188
- :type snap: bool | typing.Any | None
191
+ :type snap: bool | None
189
192
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
190
- :type release_confirm: bool | typing.Any | None
193
+ :type release_confirm: bool | None
191
194
  :param use_accurate: Accurate, Use accurate transformation
192
- :type use_accurate: bool | typing.Any | None
195
+ :type use_accurate: bool | None
193
196
  """
194
197
 
195
198
  ...
@@ -199,24 +202,28 @@ def edge_slide(
199
202
  execution_context: int | str | None = None,
200
203
  undo: bool | None = None,
201
204
  *,
202
- value: typing.Any | None = 0.0,
203
- single_side: bool | typing.Any | None = False,
204
- use_even: bool | typing.Any | None = False,
205
- flipped: bool | typing.Any | None = False,
206
- use_clamp: bool | typing.Any | None = True,
207
- mirror: bool | typing.Any | None = False,
208
- snap: bool | typing.Any | None = False,
205
+ value: float | None = 0.0,
206
+ single_side: bool | None = False,
207
+ use_even: bool | None = False,
208
+ flipped: bool | None = False,
209
+ use_clamp: bool | None = True,
210
+ mirror: bool | None = False,
211
+ snap: bool | None = False,
209
212
  snap_elements: set[str] | None = {"INCREMENT"},
210
- use_snap_project: bool | typing.Any | None = False,
213
+ use_snap_project: bool | None = False,
211
214
  snap_target: str | None = "CLOSEST",
212
- use_snap_self: bool | typing.Any | None = True,
213
- use_snap_edit: bool | typing.Any | None = True,
214
- use_snap_nonedit: bool | typing.Any | None = True,
215
- use_snap_selectable: bool | typing.Any | None = False,
216
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
217
- correct_uv: bool | typing.Any | None = True,
218
- release_confirm: bool | typing.Any | None = False,
219
- use_accurate: bool | typing.Any | None = False,
215
+ use_snap_self: bool | None = True,
216
+ use_snap_edit: bool | None = True,
217
+ use_snap_nonedit: bool | None = True,
218
+ use_snap_selectable: bool | None = False,
219
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
220
+ 0.0,
221
+ 0.0,
222
+ 0.0,
223
+ ),
224
+ correct_uv: bool | None = True,
225
+ release_confirm: bool | None = False,
226
+ use_accurate: bool | None = False,
220
227
  ):
221
228
  """Slide an edge loop along a mesh
222
229
 
@@ -224,41 +231,41 @@ def edge_slide(
224
231
  :type execution_context: int | str | None
225
232
  :type undo: bool | None
226
233
  :param value: Factor
227
- :type value: typing.Any | None
234
+ :type value: float | None
228
235
  :param single_side: Single Side
229
- :type single_side: bool | typing.Any | None
236
+ :type single_side: bool | None
230
237
  :param use_even: Even, Make the edge loop match the shape of the adjacent edge loop
231
- :type use_even: bool | typing.Any | None
238
+ :type use_even: bool | None
232
239
  :param flipped: Flipped, When Even mode is active, flips between the two adjacent edge loops
233
- :type flipped: bool | typing.Any | None
240
+ :type flipped: bool | None
234
241
  :param use_clamp: Clamp, Clamp within the edge extents
235
- :type use_clamp: bool | typing.Any | None
242
+ :type use_clamp: bool | None
236
243
  :param mirror: Mirror Editing
237
- :type mirror: bool | typing.Any | None
244
+ :type mirror: bool | None
238
245
  :param snap: Use Snapping Options
239
- :type snap: bool | typing.Any | None
246
+ :type snap: bool | None
240
247
  :param snap_elements: Snap to Elements
241
248
  :type snap_elements: set[str] | None
242
249
  :param use_snap_project: Project Individual Elements
243
- :type use_snap_project: bool | typing.Any | None
250
+ :type use_snap_project: bool | None
244
251
  :param snap_target: Snap Base, Point on source that will snap to target
245
252
  :type snap_target: str | None
246
253
  :param use_snap_self: Target: Include Active
247
- :type use_snap_self: bool | typing.Any | None
254
+ :type use_snap_self: bool | None
248
255
  :param use_snap_edit: Target: Include Edit
249
- :type use_snap_edit: bool | typing.Any | None
256
+ :type use_snap_edit: bool | None
250
257
  :param use_snap_nonedit: Target: Include Non-Edited
251
- :type use_snap_nonedit: bool | typing.Any | None
258
+ :type use_snap_nonedit: bool | None
252
259
  :param use_snap_selectable: Target: Exclude Non-Selectable
253
- :type use_snap_selectable: bool | typing.Any | None
260
+ :type use_snap_selectable: bool | None
254
261
  :param snap_point: Point
255
- :type snap_point: typing.Any | None
262
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
256
263
  :param correct_uv: Correct UVs, Correct UV coordinates when transforming
257
- :type correct_uv: bool | typing.Any | None
264
+ :type correct_uv: bool | None
258
265
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
259
- :type release_confirm: bool | typing.Any | None
266
+ :type release_confirm: bool | None
260
267
  :param use_accurate: Accurate, Use accurate transformation
261
- :type use_accurate: bool | typing.Any | None
268
+ :type use_accurate: bool | None
262
269
  """
263
270
 
264
271
  ...
@@ -283,17 +290,19 @@ def mirror(
283
290
  undo: bool | None = None,
284
291
  *,
285
292
  orient_type: str | None = "GLOBAL",
286
- orient_matrix: typing.Any | None = (
287
- (0.0, 0.0, 0.0),
288
- (0.0, 0.0, 0.0),
289
- (0.0, 0.0, 0.0),
290
- ),
293
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
294
+ | mathutils.Matrix
295
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
291
296
  orient_matrix_type: str | None = "GLOBAL",
292
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
293
- gpencil_strokes: bool | typing.Any | None = False,
294
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
295
- release_confirm: bool | typing.Any | None = False,
296
- use_accurate: bool | typing.Any | None = False,
297
+ constraint_axis: list[bool] | None = (False, False, False),
298
+ gpencil_strokes: bool | None = False,
299
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
300
+ 0.0,
301
+ 0.0,
302
+ 0.0,
303
+ ),
304
+ release_confirm: bool | None = False,
305
+ use_accurate: bool | None = False,
297
306
  ):
298
307
  """Mirror selected items around one or more axes
299
308
 
@@ -303,19 +312,19 @@ def mirror(
303
312
  :param orient_type: Orientation, Transformation orientation
304
313
  :type orient_type: str | None
305
314
  :param orient_matrix: Matrix
306
- :type orient_matrix: typing.Any | None
315
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
307
316
  :param orient_matrix_type: Matrix Orientation
308
317
  :type orient_matrix_type: str | None
309
318
  :param constraint_axis: Constraint Axis
310
- :type constraint_axis: list[bool] | typing.Any | None
319
+ :type constraint_axis: list[bool] | None
311
320
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
312
- :type gpencil_strokes: bool | typing.Any | None
321
+ :type gpencil_strokes: bool | None
313
322
  :param center_override: Center Override, Force using this center value (when set)
314
- :type center_override: typing.Any | None
323
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
315
324
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
316
- :type release_confirm: bool | typing.Any | None
325
+ :type release_confirm: bool | None
317
326
  :param use_accurate: Accurate, Use accurate transformation
318
- :type use_accurate: bool | typing.Any | None
327
+ :type use_accurate: bool | None
319
328
  """
320
329
 
321
330
  ...
@@ -325,17 +334,21 @@ def push_pull(
325
334
  execution_context: int | str | None = None,
326
335
  undo: bool | None = None,
327
336
  *,
328
- value: typing.Any | None = 0.0,
329
- mirror: bool | typing.Any | None = False,
330
- use_proportional_edit: bool | typing.Any | None = False,
337
+ value: float | None = 0.0,
338
+ mirror: bool | None = False,
339
+ use_proportional_edit: bool | None = False,
331
340
  proportional_edit_falloff: str | None = "SMOOTH",
332
- proportional_size: typing.Any | None = 1.0,
333
- use_proportional_connected: bool | typing.Any | None = False,
334
- use_proportional_projected: bool | typing.Any | None = False,
335
- snap: bool | typing.Any | None = False,
336
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
337
- release_confirm: bool | typing.Any | None = False,
338
- use_accurate: bool | typing.Any | None = False,
341
+ proportional_size: float | None = 1.0,
342
+ use_proportional_connected: bool | None = False,
343
+ use_proportional_projected: bool | None = False,
344
+ snap: bool | None = False,
345
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
346
+ 0.0,
347
+ 0.0,
348
+ 0.0,
349
+ ),
350
+ release_confirm: bool | None = False,
351
+ use_accurate: bool | None = False,
339
352
  ):
340
353
  """Push/Pull selected items
341
354
 
@@ -343,27 +356,27 @@ def push_pull(
343
356
  :type execution_context: int | str | None
344
357
  :type undo: bool | None
345
358
  :param value: Distance
346
- :type value: typing.Any | None
359
+ :type value: float | None
347
360
  :param mirror: Mirror Editing
348
- :type mirror: bool | typing.Any | None
361
+ :type mirror: bool | None
349
362
  :param use_proportional_edit: Proportional Editing
350
- :type use_proportional_edit: bool | typing.Any | None
363
+ :type use_proportional_edit: bool | None
351
364
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
352
365
  :type proportional_edit_falloff: str | None
353
366
  :param proportional_size: Proportional Size
354
- :type proportional_size: typing.Any | None
367
+ :type proportional_size: float | None
355
368
  :param use_proportional_connected: Connected
356
- :type use_proportional_connected: bool | typing.Any | None
369
+ :type use_proportional_connected: bool | None
357
370
  :param use_proportional_projected: Projected (2D)
358
- :type use_proportional_projected: bool | typing.Any | None
371
+ :type use_proportional_projected: bool | None
359
372
  :param snap: Use Snapping Options
360
- :type snap: bool | typing.Any | None
373
+ :type snap: bool | None
361
374
  :param center_override: Center Override, Force using this center value (when set)
362
- :type center_override: typing.Any | None
375
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
363
376
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
364
- :type release_confirm: bool | typing.Any | None
377
+ :type release_confirm: bool | None
365
378
  :param use_accurate: Accurate, Use accurate transformation
366
- :type use_accurate: bool | typing.Any | None
379
+ :type use_accurate: bool | None
367
380
  """
368
381
 
369
382
  ...
@@ -373,38 +386,48 @@ def resize(
373
386
  execution_context: int | str | None = None,
374
387
  undo: bool | None = None,
375
388
  *,
376
- value: typing.Any | None = (1.0, 1.0, 1.0),
377
- mouse_dir_constraint: typing.Any | None = (0.0, 0.0, 0.0),
378
- orient_type: str | None = "GLOBAL",
379
- orient_matrix: typing.Any | None = (
380
- (0.0, 0.0, 0.0),
381
- (0.0, 0.0, 0.0),
382
- (0.0, 0.0, 0.0),
389
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
390
+ mouse_dir_constraint: collections.abc.Sequence[float] | mathutils.Vector | None = (
391
+ 0.0,
392
+ 0.0,
393
+ 0.0,
383
394
  ),
395
+ orient_type: str | None = "GLOBAL",
396
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
397
+ | mathutils.Matrix
398
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
384
399
  orient_matrix_type: str | None = "GLOBAL",
385
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
386
- mirror: bool | typing.Any | None = False,
387
- use_proportional_edit: bool | typing.Any | None = False,
400
+ constraint_axis: list[bool] | None = (False, False, False),
401
+ mirror: bool | None = False,
402
+ use_proportional_edit: bool | None = False,
388
403
  proportional_edit_falloff: str | None = "SMOOTH",
389
- proportional_size: typing.Any | None = 1.0,
390
- use_proportional_connected: bool | typing.Any | None = False,
391
- use_proportional_projected: bool | typing.Any | None = False,
392
- snap: bool | typing.Any | None = False,
404
+ proportional_size: float | None = 1.0,
405
+ use_proportional_connected: bool | None = False,
406
+ use_proportional_projected: bool | None = False,
407
+ snap: bool | None = False,
393
408
  snap_elements: set[str] | None = {"INCREMENT"},
394
- use_snap_project: bool | typing.Any | None = False,
409
+ use_snap_project: bool | None = False,
395
410
  snap_target: str | None = "CLOSEST",
396
- use_snap_self: bool | typing.Any | None = True,
397
- use_snap_edit: bool | typing.Any | None = True,
398
- use_snap_nonedit: bool | typing.Any | None = True,
399
- use_snap_selectable: bool | typing.Any | None = False,
400
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
401
- gpencil_strokes: bool | typing.Any | None = False,
402
- texture_space: bool | typing.Any | None = False,
403
- remove_on_cancel: bool | typing.Any | None = False,
404
- use_duplicated_keyframes: bool | typing.Any | None = False,
405
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
406
- release_confirm: bool | typing.Any | None = False,
407
- use_accurate: bool | typing.Any | None = False,
411
+ use_snap_self: bool | None = True,
412
+ use_snap_edit: bool | None = True,
413
+ use_snap_nonedit: bool | None = True,
414
+ use_snap_selectable: bool | None = False,
415
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
416
+ 0.0,
417
+ 0.0,
418
+ 0.0,
419
+ ),
420
+ gpencil_strokes: bool | None = False,
421
+ texture_space: bool | None = False,
422
+ remove_on_cancel: bool | None = False,
423
+ use_duplicated_keyframes: bool | None = False,
424
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
425
+ 0.0,
426
+ 0.0,
427
+ 0.0,
428
+ ),
429
+ release_confirm: bool | None = False,
430
+ use_accurate: bool | None = False,
408
431
  ):
409
432
  """Scale (resize) selected items
410
433
 
@@ -412,61 +435,61 @@ def resize(
412
435
  :type execution_context: int | str | None
413
436
  :type undo: bool | None
414
437
  :param value: Scale
415
- :type value: typing.Any | None
438
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
416
439
  :param mouse_dir_constraint: Mouse Directional Constraint
417
- :type mouse_dir_constraint: typing.Any | None
440
+ :type mouse_dir_constraint: collections.abc.Sequence[float] | mathutils.Vector | None
418
441
  :param orient_type: Orientation, Transformation orientation
419
442
  :type orient_type: str | None
420
443
  :param orient_matrix: Matrix
421
- :type orient_matrix: typing.Any | None
444
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
422
445
  :param orient_matrix_type: Matrix Orientation
423
446
  :type orient_matrix_type: str | None
424
447
  :param constraint_axis: Constraint Axis
425
- :type constraint_axis: list[bool] | typing.Any | None
448
+ :type constraint_axis: list[bool] | None
426
449
  :param mirror: Mirror Editing
427
- :type mirror: bool | typing.Any | None
450
+ :type mirror: bool | None
428
451
  :param use_proportional_edit: Proportional Editing
429
- :type use_proportional_edit: bool | typing.Any | None
452
+ :type use_proportional_edit: bool | None
430
453
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
431
454
  :type proportional_edit_falloff: str | None
432
455
  :param proportional_size: Proportional Size
433
- :type proportional_size: typing.Any | None
456
+ :type proportional_size: float | None
434
457
  :param use_proportional_connected: Connected
435
- :type use_proportional_connected: bool | typing.Any | None
458
+ :type use_proportional_connected: bool | None
436
459
  :param use_proportional_projected: Projected (2D)
437
- :type use_proportional_projected: bool | typing.Any | None
460
+ :type use_proportional_projected: bool | None
438
461
  :param snap: Use Snapping Options
439
- :type snap: bool | typing.Any | None
462
+ :type snap: bool | None
440
463
  :param snap_elements: Snap to Elements
441
464
  :type snap_elements: set[str] | None
442
465
  :param use_snap_project: Project Individual Elements
443
- :type use_snap_project: bool | typing.Any | None
466
+ :type use_snap_project: bool | None
444
467
  :param snap_target: Snap Base, Point on source that will snap to target
445
468
  :type snap_target: str | None
446
469
  :param use_snap_self: Target: Include Active
447
- :type use_snap_self: bool | typing.Any | None
470
+ :type use_snap_self: bool | None
448
471
  :param use_snap_edit: Target: Include Edit
449
- :type use_snap_edit: bool | typing.Any | None
472
+ :type use_snap_edit: bool | None
450
473
  :param use_snap_nonedit: Target: Include Non-Edited
451
- :type use_snap_nonedit: bool | typing.Any | None
474
+ :type use_snap_nonedit: bool | None
452
475
  :param use_snap_selectable: Target: Exclude Non-Selectable
453
- :type use_snap_selectable: bool | typing.Any | None
476
+ :type use_snap_selectable: bool | None
454
477
  :param snap_point: Point
455
- :type snap_point: typing.Any | None
478
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
456
479
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
457
- :type gpencil_strokes: bool | typing.Any | None
480
+ :type gpencil_strokes: bool | None
458
481
  :param texture_space: Edit Texture Space, Edit object data texture space
459
- :type texture_space: bool | typing.Any | None
482
+ :type texture_space: bool | None
460
483
  :param remove_on_cancel: Remove on Cancel, Remove elements on cancel
461
- :type remove_on_cancel: bool | typing.Any | None
484
+ :type remove_on_cancel: bool | None
462
485
  :param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
463
- :type use_duplicated_keyframes: bool | typing.Any | None
486
+ :type use_duplicated_keyframes: bool | None
464
487
  :param center_override: Center Override, Force using this center value (when set)
465
- :type center_override: typing.Any | None
488
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
466
489
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
467
- :type release_confirm: bool | typing.Any | None
490
+ :type release_confirm: bool | None
468
491
  :param use_accurate: Accurate, Use accurate transformation
469
- :type use_accurate: bool | typing.Any | None
492
+ :type use_accurate: bool | None
470
493
  """
471
494
 
472
495
  ...
@@ -476,35 +499,41 @@ def rotate(
476
499
  execution_context: int | str | None = None,
477
500
  undo: bool | None = None,
478
501
  *,
479
- value: typing.Any | None = 0.0,
502
+ value: float | None = 0.0,
480
503
  orient_axis: str | None = "Z",
481
504
  orient_type: str | None = "GLOBAL",
482
- orient_matrix: typing.Any | None = (
483
- (0.0, 0.0, 0.0),
484
- (0.0, 0.0, 0.0),
485
- (0.0, 0.0, 0.0),
486
- ),
505
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
506
+ | mathutils.Matrix
507
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
487
508
  orient_matrix_type: str | None = "GLOBAL",
488
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
489
- mirror: bool | typing.Any | None = False,
490
- use_proportional_edit: bool | typing.Any | None = False,
509
+ constraint_axis: list[bool] | None = (False, False, False),
510
+ mirror: bool | None = False,
511
+ use_proportional_edit: bool | None = False,
491
512
  proportional_edit_falloff: str | None = "SMOOTH",
492
- proportional_size: typing.Any | None = 1.0,
493
- use_proportional_connected: bool | typing.Any | None = False,
494
- use_proportional_projected: bool | typing.Any | None = False,
495
- snap: bool | typing.Any | None = False,
513
+ proportional_size: float | None = 1.0,
514
+ use_proportional_connected: bool | None = False,
515
+ use_proportional_projected: bool | None = False,
516
+ snap: bool | None = False,
496
517
  snap_elements: set[str] | None = {"INCREMENT"},
497
- use_snap_project: bool | typing.Any | None = False,
518
+ use_snap_project: bool | None = False,
498
519
  snap_target: str | None = "CLOSEST",
499
- use_snap_self: bool | typing.Any | None = True,
500
- use_snap_edit: bool | typing.Any | None = True,
501
- use_snap_nonedit: bool | typing.Any | None = True,
502
- use_snap_selectable: bool | typing.Any | None = False,
503
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
504
- gpencil_strokes: bool | typing.Any | None = False,
505
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
506
- release_confirm: bool | typing.Any | None = False,
507
- use_accurate: bool | typing.Any | None = False,
520
+ use_snap_self: bool | None = True,
521
+ use_snap_edit: bool | None = True,
522
+ use_snap_nonedit: bool | None = True,
523
+ use_snap_selectable: bool | None = False,
524
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
525
+ 0.0,
526
+ 0.0,
527
+ 0.0,
528
+ ),
529
+ gpencil_strokes: bool | None = False,
530
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
531
+ 0.0,
532
+ 0.0,
533
+ 0.0,
534
+ ),
535
+ release_confirm: bool | None = False,
536
+ use_accurate: bool | None = False,
508
537
  ):
509
538
  """Rotate selected items
510
539
 
@@ -512,55 +541,55 @@ def rotate(
512
541
  :type execution_context: int | str | None
513
542
  :type undo: bool | None
514
543
  :param value: Angle
515
- :type value: typing.Any | None
544
+ :type value: float | None
516
545
  :param orient_axis: Axis
517
546
  :type orient_axis: str | None
518
547
  :param orient_type: Orientation, Transformation orientation
519
548
  :type orient_type: str | None
520
549
  :param orient_matrix: Matrix
521
- :type orient_matrix: typing.Any | None
550
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
522
551
  :param orient_matrix_type: Matrix Orientation
523
552
  :type orient_matrix_type: str | None
524
553
  :param constraint_axis: Constraint Axis
525
- :type constraint_axis: list[bool] | typing.Any | None
554
+ :type constraint_axis: list[bool] | None
526
555
  :param mirror: Mirror Editing
527
- :type mirror: bool | typing.Any | None
556
+ :type mirror: bool | None
528
557
  :param use_proportional_edit: Proportional Editing
529
- :type use_proportional_edit: bool | typing.Any | None
558
+ :type use_proportional_edit: bool | None
530
559
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
531
560
  :type proportional_edit_falloff: str | None
532
561
  :param proportional_size: Proportional Size
533
- :type proportional_size: typing.Any | None
562
+ :type proportional_size: float | None
534
563
  :param use_proportional_connected: Connected
535
- :type use_proportional_connected: bool | typing.Any | None
564
+ :type use_proportional_connected: bool | None
536
565
  :param use_proportional_projected: Projected (2D)
537
- :type use_proportional_projected: bool | typing.Any | None
566
+ :type use_proportional_projected: bool | None
538
567
  :param snap: Use Snapping Options
539
- :type snap: bool | typing.Any | None
568
+ :type snap: bool | None
540
569
  :param snap_elements: Snap to Elements
541
570
  :type snap_elements: set[str] | None
542
571
  :param use_snap_project: Project Individual Elements
543
- :type use_snap_project: bool | typing.Any | None
572
+ :type use_snap_project: bool | None
544
573
  :param snap_target: Snap Base, Point on source that will snap to target
545
574
  :type snap_target: str | None
546
575
  :param use_snap_self: Target: Include Active
547
- :type use_snap_self: bool | typing.Any | None
576
+ :type use_snap_self: bool | None
548
577
  :param use_snap_edit: Target: Include Edit
549
- :type use_snap_edit: bool | typing.Any | None
578
+ :type use_snap_edit: bool | None
550
579
  :param use_snap_nonedit: Target: Include Non-Edited
551
- :type use_snap_nonedit: bool | typing.Any | None
580
+ :type use_snap_nonedit: bool | None
552
581
  :param use_snap_selectable: Target: Exclude Non-Selectable
553
- :type use_snap_selectable: bool | typing.Any | None
582
+ :type use_snap_selectable: bool | None
554
583
  :param snap_point: Point
555
- :type snap_point: typing.Any | None
584
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
556
585
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
557
- :type gpencil_strokes: bool | typing.Any | None
586
+ :type gpencil_strokes: bool | None
558
587
  :param center_override: Center Override, Force using this center value (when set)
559
- :type center_override: typing.Any | None
588
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
560
589
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
561
- :type release_confirm: bool | typing.Any | None
590
+ :type release_confirm: bool | None
562
591
  :param use_accurate: Accurate, Use accurate transformation
563
- :type use_accurate: bool | typing.Any | None
592
+ :type use_accurate: bool | None
564
593
  """
565
594
 
566
595
  ...
@@ -570,19 +599,17 @@ def rotate_normal(
570
599
  execution_context: int | str | None = None,
571
600
  undo: bool | None = None,
572
601
  *,
573
- value: typing.Any | None = 0.0,
602
+ value: float | None = 0.0,
574
603
  orient_axis: str | None = "Z",
575
604
  orient_type: str | None = "GLOBAL",
576
- orient_matrix: typing.Any | None = (
577
- (0.0, 0.0, 0.0),
578
- (0.0, 0.0, 0.0),
579
- (0.0, 0.0, 0.0),
580
- ),
605
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
606
+ | mathutils.Matrix
607
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
581
608
  orient_matrix_type: str | None = "GLOBAL",
582
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
583
- mirror: bool | typing.Any | None = False,
584
- release_confirm: bool | typing.Any | None = False,
585
- use_accurate: bool | typing.Any | None = False,
609
+ constraint_axis: list[bool] | None = (False, False, False),
610
+ mirror: bool | None = False,
611
+ release_confirm: bool | None = False,
612
+ use_accurate: bool | None = False,
586
613
  ):
587
614
  """Rotate split normal of selected items
588
615
 
@@ -590,23 +617,23 @@ def rotate_normal(
590
617
  :type execution_context: int | str | None
591
618
  :type undo: bool | None
592
619
  :param value: Angle
593
- :type value: typing.Any | None
620
+ :type value: float | None
594
621
  :param orient_axis: Axis
595
622
  :type orient_axis: str | None
596
623
  :param orient_type: Orientation, Transformation orientation
597
624
  :type orient_type: str | None
598
625
  :param orient_matrix: Matrix
599
- :type orient_matrix: typing.Any | None
626
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
600
627
  :param orient_matrix_type: Matrix Orientation
601
628
  :type orient_matrix_type: str | None
602
629
  :param constraint_axis: Constraint Axis
603
- :type constraint_axis: list[bool] | typing.Any | None
630
+ :type constraint_axis: list[bool] | None
604
631
  :param mirror: Mirror Editing
605
- :type mirror: bool | typing.Any | None
632
+ :type mirror: bool | None
606
633
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
607
- :type release_confirm: bool | typing.Any | None
634
+ :type release_confirm: bool | None
608
635
  :param use_accurate: Accurate, Use accurate transformation
609
- :type use_accurate: bool | typing.Any | None
636
+ :type use_accurate: bool | None
610
637
  """
611
638
 
612
639
  ...
@@ -634,12 +661,12 @@ def seq_slide(
634
661
  execution_context: int | str | None = None,
635
662
  undo: bool | None = None,
636
663
  *,
637
- value: typing.Any | None = (0.0, 0.0),
638
- use_restore_handle_selection: bool | typing.Any | None = False,
639
- snap: bool | typing.Any | None = False,
640
- view2d_edge_pan: bool | typing.Any | None = False,
641
- release_confirm: bool | typing.Any | None = False,
642
- use_accurate: bool | typing.Any | None = False,
664
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
665
+ use_restore_handle_selection: bool | None = False,
666
+ snap: bool | None = False,
667
+ view2d_edge_pan: bool | None = False,
668
+ release_confirm: bool | None = False,
669
+ use_accurate: bool | None = False,
643
670
  ):
644
671
  """Slide a sequence strip in time
645
672
 
@@ -647,17 +674,17 @@ def seq_slide(
647
674
  :type execution_context: int | str | None
648
675
  :type undo: bool | None
649
676
  :param value: Offset
650
- :type value: typing.Any | None
677
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
651
678
  :param use_restore_handle_selection: Restore Handle Selection, Restore handle selection after tweaking
652
- :type use_restore_handle_selection: bool | typing.Any | None
679
+ :type use_restore_handle_selection: bool | None
653
680
  :param snap: Use Snapping Options
654
- :type snap: bool | typing.Any | None
681
+ :type snap: bool | None
655
682
  :param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
656
- :type view2d_edge_pan: bool | typing.Any | None
683
+ :type view2d_edge_pan: bool | None
657
684
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
658
- :type release_confirm: bool | typing.Any | None
685
+ :type release_confirm: bool | None
659
686
  :param use_accurate: Accurate, Use accurate transformation
660
- :type use_accurate: bool | typing.Any | None
687
+ :type use_accurate: bool | None
661
688
  """
662
689
 
663
690
  ...
@@ -667,26 +694,24 @@ def shear(
667
694
  execution_context: int | str | None = None,
668
695
  undo: bool | None = None,
669
696
  *,
670
- value: typing.Any | None = 0.0,
697
+ value: float | None = 0.0,
671
698
  orient_axis: str | None = "Z",
672
699
  orient_axis_ortho: str | None = "X",
673
700
  orient_type: str | None = "GLOBAL",
674
- orient_matrix: typing.Any | None = (
675
- (0.0, 0.0, 0.0),
676
- (0.0, 0.0, 0.0),
677
- (0.0, 0.0, 0.0),
678
- ),
701
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
702
+ | mathutils.Matrix
703
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
679
704
  orient_matrix_type: str | None = "GLOBAL",
680
- mirror: bool | typing.Any | None = False,
681
- use_proportional_edit: bool | typing.Any | None = False,
705
+ mirror: bool | None = False,
706
+ use_proportional_edit: bool | None = False,
682
707
  proportional_edit_falloff: str | None = "SMOOTH",
683
- proportional_size: typing.Any | None = 1.0,
684
- use_proportional_connected: bool | typing.Any | None = False,
685
- use_proportional_projected: bool | typing.Any | None = False,
686
- snap: bool | typing.Any | None = False,
687
- gpencil_strokes: bool | typing.Any | None = False,
688
- release_confirm: bool | typing.Any | None = False,
689
- use_accurate: bool | typing.Any | None = False,
708
+ proportional_size: float | None = 1.0,
709
+ use_proportional_connected: bool | None = False,
710
+ use_proportional_projected: bool | None = False,
711
+ snap: bool | None = False,
712
+ gpencil_strokes: bool | None = False,
713
+ release_confirm: bool | None = False,
714
+ use_accurate: bool | None = False,
690
715
  ):
691
716
  """Shear selected items along the given axis
692
717
 
@@ -694,7 +719,7 @@ def shear(
694
719
  :type execution_context: int | str | None
695
720
  :type undo: bool | None
696
721
  :param value: Offset
697
- :type value: typing.Any | None
722
+ :type value: float | None
698
723
  :param orient_axis: Axis
699
724
  :type orient_axis: str | None
700
725
  :param orient_axis_ortho: Axis Ortho
@@ -702,29 +727,29 @@ def shear(
702
727
  :param orient_type: Orientation, Transformation orientation
703
728
  :type orient_type: str | None
704
729
  :param orient_matrix: Matrix
705
- :type orient_matrix: typing.Any | None
730
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
706
731
  :param orient_matrix_type: Matrix Orientation
707
732
  :type orient_matrix_type: str | None
708
733
  :param mirror: Mirror Editing
709
- :type mirror: bool | typing.Any | None
734
+ :type mirror: bool | None
710
735
  :param use_proportional_edit: Proportional Editing
711
- :type use_proportional_edit: bool | typing.Any | None
736
+ :type use_proportional_edit: bool | None
712
737
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
713
738
  :type proportional_edit_falloff: str | None
714
739
  :param proportional_size: Proportional Size
715
- :type proportional_size: typing.Any | None
740
+ :type proportional_size: float | None
716
741
  :param use_proportional_connected: Connected
717
- :type use_proportional_connected: bool | typing.Any | None
742
+ :type use_proportional_connected: bool | None
718
743
  :param use_proportional_projected: Projected (2D)
719
- :type use_proportional_projected: bool | typing.Any | None
744
+ :type use_proportional_projected: bool | None
720
745
  :param snap: Use Snapping Options
721
- :type snap: bool | typing.Any | None
746
+ :type snap: bool | None
722
747
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
723
- :type gpencil_strokes: bool | typing.Any | None
748
+ :type gpencil_strokes: bool | None
724
749
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
725
- :type release_confirm: bool | typing.Any | None
750
+ :type release_confirm: bool | None
726
751
  :param use_accurate: Accurate, Use accurate transformation
727
- :type use_accurate: bool | typing.Any | None
752
+ :type use_accurate: bool | None
728
753
  """
729
754
 
730
755
  ...
@@ -734,17 +759,17 @@ def shrink_fatten(
734
759
  execution_context: int | str | None = None,
735
760
  undo: bool | None = None,
736
761
  *,
737
- value: typing.Any | None = 0.0,
738
- use_even_offset: bool | typing.Any | None = False,
739
- mirror: bool | typing.Any | None = False,
740
- use_proportional_edit: bool | typing.Any | None = False,
762
+ value: float | None = 0.0,
763
+ use_even_offset: bool | None = False,
764
+ mirror: bool | None = False,
765
+ use_proportional_edit: bool | None = False,
741
766
  proportional_edit_falloff: str | None = "SMOOTH",
742
- proportional_size: typing.Any | None = 1.0,
743
- use_proportional_connected: bool | typing.Any | None = False,
744
- use_proportional_projected: bool | typing.Any | None = False,
745
- snap: bool | typing.Any | None = False,
746
- release_confirm: bool | typing.Any | None = False,
747
- use_accurate: bool | typing.Any | None = False,
767
+ proportional_size: float | None = 1.0,
768
+ use_proportional_connected: bool | None = False,
769
+ use_proportional_projected: bool | None = False,
770
+ snap: bool | None = False,
771
+ release_confirm: bool | None = False,
772
+ use_accurate: bool | None = False,
748
773
  ):
749
774
  """Shrink/fatten selected vertices along normals
750
775
 
@@ -752,27 +777,27 @@ def shrink_fatten(
752
777
  :type execution_context: int | str | None
753
778
  :type undo: bool | None
754
779
  :param value: Offset
755
- :type value: typing.Any | None
780
+ :type value: float | None
756
781
  :param use_even_offset: Offset Even, Scale the offset to give more even thickness
757
- :type use_even_offset: bool | typing.Any | None
782
+ :type use_even_offset: bool | None
758
783
  :param mirror: Mirror Editing
759
- :type mirror: bool | typing.Any | None
784
+ :type mirror: bool | None
760
785
  :param use_proportional_edit: Proportional Editing
761
- :type use_proportional_edit: bool | typing.Any | None
786
+ :type use_proportional_edit: bool | None
762
787
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
763
788
  :type proportional_edit_falloff: str | None
764
789
  :param proportional_size: Proportional Size
765
- :type proportional_size: typing.Any | None
790
+ :type proportional_size: float | None
766
791
  :param use_proportional_connected: Connected
767
- :type use_proportional_connected: bool | typing.Any | None
792
+ :type use_proportional_connected: bool | None
768
793
  :param use_proportional_projected: Projected (2D)
769
- :type use_proportional_projected: bool | typing.Any | None
794
+ :type use_proportional_projected: bool | None
770
795
  :param snap: Use Snapping Options
771
- :type snap: bool | typing.Any | None
796
+ :type snap: bool | None
772
797
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
773
- :type release_confirm: bool | typing.Any | None
798
+ :type release_confirm: bool | None
774
799
  :param use_accurate: Accurate, Use accurate transformation
775
- :type use_accurate: bool | typing.Any | None
800
+ :type use_accurate: bool | None
776
801
  """
777
802
 
778
803
  ...
@@ -782,32 +807,34 @@ def skin_resize(
782
807
  execution_context: int | str | None = None,
783
808
  undo: bool | None = None,
784
809
  *,
785
- value: typing.Any | None = (1.0, 1.0, 1.0),
810
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
786
811
  orient_type: str | None = "GLOBAL",
787
- orient_matrix: typing.Any | None = (
788
- (0.0, 0.0, 0.0),
789
- (0.0, 0.0, 0.0),
790
- (0.0, 0.0, 0.0),
791
- ),
812
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
813
+ | mathutils.Matrix
814
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
792
815
  orient_matrix_type: str | None = "GLOBAL",
793
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
794
- mirror: bool | typing.Any | None = False,
795
- use_proportional_edit: bool | typing.Any | None = False,
816
+ constraint_axis: list[bool] | None = (False, False, False),
817
+ mirror: bool | None = False,
818
+ use_proportional_edit: bool | None = False,
796
819
  proportional_edit_falloff: str | None = "SMOOTH",
797
- proportional_size: typing.Any | None = 1.0,
798
- use_proportional_connected: bool | typing.Any | None = False,
799
- use_proportional_projected: bool | typing.Any | None = False,
800
- snap: bool | typing.Any | None = False,
820
+ proportional_size: float | None = 1.0,
821
+ use_proportional_connected: bool | None = False,
822
+ use_proportional_projected: bool | None = False,
823
+ snap: bool | None = False,
801
824
  snap_elements: set[str] | None = {"INCREMENT"},
802
- use_snap_project: bool | typing.Any | None = False,
825
+ use_snap_project: bool | None = False,
803
826
  snap_target: str | None = "CLOSEST",
804
- use_snap_self: bool | typing.Any | None = True,
805
- use_snap_edit: bool | typing.Any | None = True,
806
- use_snap_nonedit: bool | typing.Any | None = True,
807
- use_snap_selectable: bool | typing.Any | None = False,
808
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
809
- release_confirm: bool | typing.Any | None = False,
810
- use_accurate: bool | typing.Any | None = False,
827
+ use_snap_self: bool | None = True,
828
+ use_snap_edit: bool | None = True,
829
+ use_snap_nonedit: bool | None = True,
830
+ use_snap_selectable: bool | None = False,
831
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
832
+ 0.0,
833
+ 0.0,
834
+ 0.0,
835
+ ),
836
+ release_confirm: bool | None = False,
837
+ use_accurate: bool | None = False,
811
838
  ):
812
839
  """Scale selected vertices' skin radii
813
840
 
@@ -815,49 +842,49 @@ def skin_resize(
815
842
  :type execution_context: int | str | None
816
843
  :type undo: bool | None
817
844
  :param value: Scale
818
- :type value: typing.Any | None
845
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
819
846
  :param orient_type: Orientation, Transformation orientation
820
847
  :type orient_type: str | None
821
848
  :param orient_matrix: Matrix
822
- :type orient_matrix: typing.Any | None
849
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
823
850
  :param orient_matrix_type: Matrix Orientation
824
851
  :type orient_matrix_type: str | None
825
852
  :param constraint_axis: Constraint Axis
826
- :type constraint_axis: list[bool] | typing.Any | None
853
+ :type constraint_axis: list[bool] | None
827
854
  :param mirror: Mirror Editing
828
- :type mirror: bool | typing.Any | None
855
+ :type mirror: bool | None
829
856
  :param use_proportional_edit: Proportional Editing
830
- :type use_proportional_edit: bool | typing.Any | None
857
+ :type use_proportional_edit: bool | None
831
858
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
832
859
  :type proportional_edit_falloff: str | None
833
860
  :param proportional_size: Proportional Size
834
- :type proportional_size: typing.Any | None
861
+ :type proportional_size: float | None
835
862
  :param use_proportional_connected: Connected
836
- :type use_proportional_connected: bool | typing.Any | None
863
+ :type use_proportional_connected: bool | None
837
864
  :param use_proportional_projected: Projected (2D)
838
- :type use_proportional_projected: bool | typing.Any | None
865
+ :type use_proportional_projected: bool | None
839
866
  :param snap: Use Snapping Options
840
- :type snap: bool | typing.Any | None
867
+ :type snap: bool | None
841
868
  :param snap_elements: Snap to Elements
842
869
  :type snap_elements: set[str] | None
843
870
  :param use_snap_project: Project Individual Elements
844
- :type use_snap_project: bool | typing.Any | None
871
+ :type use_snap_project: bool | None
845
872
  :param snap_target: Snap Base, Point on source that will snap to target
846
873
  :type snap_target: str | None
847
874
  :param use_snap_self: Target: Include Active
848
- :type use_snap_self: bool | typing.Any | None
875
+ :type use_snap_self: bool | None
849
876
  :param use_snap_edit: Target: Include Edit
850
- :type use_snap_edit: bool | typing.Any | None
877
+ :type use_snap_edit: bool | None
851
878
  :param use_snap_nonedit: Target: Include Non-Edited
852
- :type use_snap_nonedit: bool | typing.Any | None
879
+ :type use_snap_nonedit: bool | None
853
880
  :param use_snap_selectable: Target: Exclude Non-Selectable
854
- :type use_snap_selectable: bool | typing.Any | None
881
+ :type use_snap_selectable: bool | None
855
882
  :param snap_point: Point
856
- :type snap_point: typing.Any | None
883
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
857
884
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
858
- :type release_confirm: bool | typing.Any | None
885
+ :type release_confirm: bool | None
859
886
  :param use_accurate: Accurate, Use accurate transformation
860
- :type use_accurate: bool | typing.Any | None
887
+ :type use_accurate: bool | None
861
888
  """
862
889
 
863
890
  ...
@@ -867,16 +894,16 @@ def tilt(
867
894
  execution_context: int | str | None = None,
868
895
  undo: bool | None = None,
869
896
  *,
870
- value: typing.Any | None = 0.0,
871
- mirror: bool | typing.Any | None = False,
872
- use_proportional_edit: bool | typing.Any | None = False,
897
+ value: float | None = 0.0,
898
+ mirror: bool | None = False,
899
+ use_proportional_edit: bool | None = False,
873
900
  proportional_edit_falloff: str | None = "SMOOTH",
874
- proportional_size: typing.Any | None = 1.0,
875
- use_proportional_connected: bool | typing.Any | None = False,
876
- use_proportional_projected: bool | typing.Any | None = False,
877
- snap: bool | typing.Any | None = False,
878
- release_confirm: bool | typing.Any | None = False,
879
- use_accurate: bool | typing.Any | None = False,
901
+ proportional_size: float | None = 1.0,
902
+ use_proportional_connected: bool | None = False,
903
+ use_proportional_projected: bool | None = False,
904
+ snap: bool | None = False,
905
+ release_confirm: bool | None = False,
906
+ use_accurate: bool | None = False,
880
907
  ):
881
908
  """Tilt selected control vertices of 3D curve
882
909
 
@@ -884,25 +911,25 @@ def tilt(
884
911
  :type execution_context: int | str | None
885
912
  :type undo: bool | None
886
913
  :param value: Angle
887
- :type value: typing.Any | None
914
+ :type value: float | None
888
915
  :param mirror: Mirror Editing
889
- :type mirror: bool | typing.Any | None
916
+ :type mirror: bool | None
890
917
  :param use_proportional_edit: Proportional Editing
891
- :type use_proportional_edit: bool | typing.Any | None
918
+ :type use_proportional_edit: bool | None
892
919
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
893
920
  :type proportional_edit_falloff: str | None
894
921
  :param proportional_size: Proportional Size
895
- :type proportional_size: typing.Any | None
922
+ :type proportional_size: float | None
896
923
  :param use_proportional_connected: Connected
897
- :type use_proportional_connected: bool | typing.Any | None
924
+ :type use_proportional_connected: bool | None
898
925
  :param use_proportional_projected: Projected (2D)
899
- :type use_proportional_projected: bool | typing.Any | None
926
+ :type use_proportional_projected: bool | None
900
927
  :param snap: Use Snapping Options
901
- :type snap: bool | typing.Any | None
928
+ :type snap: bool | None
902
929
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
903
- :type release_confirm: bool | typing.Any | None
930
+ :type release_confirm: bool | None
904
931
  :param use_accurate: Accurate, Use accurate transformation
905
- :type use_accurate: bool | typing.Any | None
932
+ :type use_accurate: bool | None
906
933
  """
907
934
 
908
935
  ...
@@ -912,18 +939,22 @@ def tosphere(
912
939
  execution_context: int | str | None = None,
913
940
  undo: bool | None = None,
914
941
  *,
915
- value: typing.Any | None = 0.0,
916
- mirror: bool | typing.Any | None = False,
917
- use_proportional_edit: bool | typing.Any | None = False,
942
+ value: float | None = 0.0,
943
+ mirror: bool | None = False,
944
+ use_proportional_edit: bool | None = False,
918
945
  proportional_edit_falloff: str | None = "SMOOTH",
919
- proportional_size: typing.Any | None = 1.0,
920
- use_proportional_connected: bool | typing.Any | None = False,
921
- use_proportional_projected: bool | typing.Any | None = False,
922
- snap: bool | typing.Any | None = False,
923
- gpencil_strokes: bool | typing.Any | None = False,
924
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
925
- release_confirm: bool | typing.Any | None = False,
926
- use_accurate: bool | typing.Any | None = False,
946
+ proportional_size: float | None = 1.0,
947
+ use_proportional_connected: bool | None = False,
948
+ use_proportional_projected: bool | None = False,
949
+ snap: bool | None = False,
950
+ gpencil_strokes: bool | None = False,
951
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
952
+ 0.0,
953
+ 0.0,
954
+ 0.0,
955
+ ),
956
+ release_confirm: bool | None = False,
957
+ use_accurate: bool | None = False,
927
958
  ):
928
959
  """Move selected items outward in a spherical shape around geometric center
929
960
 
@@ -931,29 +962,29 @@ def tosphere(
931
962
  :type execution_context: int | str | None
932
963
  :type undo: bool | None
933
964
  :param value: Factor
934
- :type value: typing.Any | None
965
+ :type value: float | None
935
966
  :param mirror: Mirror Editing
936
- :type mirror: bool | typing.Any | None
967
+ :type mirror: bool | None
937
968
  :param use_proportional_edit: Proportional Editing
938
- :type use_proportional_edit: bool | typing.Any | None
969
+ :type use_proportional_edit: bool | None
939
970
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
940
971
  :type proportional_edit_falloff: str | None
941
972
  :param proportional_size: Proportional Size
942
- :type proportional_size: typing.Any | None
973
+ :type proportional_size: float | None
943
974
  :param use_proportional_connected: Connected
944
- :type use_proportional_connected: bool | typing.Any | None
975
+ :type use_proportional_connected: bool | None
945
976
  :param use_proportional_projected: Projected (2D)
946
- :type use_proportional_projected: bool | typing.Any | None
977
+ :type use_proportional_projected: bool | None
947
978
  :param snap: Use Snapping Options
948
- :type snap: bool | typing.Any | None
979
+ :type snap: bool | None
949
980
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
950
- :type gpencil_strokes: bool | typing.Any | None
981
+ :type gpencil_strokes: bool | None
951
982
  :param center_override: Center Override, Force using this center value (when set)
952
- :type center_override: typing.Any | None
983
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
953
984
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
954
- :type release_confirm: bool | typing.Any | None
985
+ :type release_confirm: bool | None
955
986
  :param use_accurate: Accurate, Use accurate transformation
956
- :type use_accurate: bool | typing.Any | None
987
+ :type use_accurate: bool | None
957
988
  """
958
989
 
959
990
  ...
@@ -963,18 +994,22 @@ def trackball(
963
994
  execution_context: int | str | None = None,
964
995
  undo: bool | None = None,
965
996
  *,
966
- value: typing.Any | None = (0.0, 0.0),
967
- mirror: bool | typing.Any | None = False,
968
- use_proportional_edit: bool | typing.Any | None = False,
997
+ value: collections.abc.Iterable[float] | None = (0.0, 0.0),
998
+ mirror: bool | None = False,
999
+ use_proportional_edit: bool | None = False,
969
1000
  proportional_edit_falloff: str | None = "SMOOTH",
970
- proportional_size: typing.Any | None = 1.0,
971
- use_proportional_connected: bool | typing.Any | None = False,
972
- use_proportional_projected: bool | typing.Any | None = False,
973
- snap: bool | typing.Any | None = False,
974
- gpencil_strokes: bool | typing.Any | None = False,
975
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
976
- release_confirm: bool | typing.Any | None = False,
977
- use_accurate: bool | typing.Any | None = False,
1001
+ proportional_size: float | None = 1.0,
1002
+ use_proportional_connected: bool | None = False,
1003
+ use_proportional_projected: bool | None = False,
1004
+ snap: bool | None = False,
1005
+ gpencil_strokes: bool | None = False,
1006
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
1007
+ 0.0,
1008
+ 0.0,
1009
+ 0.0,
1010
+ ),
1011
+ release_confirm: bool | None = False,
1012
+ use_accurate: bool | None = False,
978
1013
  ):
979
1014
  """Trackball style rotation of selected items
980
1015
 
@@ -982,29 +1017,29 @@ def trackball(
982
1017
  :type execution_context: int | str | None
983
1018
  :type undo: bool | None
984
1019
  :param value: Angle
985
- :type value: typing.Any | None
1020
+ :type value: collections.abc.Iterable[float] | None
986
1021
  :param mirror: Mirror Editing
987
- :type mirror: bool | typing.Any | None
1022
+ :type mirror: bool | None
988
1023
  :param use_proportional_edit: Proportional Editing
989
- :type use_proportional_edit: bool | typing.Any | None
1024
+ :type use_proportional_edit: bool | None
990
1025
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
991
1026
  :type proportional_edit_falloff: str | None
992
1027
  :param proportional_size: Proportional Size
993
- :type proportional_size: typing.Any | None
1028
+ :type proportional_size: float | None
994
1029
  :param use_proportional_connected: Connected
995
- :type use_proportional_connected: bool | typing.Any | None
1030
+ :type use_proportional_connected: bool | None
996
1031
  :param use_proportional_projected: Projected (2D)
997
- :type use_proportional_projected: bool | typing.Any | None
1032
+ :type use_proportional_projected: bool | None
998
1033
  :param snap: Use Snapping Options
999
- :type snap: bool | typing.Any | None
1034
+ :type snap: bool | None
1000
1035
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
1001
- :type gpencil_strokes: bool | typing.Any | None
1036
+ :type gpencil_strokes: bool | None
1002
1037
  :param center_override: Center Override, Force using this center value (when set)
1003
- :type center_override: typing.Any | None
1038
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
1004
1039
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
1005
- :type release_confirm: bool | typing.Any | None
1040
+ :type release_confirm: bool | None
1006
1041
  :param use_accurate: Accurate, Use accurate transformation
1007
- :type use_accurate: bool | typing.Any | None
1042
+ :type use_accurate: bool | None
1008
1043
  """
1009
1044
 
1010
1045
  ...
@@ -1015,41 +1050,56 @@ def transform(
1015
1050
  undo: bool | None = None,
1016
1051
  *,
1017
1052
  mode: str | None = "TRANSLATION",
1018
- value: typing.Any | None = (0.0, 0.0, 0.0, 0.0),
1053
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (
1054
+ 0.0,
1055
+ 0.0,
1056
+ 0.0,
1057
+ 0.0,
1058
+ ),
1019
1059
  orient_axis: str | None = "Z",
1020
1060
  orient_type: str | None = "GLOBAL",
1021
- orient_matrix: typing.Any | None = (
1022
- (0.0, 0.0, 0.0),
1023
- (0.0, 0.0, 0.0),
1024
- (0.0, 0.0, 0.0),
1025
- ),
1061
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
1062
+ | mathutils.Matrix
1063
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
1026
1064
  orient_matrix_type: str | None = "GLOBAL",
1027
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
1028
- mirror: bool | typing.Any | None = False,
1029
- use_proportional_edit: bool | typing.Any | None = False,
1065
+ constraint_axis: list[bool] | None = (False, False, False),
1066
+ mirror: bool | None = False,
1067
+ use_proportional_edit: bool | None = False,
1030
1068
  proportional_edit_falloff: str | None = "SMOOTH",
1031
- proportional_size: typing.Any | None = 1.0,
1032
- use_proportional_connected: bool | typing.Any | None = False,
1033
- use_proportional_projected: bool | typing.Any | None = False,
1034
- snap: bool | typing.Any | None = False,
1069
+ proportional_size: float | None = 1.0,
1070
+ use_proportional_connected: bool | None = False,
1071
+ use_proportional_projected: bool | None = False,
1072
+ snap: bool | None = False,
1035
1073
  snap_elements: set[str] | None = {"INCREMENT"},
1036
- use_snap_project: bool | typing.Any | None = False,
1074
+ use_snap_project: bool | None = False,
1037
1075
  snap_target: str | None = "CLOSEST",
1038
- use_snap_self: bool | typing.Any | None = True,
1039
- use_snap_edit: bool | typing.Any | None = True,
1040
- use_snap_nonedit: bool | typing.Any | None = True,
1041
- use_snap_selectable: bool | typing.Any | None = False,
1042
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
1043
- snap_align: bool | typing.Any | None = False,
1044
- snap_normal: typing.Any | None = (0.0, 0.0, 0.0),
1045
- gpencil_strokes: bool | typing.Any | None = False,
1046
- texture_space: bool | typing.Any | None = False,
1047
- remove_on_cancel: bool | typing.Any | None = False,
1048
- use_duplicated_keyframes: bool | typing.Any | None = False,
1049
- center_override: typing.Any | None = (0.0, 0.0, 0.0),
1050
- release_confirm: bool | typing.Any | None = False,
1051
- use_accurate: bool | typing.Any | None = False,
1052
- use_automerge_and_split: bool | typing.Any | None = False,
1076
+ use_snap_self: bool | None = True,
1077
+ use_snap_edit: bool | None = True,
1078
+ use_snap_nonedit: bool | None = True,
1079
+ use_snap_selectable: bool | None = False,
1080
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
1081
+ 0.0,
1082
+ 0.0,
1083
+ 0.0,
1084
+ ),
1085
+ snap_align: bool | None = False,
1086
+ snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None = (
1087
+ 0.0,
1088
+ 0.0,
1089
+ 0.0,
1090
+ ),
1091
+ gpencil_strokes: bool | None = False,
1092
+ texture_space: bool | None = False,
1093
+ remove_on_cancel: bool | None = False,
1094
+ use_duplicated_keyframes: bool | None = False,
1095
+ center_override: collections.abc.Sequence[float] | mathutils.Vector | None = (
1096
+ 0.0,
1097
+ 0.0,
1098
+ 0.0,
1099
+ ),
1100
+ release_confirm: bool | None = False,
1101
+ use_accurate: bool | None = False,
1102
+ use_automerge_and_split: bool | None = False,
1053
1103
  ):
1054
1104
  """Transform selected items by mode type
1055
1105
 
@@ -1059,67 +1109,67 @@ def transform(
1059
1109
  :param mode: Mode
1060
1110
  :type mode: str | None
1061
1111
  :param value: Values
1062
- :type value: typing.Any | None
1112
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
1063
1113
  :param orient_axis: Axis
1064
1114
  :type orient_axis: str | None
1065
1115
  :param orient_type: Orientation, Transformation orientation
1066
1116
  :type orient_type: str | None
1067
1117
  :param orient_matrix: Matrix
1068
- :type orient_matrix: typing.Any | None
1118
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
1069
1119
  :param orient_matrix_type: Matrix Orientation
1070
1120
  :type orient_matrix_type: str | None
1071
1121
  :param constraint_axis: Constraint Axis
1072
- :type constraint_axis: list[bool] | typing.Any | None
1122
+ :type constraint_axis: list[bool] | None
1073
1123
  :param mirror: Mirror Editing
1074
- :type mirror: bool | typing.Any | None
1124
+ :type mirror: bool | None
1075
1125
  :param use_proportional_edit: Proportional Editing
1076
- :type use_proportional_edit: bool | typing.Any | None
1126
+ :type use_proportional_edit: bool | None
1077
1127
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
1078
1128
  :type proportional_edit_falloff: str | None
1079
1129
  :param proportional_size: Proportional Size
1080
- :type proportional_size: typing.Any | None
1130
+ :type proportional_size: float | None
1081
1131
  :param use_proportional_connected: Connected
1082
- :type use_proportional_connected: bool | typing.Any | None
1132
+ :type use_proportional_connected: bool | None
1083
1133
  :param use_proportional_projected: Projected (2D)
1084
- :type use_proportional_projected: bool | typing.Any | None
1134
+ :type use_proportional_projected: bool | None
1085
1135
  :param snap: Use Snapping Options
1086
- :type snap: bool | typing.Any | None
1136
+ :type snap: bool | None
1087
1137
  :param snap_elements: Snap to Elements
1088
1138
  :type snap_elements: set[str] | None
1089
1139
  :param use_snap_project: Project Individual Elements
1090
- :type use_snap_project: bool | typing.Any | None
1140
+ :type use_snap_project: bool | None
1091
1141
  :param snap_target: Snap Base, Point on source that will snap to target
1092
1142
  :type snap_target: str | None
1093
1143
  :param use_snap_self: Target: Include Active
1094
- :type use_snap_self: bool | typing.Any | None
1144
+ :type use_snap_self: bool | None
1095
1145
  :param use_snap_edit: Target: Include Edit
1096
- :type use_snap_edit: bool | typing.Any | None
1146
+ :type use_snap_edit: bool | None
1097
1147
  :param use_snap_nonedit: Target: Include Non-Edited
1098
- :type use_snap_nonedit: bool | typing.Any | None
1148
+ :type use_snap_nonedit: bool | None
1099
1149
  :param use_snap_selectable: Target: Exclude Non-Selectable
1100
- :type use_snap_selectable: bool | typing.Any | None
1150
+ :type use_snap_selectable: bool | None
1101
1151
  :param snap_point: Point
1102
- :type snap_point: typing.Any | None
1152
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
1103
1153
  :param snap_align: Align with Point Normal
1104
- :type snap_align: bool | typing.Any | None
1154
+ :type snap_align: bool | None
1105
1155
  :param snap_normal: Normal
1106
- :type snap_normal: typing.Any | None
1156
+ :type snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None
1107
1157
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
1108
- :type gpencil_strokes: bool | typing.Any | None
1158
+ :type gpencil_strokes: bool | None
1109
1159
  :param texture_space: Edit Texture Space, Edit object data texture space
1110
- :type texture_space: bool | typing.Any | None
1160
+ :type texture_space: bool | None
1111
1161
  :param remove_on_cancel: Remove on Cancel, Remove elements on cancel
1112
- :type remove_on_cancel: bool | typing.Any | None
1162
+ :type remove_on_cancel: bool | None
1113
1163
  :param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
1114
- :type use_duplicated_keyframes: bool | typing.Any | None
1164
+ :type use_duplicated_keyframes: bool | None
1115
1165
  :param center_override: Center Override, Force using this center value (when set)
1116
- :type center_override: typing.Any | None
1166
+ :type center_override: collections.abc.Sequence[float] | mathutils.Vector | None
1117
1167
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
1118
- :type release_confirm: bool | typing.Any | None
1168
+ :type release_confirm: bool | None
1119
1169
  :param use_accurate: Accurate, Use accurate transformation
1120
- :type use_accurate: bool | typing.Any | None
1170
+ :type use_accurate: bool | None
1121
1171
  :param use_automerge_and_split: Auto Merge & Split, Forces the use of Auto Merge and Split
1122
- :type use_automerge_and_split: bool | typing.Any | None
1172
+ :type use_automerge_and_split: bool | None
1123
1173
  """
1124
1174
 
1125
1175
  ...
@@ -1129,41 +1179,47 @@ def translate(
1129
1179
  execution_context: int | str | None = None,
1130
1180
  undo: bool | None = None,
1131
1181
  *,
1132
- value: typing.Any | None = (0.0, 0.0, 0.0),
1182
+ value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
1133
1183
  orient_type: str | None = "GLOBAL",
1134
- orient_matrix: typing.Any | None = (
1135
- (0.0, 0.0, 0.0),
1136
- (0.0, 0.0, 0.0),
1137
- (0.0, 0.0, 0.0),
1138
- ),
1184
+ orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
1185
+ | mathutils.Matrix
1186
+ | None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
1139
1187
  orient_matrix_type: str | None = "GLOBAL",
1140
- constraint_axis: list[bool] | typing.Any | None = (False, False, False),
1141
- mirror: bool | typing.Any | None = False,
1142
- use_proportional_edit: bool | typing.Any | None = False,
1188
+ constraint_axis: list[bool] | None = (False, False, False),
1189
+ mirror: bool | None = False,
1190
+ use_proportional_edit: bool | None = False,
1143
1191
  proportional_edit_falloff: str | None = "SMOOTH",
1144
- proportional_size: typing.Any | None = 1.0,
1145
- use_proportional_connected: bool | typing.Any | None = False,
1146
- use_proportional_projected: bool | typing.Any | None = False,
1147
- snap: bool | typing.Any | None = False,
1192
+ proportional_size: float | None = 1.0,
1193
+ use_proportional_connected: bool | None = False,
1194
+ use_proportional_projected: bool | None = False,
1195
+ snap: bool | None = False,
1148
1196
  snap_elements: set[str] | None = {"INCREMENT"},
1149
- use_snap_project: bool | typing.Any | None = False,
1197
+ use_snap_project: bool | None = False,
1150
1198
  snap_target: str | None = "CLOSEST",
1151
- use_snap_self: bool | typing.Any | None = True,
1152
- use_snap_edit: bool | typing.Any | None = True,
1153
- use_snap_nonedit: bool | typing.Any | None = True,
1154
- use_snap_selectable: bool | typing.Any | None = False,
1155
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
1156
- snap_align: bool | typing.Any | None = False,
1157
- snap_normal: typing.Any | None = (0.0, 0.0, 0.0),
1158
- gpencil_strokes: bool | typing.Any | None = False,
1159
- cursor_transform: bool | typing.Any | None = False,
1160
- texture_space: bool | typing.Any | None = False,
1161
- remove_on_cancel: bool | typing.Any | None = False,
1162
- use_duplicated_keyframes: bool | typing.Any | None = False,
1163
- view2d_edge_pan: bool | typing.Any | None = False,
1164
- release_confirm: bool | typing.Any | None = False,
1165
- use_accurate: bool | typing.Any | None = False,
1166
- use_automerge_and_split: bool | typing.Any | None = False,
1199
+ use_snap_self: bool | None = True,
1200
+ use_snap_edit: bool | None = True,
1201
+ use_snap_nonedit: bool | None = True,
1202
+ use_snap_selectable: bool | None = False,
1203
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
1204
+ 0.0,
1205
+ 0.0,
1206
+ 0.0,
1207
+ ),
1208
+ snap_align: bool | None = False,
1209
+ snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None = (
1210
+ 0.0,
1211
+ 0.0,
1212
+ 0.0,
1213
+ ),
1214
+ gpencil_strokes: bool | None = False,
1215
+ cursor_transform: bool | None = False,
1216
+ texture_space: bool | None = False,
1217
+ remove_on_cancel: bool | None = False,
1218
+ use_duplicated_keyframes: bool | None = False,
1219
+ view2d_edge_pan: bool | None = False,
1220
+ release_confirm: bool | None = False,
1221
+ use_accurate: bool | None = False,
1222
+ use_automerge_and_split: bool | None = False,
1167
1223
  ):
1168
1224
  """Move selected items
1169
1225
 
@@ -1171,67 +1227,67 @@ def translate(
1171
1227
  :type execution_context: int | str | None
1172
1228
  :type undo: bool | None
1173
1229
  :param value: Move
1174
- :type value: typing.Any | None
1230
+ :type value: collections.abc.Sequence[float] | mathutils.Vector | None
1175
1231
  :param orient_type: Orientation, Transformation orientation
1176
1232
  :type orient_type: str | None
1177
1233
  :param orient_matrix: Matrix
1178
- :type orient_matrix: typing.Any | None
1234
+ :type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
1179
1235
  :param orient_matrix_type: Matrix Orientation
1180
1236
  :type orient_matrix_type: str | None
1181
1237
  :param constraint_axis: Constraint Axis
1182
- :type constraint_axis: list[bool] | typing.Any | None
1238
+ :type constraint_axis: list[bool] | None
1183
1239
  :param mirror: Mirror Editing
1184
- :type mirror: bool | typing.Any | None
1240
+ :type mirror: bool | None
1185
1241
  :param use_proportional_edit: Proportional Editing
1186
- :type use_proportional_edit: bool | typing.Any | None
1242
+ :type use_proportional_edit: bool | None
1187
1243
  :param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
1188
1244
  :type proportional_edit_falloff: str | None
1189
1245
  :param proportional_size: Proportional Size
1190
- :type proportional_size: typing.Any | None
1246
+ :type proportional_size: float | None
1191
1247
  :param use_proportional_connected: Connected
1192
- :type use_proportional_connected: bool | typing.Any | None
1248
+ :type use_proportional_connected: bool | None
1193
1249
  :param use_proportional_projected: Projected (2D)
1194
- :type use_proportional_projected: bool | typing.Any | None
1250
+ :type use_proportional_projected: bool | None
1195
1251
  :param snap: Use Snapping Options
1196
- :type snap: bool | typing.Any | None
1252
+ :type snap: bool | None
1197
1253
  :param snap_elements: Snap to Elements
1198
1254
  :type snap_elements: set[str] | None
1199
1255
  :param use_snap_project: Project Individual Elements
1200
- :type use_snap_project: bool | typing.Any | None
1256
+ :type use_snap_project: bool | None
1201
1257
  :param snap_target: Snap Base, Point on source that will snap to target
1202
1258
  :type snap_target: str | None
1203
1259
  :param use_snap_self: Target: Include Active
1204
- :type use_snap_self: bool | typing.Any | None
1260
+ :type use_snap_self: bool | None
1205
1261
  :param use_snap_edit: Target: Include Edit
1206
- :type use_snap_edit: bool | typing.Any | None
1262
+ :type use_snap_edit: bool | None
1207
1263
  :param use_snap_nonedit: Target: Include Non-Edited
1208
- :type use_snap_nonedit: bool | typing.Any | None
1264
+ :type use_snap_nonedit: bool | None
1209
1265
  :param use_snap_selectable: Target: Exclude Non-Selectable
1210
- :type use_snap_selectable: bool | typing.Any | None
1266
+ :type use_snap_selectable: bool | None
1211
1267
  :param snap_point: Point
1212
- :type snap_point: typing.Any | None
1268
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
1213
1269
  :param snap_align: Align with Point Normal
1214
- :type snap_align: bool | typing.Any | None
1270
+ :type snap_align: bool | None
1215
1271
  :param snap_normal: Normal
1216
- :type snap_normal: typing.Any | None
1272
+ :type snap_normal: collections.abc.Sequence[float] | mathutils.Vector | None
1217
1273
  :param gpencil_strokes: Edit Grease Pencil, Edit selected Grease Pencil strokes
1218
- :type gpencil_strokes: bool | typing.Any | None
1274
+ :type gpencil_strokes: bool | None
1219
1275
  :param cursor_transform: Transform Cursor
1220
- :type cursor_transform: bool | typing.Any | None
1276
+ :type cursor_transform: bool | None
1221
1277
  :param texture_space: Edit Texture Space, Edit object data texture space
1222
- :type texture_space: bool | typing.Any | None
1278
+ :type texture_space: bool | None
1223
1279
  :param remove_on_cancel: Remove on Cancel, Remove elements on cancel
1224
- :type remove_on_cancel: bool | typing.Any | None
1280
+ :type remove_on_cancel: bool | None
1225
1281
  :param use_duplicated_keyframes: Duplicated Keyframes, Transform duplicated keyframes
1226
- :type use_duplicated_keyframes: bool | typing.Any | None
1282
+ :type use_duplicated_keyframes: bool | None
1227
1283
  :param view2d_edge_pan: Edge Pan, Enable edge panning in 2D view
1228
- :type view2d_edge_pan: bool | typing.Any | None
1284
+ :type view2d_edge_pan: bool | None
1229
1285
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
1230
- :type release_confirm: bool | typing.Any | None
1286
+ :type release_confirm: bool | None
1231
1287
  :param use_accurate: Accurate, Use accurate transformation
1232
- :type use_accurate: bool | typing.Any | None
1288
+ :type use_accurate: bool | None
1233
1289
  :param use_automerge_and_split: Auto Merge & Split, Forces the use of Auto Merge and Split
1234
- :type use_automerge_and_split: bool | typing.Any | None
1290
+ :type use_automerge_and_split: bool | None
1235
1291
  """
1236
1292
 
1237
1293
  ...
@@ -1241,10 +1297,10 @@ def vert_crease(
1241
1297
  execution_context: int | str | None = None,
1242
1298
  undo: bool | None = None,
1243
1299
  *,
1244
- value: typing.Any | None = 0.0,
1245
- snap: bool | typing.Any | None = False,
1246
- release_confirm: bool | typing.Any | None = False,
1247
- use_accurate: bool | typing.Any | None = False,
1300
+ value: float | None = 0.0,
1301
+ snap: bool | None = False,
1302
+ release_confirm: bool | None = False,
1303
+ use_accurate: bool | None = False,
1248
1304
  ):
1249
1305
  """Change the crease of vertices
1250
1306
 
@@ -1252,13 +1308,13 @@ def vert_crease(
1252
1308
  :type execution_context: int | str | None
1253
1309
  :type undo: bool | None
1254
1310
  :param value: Factor
1255
- :type value: typing.Any | None
1311
+ :type value: float | None
1256
1312
  :param snap: Use Snapping Options
1257
- :type snap: bool | typing.Any | None
1313
+ :type snap: bool | None
1258
1314
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
1259
- :type release_confirm: bool | typing.Any | None
1315
+ :type release_confirm: bool | None
1260
1316
  :param use_accurate: Accurate, Use accurate transformation
1261
- :type use_accurate: bool | typing.Any | None
1317
+ :type use_accurate: bool | None
1262
1318
  """
1263
1319
 
1264
1320
  ...
@@ -1268,23 +1324,27 @@ def vert_slide(
1268
1324
  execution_context: int | str | None = None,
1269
1325
  undo: bool | None = None,
1270
1326
  *,
1271
- value: typing.Any | None = 0.0,
1272
- use_even: bool | typing.Any | None = False,
1273
- flipped: bool | typing.Any | None = False,
1274
- use_clamp: bool | typing.Any | None = True,
1275
- mirror: bool | typing.Any | None = False,
1276
- snap: bool | typing.Any | None = False,
1327
+ value: float | None = 0.0,
1328
+ use_even: bool | None = False,
1329
+ flipped: bool | None = False,
1330
+ use_clamp: bool | None = True,
1331
+ mirror: bool | None = False,
1332
+ snap: bool | None = False,
1277
1333
  snap_elements: set[str] | None = {"INCREMENT"},
1278
- use_snap_project: bool | typing.Any | None = False,
1334
+ use_snap_project: bool | None = False,
1279
1335
  snap_target: str | None = "CLOSEST",
1280
- use_snap_self: bool | typing.Any | None = True,
1281
- use_snap_edit: bool | typing.Any | None = True,
1282
- use_snap_nonedit: bool | typing.Any | None = True,
1283
- use_snap_selectable: bool | typing.Any | None = False,
1284
- snap_point: typing.Any | None = (0.0, 0.0, 0.0),
1285
- correct_uv: bool | typing.Any | None = True,
1286
- release_confirm: bool | typing.Any | None = False,
1287
- use_accurate: bool | typing.Any | None = False,
1336
+ use_snap_self: bool | None = True,
1337
+ use_snap_edit: bool | None = True,
1338
+ use_snap_nonedit: bool | None = True,
1339
+ use_snap_selectable: bool | None = False,
1340
+ snap_point: collections.abc.Sequence[float] | mathutils.Vector | None = (
1341
+ 0.0,
1342
+ 0.0,
1343
+ 0.0,
1344
+ ),
1345
+ correct_uv: bool | None = True,
1346
+ release_confirm: bool | None = False,
1347
+ use_accurate: bool | None = False,
1288
1348
  ):
1289
1349
  """Slide a vertex along a mesh
1290
1350
 
@@ -1292,39 +1352,39 @@ def vert_slide(
1292
1352
  :type execution_context: int | str | None
1293
1353
  :type undo: bool | None
1294
1354
  :param value: Factor
1295
- :type value: typing.Any | None
1355
+ :type value: float | None
1296
1356
  :param use_even: Even, Make the edge loop match the shape of the adjacent edge loop
1297
- :type use_even: bool | typing.Any | None
1357
+ :type use_even: bool | None
1298
1358
  :param flipped: Flipped, When Even mode is active, flips between the two adjacent edge loops
1299
- :type flipped: bool | typing.Any | None
1359
+ :type flipped: bool | None
1300
1360
  :param use_clamp: Clamp, Clamp within the edge extents
1301
- :type use_clamp: bool | typing.Any | None
1361
+ :type use_clamp: bool | None
1302
1362
  :param mirror: Mirror Editing
1303
- :type mirror: bool | typing.Any | None
1363
+ :type mirror: bool | None
1304
1364
  :param snap: Use Snapping Options
1305
- :type snap: bool | typing.Any | None
1365
+ :type snap: bool | None
1306
1366
  :param snap_elements: Snap to Elements
1307
1367
  :type snap_elements: set[str] | None
1308
1368
  :param use_snap_project: Project Individual Elements
1309
- :type use_snap_project: bool | typing.Any | None
1369
+ :type use_snap_project: bool | None
1310
1370
  :param snap_target: Snap Base, Point on source that will snap to target
1311
1371
  :type snap_target: str | None
1312
1372
  :param use_snap_self: Target: Include Active
1313
- :type use_snap_self: bool | typing.Any | None
1373
+ :type use_snap_self: bool | None
1314
1374
  :param use_snap_edit: Target: Include Edit
1315
- :type use_snap_edit: bool | typing.Any | None
1375
+ :type use_snap_edit: bool | None
1316
1376
  :param use_snap_nonedit: Target: Include Non-Edited
1317
- :type use_snap_nonedit: bool | typing.Any | None
1377
+ :type use_snap_nonedit: bool | None
1318
1378
  :param use_snap_selectable: Target: Exclude Non-Selectable
1319
- :type use_snap_selectable: bool | typing.Any | None
1379
+ :type use_snap_selectable: bool | None
1320
1380
  :param snap_point: Point
1321
- :type snap_point: typing.Any | None
1381
+ :type snap_point: collections.abc.Sequence[float] | mathutils.Vector | None
1322
1382
  :param correct_uv: Correct UVs, Correct UV coordinates when transforming
1323
- :type correct_uv: bool | typing.Any | None
1383
+ :type correct_uv: bool | None
1324
1384
  :param release_confirm: Confirm on Release, Always confirm operation when releasing button
1325
- :type release_confirm: bool | typing.Any | None
1385
+ :type release_confirm: bool | None
1326
1386
  :param use_accurate: Accurate, Use accurate transformation
1327
- :type use_accurate: bool | typing.Any | None
1387
+ :type use_accurate: bool | None
1328
1388
  """
1329
1389
 
1330
1390
  ...
@@ -1334,11 +1394,11 @@ def vertex_random(
1334
1394
  execution_context: int | str | None = None,
1335
1395
  undo: bool | None = None,
1336
1396
  *,
1337
- offset: typing.Any | None = 0.0,
1338
- uniform: typing.Any | None = 0.0,
1339
- normal: typing.Any | None = 0.0,
1340
- seed: typing.Any | None = 0,
1341
- wait_for_input: bool | typing.Any | None = True,
1397
+ offset: float | None = 0.0,
1398
+ uniform: float | None = 0.0,
1399
+ normal: float | None = 0.0,
1400
+ seed: int | None = 0,
1401
+ wait_for_input: bool | None = True,
1342
1402
  ):
1343
1403
  """Randomize vertices
1344
1404
 
@@ -1346,15 +1406,15 @@ def vertex_random(
1346
1406
  :type execution_context: int | str | None
1347
1407
  :type undo: bool | None
1348
1408
  :param offset: Amount, Distance to offset
1349
- :type offset: typing.Any | None
1409
+ :type offset: float | None
1350
1410
  :param uniform: Uniform, Increase for uniform offset distance
1351
- :type uniform: typing.Any | None
1411
+ :type uniform: float | None
1352
1412
  :param normal: Normal, Align offset direction to normals
1353
- :type normal: typing.Any | None
1413
+ :type normal: float | None
1354
1414
  :param seed: Random Seed, Seed for the random number generator
1355
- :type seed: typing.Any | None
1415
+ :type seed: int | None
1356
1416
  :param wait_for_input: Wait for Input
1357
- :type wait_for_input: bool | typing.Any | None
1417
+ :type wait_for_input: bool | None
1358
1418
  """
1359
1419
 
1360
1420
  ...
@@ -1364,17 +1424,19 @@ def vertex_warp(
1364
1424
  execution_context: int | str | None = None,
1365
1425
  undo: bool | None = None,
1366
1426
  *,
1367
- warp_angle: typing.Any | None = 6.28319,
1368
- offset_angle: typing.Any | None = 0.0,
1369
- min: typing.Any | None = -1.0,
1370
- max: typing.Any | None = 1.0,
1371
- viewmat: typing.Any | None = (
1427
+ warp_angle: float | None = 6.28319,
1428
+ offset_angle: float | None = 0.0,
1429
+ min: float | None = -1.0,
1430
+ max: float | None = 1.0,
1431
+ viewmat: collections.abc.Sequence[collections.abc.Sequence[float]]
1432
+ | mathutils.Matrix
1433
+ | None = (
1372
1434
  (0.0, 0.0, 0.0, 0.0),
1373
1435
  (0.0, 0.0, 0.0, 0.0),
1374
1436
  (0.0, 0.0, 0.0, 0.0),
1375
1437
  (0.0, 0.0, 0.0, 0.0),
1376
1438
  ),
1377
- center: typing.Any | None = (0.0, 0.0, 0.0),
1439
+ center: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
1378
1440
  ):
1379
1441
  """Warp vertices around the cursor
1380
1442
 
@@ -1382,17 +1444,17 @@ def vertex_warp(
1382
1444
  :type execution_context: int | str | None
1383
1445
  :type undo: bool | None
1384
1446
  :param warp_angle: Warp Angle, Amount to warp about the cursor
1385
- :type warp_angle: typing.Any | None
1447
+ :type warp_angle: float | None
1386
1448
  :param offset_angle: Offset Angle, Angle to use as the basis for warping
1387
- :type offset_angle: typing.Any | None
1449
+ :type offset_angle: float | None
1388
1450
  :param min: Min
1389
- :type min: typing.Any | None
1451
+ :type min: float | None
1390
1452
  :param max: Max
1391
- :type max: typing.Any | None
1453
+ :type max: float | None
1392
1454
  :param viewmat: Matrix
1393
- :type viewmat: typing.Any | None
1455
+ :type viewmat: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
1394
1456
  :param center: Center
1395
- :type center: typing.Any | None
1457
+ :type center: collections.abc.Sequence[float] | mathutils.Vector | None
1396
1458
  """
1397
1459
 
1398
1460
  ...