fake-bge-module 20250104__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
5
|
-
import bpy.typing
|
|
4
|
+
import bpy._typing.rna_enums
|
|
6
5
|
import mathutils
|
|
7
6
|
|
|
8
7
|
def bbone_resize(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
8
|
execution_context: int | str | None = None,
|
|
11
9
|
undo: bool | None = None,
|
|
10
|
+
/,
|
|
12
11
|
*,
|
|
13
12
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
|
|
14
13
|
orient_type: str | None = "GLOBAL",
|
|
@@ -23,7 +22,6 @@ def bbone_resize(
|
|
|
23
22
|
):
|
|
24
23
|
"""Scale selected bendy bones display size
|
|
25
24
|
|
|
26
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
27
25
|
:type execution_context: int | str | None
|
|
28
26
|
:type undo: bool | None
|
|
29
27
|
:param value: Display Size
|
|
@@ -45,14 +43,15 @@ def bbone_resize(
|
|
|
45
43
|
"""
|
|
46
44
|
|
|
47
45
|
def bend(
|
|
48
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
49
46
|
execution_context: int | str | None = None,
|
|
50
47
|
undo: bool | None = None,
|
|
48
|
+
/,
|
|
51
49
|
*,
|
|
52
50
|
value: collections.abc.Iterable[float] | None = 0.0,
|
|
53
51
|
mirror: bool | None = False,
|
|
54
52
|
use_proportional_edit: bool | None = False,
|
|
55
|
-
proportional_edit_falloff: bpy.
|
|
53
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
54
|
+
| None = "SMOOTH",
|
|
56
55
|
proportional_size: float | None = 1.0,
|
|
57
56
|
use_proportional_connected: bool | None = False,
|
|
58
57
|
use_proportional_projected: bool | None = False,
|
|
@@ -68,7 +67,6 @@ def bend(
|
|
|
68
67
|
):
|
|
69
68
|
"""Bend selected items between the 3D cursor and the mouse
|
|
70
69
|
|
|
71
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
72
70
|
:type execution_context: int | str | None
|
|
73
71
|
:type undo: bool | None
|
|
74
72
|
:param value: Angle
|
|
@@ -78,7 +76,7 @@ def bend(
|
|
|
78
76
|
:param use_proportional_edit: Proportional Editing
|
|
79
77
|
:type use_proportional_edit: bool | None
|
|
80
78
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
81
|
-
:type proportional_edit_falloff: bpy.
|
|
79
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
82
80
|
:param proportional_size: Proportional Size
|
|
83
81
|
:type proportional_size: float | None
|
|
84
82
|
:param use_proportional_connected: Connected
|
|
@@ -98,9 +96,9 @@ def bend(
|
|
|
98
96
|
"""
|
|
99
97
|
|
|
100
98
|
def create_orientation(
|
|
101
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
102
99
|
execution_context: int | str | None = None,
|
|
103
100
|
undo: bool | None = None,
|
|
101
|
+
/,
|
|
104
102
|
*,
|
|
105
103
|
name: str = "",
|
|
106
104
|
use_view: bool | None = False,
|
|
@@ -109,7 +107,6 @@ def create_orientation(
|
|
|
109
107
|
):
|
|
110
108
|
"""Create transformation orientation from selection
|
|
111
109
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
110
|
:type execution_context: int | str | None
|
|
114
111
|
:type undo: bool | None
|
|
115
112
|
:param name: Name, Name of the new custom orientation
|
|
@@ -123,21 +120,18 @@ def create_orientation(
|
|
|
123
120
|
"""
|
|
124
121
|
|
|
125
122
|
def delete_orientation(
|
|
126
|
-
|
|
127
|
-
execution_context: int | str | None = None,
|
|
128
|
-
undo: bool | None = None,
|
|
123
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
129
124
|
):
|
|
130
125
|
"""Delete transformation orientation
|
|
131
126
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
133
127
|
:type execution_context: int | str | None
|
|
134
128
|
:type undo: bool | None
|
|
135
129
|
"""
|
|
136
130
|
|
|
137
131
|
def edge_bevelweight(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
139
132
|
execution_context: int | str | None = None,
|
|
140
133
|
undo: bool | None = None,
|
|
134
|
+
/,
|
|
141
135
|
*,
|
|
142
136
|
value: float | None = 0.0,
|
|
143
137
|
snap: bool | None = False,
|
|
@@ -146,7 +140,6 @@ def edge_bevelweight(
|
|
|
146
140
|
):
|
|
147
141
|
"""Change the bevel weight of edges
|
|
148
142
|
|
|
149
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
150
143
|
:type execution_context: int | str | None
|
|
151
144
|
:type undo: bool | None
|
|
152
145
|
:param value: Factor
|
|
@@ -160,9 +153,9 @@ def edge_bevelweight(
|
|
|
160
153
|
"""
|
|
161
154
|
|
|
162
155
|
def edge_crease(
|
|
163
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
164
156
|
execution_context: int | str | None = None,
|
|
165
157
|
undo: bool | None = None,
|
|
158
|
+
/,
|
|
166
159
|
*,
|
|
167
160
|
value: float | None = 0.0,
|
|
168
161
|
snap: bool | None = False,
|
|
@@ -171,7 +164,6 @@ def edge_crease(
|
|
|
171
164
|
):
|
|
172
165
|
"""Change the crease of edges
|
|
173
166
|
|
|
174
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
175
167
|
:type execution_context: int | str | None
|
|
176
168
|
:type undo: bool | None
|
|
177
169
|
:param value: Factor
|
|
@@ -185,9 +177,9 @@ def edge_crease(
|
|
|
185
177
|
"""
|
|
186
178
|
|
|
187
179
|
def edge_slide(
|
|
188
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
189
180
|
execution_context: int | str | None = None,
|
|
190
181
|
undo: bool | None = None,
|
|
182
|
+
/,
|
|
191
183
|
*,
|
|
192
184
|
value: float | None = 0.0,
|
|
193
185
|
single_side: bool | None = False,
|
|
@@ -196,9 +188,9 @@ def edge_slide(
|
|
|
196
188
|
use_clamp: bool | None = True,
|
|
197
189
|
mirror: bool | None = False,
|
|
198
190
|
snap: bool | None = False,
|
|
199
|
-
snap_elements: set[bpy.
|
|
191
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
200
192
|
use_snap_project: bool | None = False,
|
|
201
|
-
snap_target: bpy.
|
|
193
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
202
194
|
use_snap_self: bool | None = True,
|
|
203
195
|
use_snap_edit: bool | None = True,
|
|
204
196
|
use_snap_nonedit: bool | None = True,
|
|
@@ -214,7 +206,6 @@ def edge_slide(
|
|
|
214
206
|
):
|
|
215
207
|
"""Slide an edge loop along a mesh
|
|
216
208
|
|
|
217
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
218
209
|
:type execution_context: int | str | None
|
|
219
210
|
:type undo: bool | None
|
|
220
211
|
:param value: Factor
|
|
@@ -232,11 +223,11 @@ def edge_slide(
|
|
|
232
223
|
:param snap: Use Snapping Options
|
|
233
224
|
:type snap: bool | None
|
|
234
225
|
:param snap_elements: Snap to Elements
|
|
235
|
-
:type snap_elements: set[bpy.
|
|
226
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
236
227
|
:param use_snap_project: Project Individual Elements
|
|
237
228
|
:type use_snap_project: bool | None
|
|
238
229
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
239
|
-
:type snap_target: bpy.
|
|
230
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
240
231
|
:param use_snap_self: Target: Include Active
|
|
241
232
|
:type use_snap_self: bool | None
|
|
242
233
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -255,22 +246,17 @@ def edge_slide(
|
|
|
255
246
|
:type use_accurate: bool | None
|
|
256
247
|
"""
|
|
257
248
|
|
|
258
|
-
def from_gizmo(
|
|
259
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
260
|
-
execution_context: int | str | None = None,
|
|
261
|
-
undo: bool | None = None,
|
|
262
|
-
):
|
|
249
|
+
def from_gizmo(execution_context: int | str | None = None, undo: bool | None = None):
|
|
263
250
|
"""Transform selected items by mode type
|
|
264
251
|
|
|
265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
266
252
|
:type execution_context: int | str | None
|
|
267
253
|
:type undo: bool | None
|
|
268
254
|
"""
|
|
269
255
|
|
|
270
256
|
def mirror(
|
|
271
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
272
257
|
execution_context: int | str | None = None,
|
|
273
258
|
undo: bool | None = None,
|
|
259
|
+
/,
|
|
274
260
|
*,
|
|
275
261
|
orient_type: str | None = "GLOBAL",
|
|
276
262
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -289,7 +275,6 @@ def mirror(
|
|
|
289
275
|
):
|
|
290
276
|
"""Mirror selected items around one or more axes
|
|
291
277
|
|
|
292
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
293
278
|
:type execution_context: int | str | None
|
|
294
279
|
:type undo: bool | None
|
|
295
280
|
:param orient_type: Orientation, Transformation orientation
|
|
@@ -311,14 +296,15 @@ def mirror(
|
|
|
311
296
|
"""
|
|
312
297
|
|
|
313
298
|
def push_pull(
|
|
314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
315
299
|
execution_context: int | str | None = None,
|
|
316
300
|
undo: bool | None = None,
|
|
301
|
+
/,
|
|
317
302
|
*,
|
|
318
303
|
value: float | None = 0.0,
|
|
319
304
|
mirror: bool | None = False,
|
|
320
305
|
use_proportional_edit: bool | None = False,
|
|
321
|
-
proportional_edit_falloff: bpy.
|
|
306
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
307
|
+
| None = "SMOOTH",
|
|
322
308
|
proportional_size: float | None = 1.0,
|
|
323
309
|
use_proportional_connected: bool | None = False,
|
|
324
310
|
use_proportional_projected: bool | None = False,
|
|
@@ -333,7 +319,6 @@ def push_pull(
|
|
|
333
319
|
):
|
|
334
320
|
"""Push/Pull selected items
|
|
335
321
|
|
|
336
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
337
322
|
:type execution_context: int | str | None
|
|
338
323
|
:type undo: bool | None
|
|
339
324
|
:param value: Distance
|
|
@@ -343,7 +328,7 @@ def push_pull(
|
|
|
343
328
|
:param use_proportional_edit: Proportional Editing
|
|
344
329
|
:type use_proportional_edit: bool | None
|
|
345
330
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
346
|
-
:type proportional_edit_falloff: bpy.
|
|
331
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
347
332
|
:param proportional_size: Proportional Size
|
|
348
333
|
:type proportional_size: float | None
|
|
349
334
|
:param use_proportional_connected: Connected
|
|
@@ -361,9 +346,9 @@ def push_pull(
|
|
|
361
346
|
"""
|
|
362
347
|
|
|
363
348
|
def resize(
|
|
364
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
365
349
|
execution_context: int | str | None = None,
|
|
366
350
|
undo: bool | None = None,
|
|
351
|
+
/,
|
|
367
352
|
*,
|
|
368
353
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
|
|
369
354
|
mouse_dir_constraint: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
@@ -379,14 +364,15 @@ def resize(
|
|
|
379
364
|
constraint_axis: collections.abc.Iterable[bool] | None = (False, False, False),
|
|
380
365
|
mirror: bool | None = False,
|
|
381
366
|
use_proportional_edit: bool | None = False,
|
|
382
|
-
proportional_edit_falloff: bpy.
|
|
367
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
368
|
+
| None = "SMOOTH",
|
|
383
369
|
proportional_size: float | None = 1.0,
|
|
384
370
|
use_proportional_connected: bool | None = False,
|
|
385
371
|
use_proportional_projected: bool | None = False,
|
|
386
372
|
snap: bool | None = False,
|
|
387
|
-
snap_elements: set[bpy.
|
|
373
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
388
374
|
use_snap_project: bool | None = False,
|
|
389
|
-
snap_target: bpy.
|
|
375
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
390
376
|
use_snap_self: bool | None = True,
|
|
391
377
|
use_snap_edit: bool | None = True,
|
|
392
378
|
use_snap_nonedit: bool | None = True,
|
|
@@ -410,7 +396,6 @@ def resize(
|
|
|
410
396
|
):
|
|
411
397
|
"""Scale (resize) selected items
|
|
412
398
|
|
|
413
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
414
399
|
:type execution_context: int | str | None
|
|
415
400
|
:type undo: bool | None
|
|
416
401
|
:param value: Scale
|
|
@@ -430,7 +415,7 @@ def resize(
|
|
|
430
415
|
:param use_proportional_edit: Proportional Editing
|
|
431
416
|
:type use_proportional_edit: bool | None
|
|
432
417
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
433
|
-
:type proportional_edit_falloff: bpy.
|
|
418
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
434
419
|
:param proportional_size: Proportional Size
|
|
435
420
|
:type proportional_size: float | None
|
|
436
421
|
:param use_proportional_connected: Connected
|
|
@@ -440,11 +425,11 @@ def resize(
|
|
|
440
425
|
:param snap: Use Snapping Options
|
|
441
426
|
:type snap: bool | None
|
|
442
427
|
:param snap_elements: Snap to Elements
|
|
443
|
-
:type snap_elements: set[bpy.
|
|
428
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
444
429
|
:param use_snap_project: Project Individual Elements
|
|
445
430
|
:type use_snap_project: bool | None
|
|
446
431
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
447
|
-
:type snap_target: bpy.
|
|
432
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
448
433
|
:param use_snap_self: Target: Include Active
|
|
449
434
|
:type use_snap_self: bool | None
|
|
450
435
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -472,12 +457,12 @@ def resize(
|
|
|
472
457
|
"""
|
|
473
458
|
|
|
474
459
|
def rotate(
|
|
475
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
476
460
|
execution_context: int | str | None = None,
|
|
477
461
|
undo: bool | None = None,
|
|
462
|
+
/,
|
|
478
463
|
*,
|
|
479
464
|
value: float | None = 0.0,
|
|
480
|
-
orient_axis: bpy.
|
|
465
|
+
orient_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Z",
|
|
481
466
|
orient_type: str | None = "GLOBAL",
|
|
482
467
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
483
468
|
| mathutils.Matrix
|
|
@@ -486,14 +471,15 @@ def rotate(
|
|
|
486
471
|
constraint_axis: collections.abc.Iterable[bool] | None = (False, False, False),
|
|
487
472
|
mirror: bool | None = False,
|
|
488
473
|
use_proportional_edit: bool | None = False,
|
|
489
|
-
proportional_edit_falloff: bpy.
|
|
474
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
475
|
+
| None = "SMOOTH",
|
|
490
476
|
proportional_size: float | None = 1.0,
|
|
491
477
|
use_proportional_connected: bool | None = False,
|
|
492
478
|
use_proportional_projected: bool | None = False,
|
|
493
479
|
snap: bool | None = False,
|
|
494
|
-
snap_elements: set[bpy.
|
|
480
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
495
481
|
use_snap_project: bool | None = False,
|
|
496
|
-
snap_target: bpy.
|
|
482
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
497
483
|
use_snap_self: bool | None = True,
|
|
498
484
|
use_snap_edit: bool | None = True,
|
|
499
485
|
use_snap_nonedit: bool | None = True,
|
|
@@ -514,13 +500,12 @@ def rotate(
|
|
|
514
500
|
):
|
|
515
501
|
"""Rotate selected items
|
|
516
502
|
|
|
517
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
518
503
|
:type execution_context: int | str | None
|
|
519
504
|
:type undo: bool | None
|
|
520
505
|
:param value: Angle
|
|
521
506
|
:type value: float | None
|
|
522
507
|
:param orient_axis: Axis
|
|
523
|
-
:type orient_axis: bpy.
|
|
508
|
+
:type orient_axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
524
509
|
:param orient_type: Orientation, Transformation orientation
|
|
525
510
|
:type orient_type: str | None
|
|
526
511
|
:param orient_matrix: Matrix
|
|
@@ -534,7 +519,7 @@ def rotate(
|
|
|
534
519
|
:param use_proportional_edit: Proportional Editing
|
|
535
520
|
:type use_proportional_edit: bool | None
|
|
536
521
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
537
|
-
:type proportional_edit_falloff: bpy.
|
|
522
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
538
523
|
:param proportional_size: Proportional Size
|
|
539
524
|
:type proportional_size: float | None
|
|
540
525
|
:param use_proportional_connected: Connected
|
|
@@ -544,11 +529,11 @@ def rotate(
|
|
|
544
529
|
:param snap: Use Snapping Options
|
|
545
530
|
:type snap: bool | None
|
|
546
531
|
:param snap_elements: Snap to Elements
|
|
547
|
-
:type snap_elements: set[bpy.
|
|
532
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
548
533
|
:param use_snap_project: Project Individual Elements
|
|
549
534
|
:type use_snap_project: bool | None
|
|
550
535
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
551
|
-
:type snap_target: bpy.
|
|
536
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
552
537
|
:param use_snap_self: Target: Include Active
|
|
553
538
|
:type use_snap_self: bool | None
|
|
554
539
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -570,12 +555,12 @@ def rotate(
|
|
|
570
555
|
"""
|
|
571
556
|
|
|
572
557
|
def rotate_normal(
|
|
573
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
574
558
|
execution_context: int | str | None = None,
|
|
575
559
|
undo: bool | None = None,
|
|
560
|
+
/,
|
|
576
561
|
*,
|
|
577
562
|
value: float | None = 0.0,
|
|
578
|
-
orient_axis: bpy.
|
|
563
|
+
orient_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Z",
|
|
579
564
|
orient_type: str | None = "GLOBAL",
|
|
580
565
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
581
566
|
| mathutils.Matrix
|
|
@@ -588,13 +573,12 @@ def rotate_normal(
|
|
|
588
573
|
):
|
|
589
574
|
"""Rotate split normal of selected items
|
|
590
575
|
|
|
591
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
592
576
|
:type execution_context: int | str | None
|
|
593
577
|
:type undo: bool | None
|
|
594
578
|
:param value: Angle
|
|
595
579
|
:type value: float | None
|
|
596
580
|
:param orient_axis: Axis
|
|
597
|
-
:type orient_axis: bpy.
|
|
581
|
+
:type orient_axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
598
582
|
:param orient_type: Orientation, Transformation orientation
|
|
599
583
|
:type orient_type: str | None
|
|
600
584
|
:param orient_matrix: Matrix
|
|
@@ -612,15 +596,14 @@ def rotate_normal(
|
|
|
612
596
|
"""
|
|
613
597
|
|
|
614
598
|
def select_orientation(
|
|
615
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
616
599
|
execution_context: int | str | None = None,
|
|
617
600
|
undo: bool | None = None,
|
|
601
|
+
/,
|
|
618
602
|
*,
|
|
619
603
|
orientation: str | None = "GLOBAL",
|
|
620
604
|
):
|
|
621
605
|
"""Select transformation orientation
|
|
622
606
|
|
|
623
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
624
607
|
:type execution_context: int | str | None
|
|
625
608
|
:type undo: bool | None
|
|
626
609
|
:param orientation: Orientation, Transformation orientation
|
|
@@ -628,9 +611,9 @@ def select_orientation(
|
|
|
628
611
|
"""
|
|
629
612
|
|
|
630
613
|
def seq_slide(
|
|
631
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
632
614
|
execution_context: int | str | None = None,
|
|
633
615
|
undo: bool | None = None,
|
|
616
|
+
/,
|
|
634
617
|
*,
|
|
635
618
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
636
619
|
use_restore_handle_selection: bool | None = False,
|
|
@@ -641,7 +624,6 @@ def seq_slide(
|
|
|
641
624
|
):
|
|
642
625
|
"""Slide a sequence strip in time
|
|
643
626
|
|
|
644
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
645
627
|
:type execution_context: int | str | None
|
|
646
628
|
:type undo: bool | None
|
|
647
629
|
:param value: Offset
|
|
@@ -659,13 +641,13 @@ def seq_slide(
|
|
|
659
641
|
"""
|
|
660
642
|
|
|
661
643
|
def shear(
|
|
662
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
663
644
|
execution_context: int | str | None = None,
|
|
664
645
|
undo: bool | None = None,
|
|
646
|
+
/,
|
|
665
647
|
*,
|
|
666
648
|
value: float | None = 0.0,
|
|
667
|
-
orient_axis: bpy.
|
|
668
|
-
orient_axis_ortho: bpy.
|
|
649
|
+
orient_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Z",
|
|
650
|
+
orient_axis_ortho: bpy._typing.rna_enums.AxisXyzItems | None = "X",
|
|
669
651
|
orient_type: str | None = "GLOBAL",
|
|
670
652
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
671
653
|
| mathutils.Matrix
|
|
@@ -673,7 +655,8 @@ def shear(
|
|
|
673
655
|
orient_matrix_type: str | None = "GLOBAL",
|
|
674
656
|
mirror: bool | None = False,
|
|
675
657
|
use_proportional_edit: bool | None = False,
|
|
676
|
-
proportional_edit_falloff: bpy.
|
|
658
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
659
|
+
| None = "SMOOTH",
|
|
677
660
|
proportional_size: float | None = 1.0,
|
|
678
661
|
use_proportional_connected: bool | None = False,
|
|
679
662
|
use_proportional_projected: bool | None = False,
|
|
@@ -684,15 +667,14 @@ def shear(
|
|
|
684
667
|
):
|
|
685
668
|
"""Shear selected items along the given axis
|
|
686
669
|
|
|
687
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
688
670
|
:type execution_context: int | str | None
|
|
689
671
|
:type undo: bool | None
|
|
690
672
|
:param value: Offset
|
|
691
673
|
:type value: float | None
|
|
692
674
|
:param orient_axis: Axis
|
|
693
|
-
:type orient_axis: bpy.
|
|
675
|
+
:type orient_axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
694
676
|
:param orient_axis_ortho: Axis Ortho
|
|
695
|
-
:type orient_axis_ortho: bpy.
|
|
677
|
+
:type orient_axis_ortho: bpy._typing.rna_enums.AxisXyzItems | None
|
|
696
678
|
:param orient_type: Orientation, Transformation orientation
|
|
697
679
|
:type orient_type: str | None
|
|
698
680
|
:param orient_matrix: Matrix
|
|
@@ -704,7 +686,7 @@ def shear(
|
|
|
704
686
|
:param use_proportional_edit: Proportional Editing
|
|
705
687
|
:type use_proportional_edit: bool | None
|
|
706
688
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
707
|
-
:type proportional_edit_falloff: bpy.
|
|
689
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
708
690
|
:param proportional_size: Proportional Size
|
|
709
691
|
:type proportional_size: float | None
|
|
710
692
|
:param use_proportional_connected: Connected
|
|
@@ -722,15 +704,16 @@ def shear(
|
|
|
722
704
|
"""
|
|
723
705
|
|
|
724
706
|
def shrink_fatten(
|
|
725
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
726
707
|
execution_context: int | str | None = None,
|
|
727
708
|
undo: bool | None = None,
|
|
709
|
+
/,
|
|
728
710
|
*,
|
|
729
711
|
value: float | None = 0.0,
|
|
730
712
|
use_even_offset: bool | None = False,
|
|
731
713
|
mirror: bool | None = False,
|
|
732
714
|
use_proportional_edit: bool | None = False,
|
|
733
|
-
proportional_edit_falloff: bpy.
|
|
715
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
716
|
+
| None = "SMOOTH",
|
|
734
717
|
proportional_size: float | None = 1.0,
|
|
735
718
|
use_proportional_connected: bool | None = False,
|
|
736
719
|
use_proportional_projected: bool | None = False,
|
|
@@ -740,7 +723,6 @@ def shrink_fatten(
|
|
|
740
723
|
):
|
|
741
724
|
"""Shrink/fatten selected vertices along normals
|
|
742
725
|
|
|
743
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
744
726
|
:type execution_context: int | str | None
|
|
745
727
|
:type undo: bool | None
|
|
746
728
|
:param value: Offset
|
|
@@ -752,7 +734,7 @@ def shrink_fatten(
|
|
|
752
734
|
:param use_proportional_edit: Proportional Editing
|
|
753
735
|
:type use_proportional_edit: bool | None
|
|
754
736
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
755
|
-
:type proportional_edit_falloff: bpy.
|
|
737
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
756
738
|
:param proportional_size: Proportional Size
|
|
757
739
|
:type proportional_size: float | None
|
|
758
740
|
:param use_proportional_connected: Connected
|
|
@@ -768,9 +750,9 @@ def shrink_fatten(
|
|
|
768
750
|
"""
|
|
769
751
|
|
|
770
752
|
def skin_resize(
|
|
771
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
772
753
|
execution_context: int | str | None = None,
|
|
773
754
|
undo: bool | None = None,
|
|
755
|
+
/,
|
|
774
756
|
*,
|
|
775
757
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (1.0, 1.0, 1.0),
|
|
776
758
|
orient_type: str | None = "GLOBAL",
|
|
@@ -781,14 +763,15 @@ def skin_resize(
|
|
|
781
763
|
constraint_axis: collections.abc.Iterable[bool] | None = (False, False, False),
|
|
782
764
|
mirror: bool | None = False,
|
|
783
765
|
use_proportional_edit: bool | None = False,
|
|
784
|
-
proportional_edit_falloff: bpy.
|
|
766
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
767
|
+
| None = "SMOOTH",
|
|
785
768
|
proportional_size: float | None = 1.0,
|
|
786
769
|
use_proportional_connected: bool | None = False,
|
|
787
770
|
use_proportional_projected: bool | None = False,
|
|
788
771
|
snap: bool | None = False,
|
|
789
|
-
snap_elements: set[bpy.
|
|
772
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
790
773
|
use_snap_project: bool | None = False,
|
|
791
|
-
snap_target: bpy.
|
|
774
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
792
775
|
use_snap_self: bool | None = True,
|
|
793
776
|
use_snap_edit: bool | None = True,
|
|
794
777
|
use_snap_nonedit: bool | None = True,
|
|
@@ -803,7 +786,6 @@ def skin_resize(
|
|
|
803
786
|
):
|
|
804
787
|
"""Scale selected vertices' skin radii
|
|
805
788
|
|
|
806
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
807
789
|
:type execution_context: int | str | None
|
|
808
790
|
:type undo: bool | None
|
|
809
791
|
:param value: Scale
|
|
@@ -821,7 +803,7 @@ def skin_resize(
|
|
|
821
803
|
:param use_proportional_edit: Proportional Editing
|
|
822
804
|
:type use_proportional_edit: bool | None
|
|
823
805
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
824
|
-
:type proportional_edit_falloff: bpy.
|
|
806
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
825
807
|
:param proportional_size: Proportional Size
|
|
826
808
|
:type proportional_size: float | None
|
|
827
809
|
:param use_proportional_connected: Connected
|
|
@@ -831,11 +813,11 @@ def skin_resize(
|
|
|
831
813
|
:param snap: Use Snapping Options
|
|
832
814
|
:type snap: bool | None
|
|
833
815
|
:param snap_elements: Snap to Elements
|
|
834
|
-
:type snap_elements: set[bpy.
|
|
816
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
835
817
|
:param use_snap_project: Project Individual Elements
|
|
836
818
|
:type use_snap_project: bool | None
|
|
837
819
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
838
|
-
:type snap_target: bpy.
|
|
820
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
839
821
|
:param use_snap_self: Target: Include Active
|
|
840
822
|
:type use_snap_self: bool | None
|
|
841
823
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -853,14 +835,15 @@ def skin_resize(
|
|
|
853
835
|
"""
|
|
854
836
|
|
|
855
837
|
def tilt(
|
|
856
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
857
838
|
execution_context: int | str | None = None,
|
|
858
839
|
undo: bool | None = None,
|
|
840
|
+
/,
|
|
859
841
|
*,
|
|
860
842
|
value: float | None = 0.0,
|
|
861
843
|
mirror: bool | None = False,
|
|
862
844
|
use_proportional_edit: bool | None = False,
|
|
863
|
-
proportional_edit_falloff: bpy.
|
|
845
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
846
|
+
| None = "SMOOTH",
|
|
864
847
|
proportional_size: float | None = 1.0,
|
|
865
848
|
use_proportional_connected: bool | None = False,
|
|
866
849
|
use_proportional_projected: bool | None = False,
|
|
@@ -870,7 +853,6 @@ def tilt(
|
|
|
870
853
|
):
|
|
871
854
|
"""Tilt selected control vertices of 3D curve
|
|
872
855
|
|
|
873
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
874
856
|
:type execution_context: int | str | None
|
|
875
857
|
:type undo: bool | None
|
|
876
858
|
:param value: Angle
|
|
@@ -880,7 +862,7 @@ def tilt(
|
|
|
880
862
|
:param use_proportional_edit: Proportional Editing
|
|
881
863
|
:type use_proportional_edit: bool | None
|
|
882
864
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
883
|
-
:type proportional_edit_falloff: bpy.
|
|
865
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
884
866
|
:param proportional_size: Proportional Size
|
|
885
867
|
:type proportional_size: float | None
|
|
886
868
|
:param use_proportional_connected: Connected
|
|
@@ -896,14 +878,15 @@ def tilt(
|
|
|
896
878
|
"""
|
|
897
879
|
|
|
898
880
|
def tosphere(
|
|
899
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
900
881
|
execution_context: int | str | None = None,
|
|
901
882
|
undo: bool | None = None,
|
|
883
|
+
/,
|
|
902
884
|
*,
|
|
903
885
|
value: float | None = 0.0,
|
|
904
886
|
mirror: bool | None = False,
|
|
905
887
|
use_proportional_edit: bool | None = False,
|
|
906
|
-
proportional_edit_falloff: bpy.
|
|
888
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
889
|
+
| None = "SMOOTH",
|
|
907
890
|
proportional_size: float | None = 1.0,
|
|
908
891
|
use_proportional_connected: bool | None = False,
|
|
909
892
|
use_proportional_projected: bool | None = False,
|
|
@@ -919,7 +902,6 @@ def tosphere(
|
|
|
919
902
|
):
|
|
920
903
|
"""Move selected items outward in a spherical shape around geometric center
|
|
921
904
|
|
|
922
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
923
905
|
:type execution_context: int | str | None
|
|
924
906
|
:type undo: bool | None
|
|
925
907
|
:param value: Factor
|
|
@@ -929,7 +911,7 @@ def tosphere(
|
|
|
929
911
|
:param use_proportional_edit: Proportional Editing
|
|
930
912
|
:type use_proportional_edit: bool | None
|
|
931
913
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
932
|
-
:type proportional_edit_falloff: bpy.
|
|
914
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
933
915
|
:param proportional_size: Proportional Size
|
|
934
916
|
:type proportional_size: float | None
|
|
935
917
|
:param use_proportional_connected: Connected
|
|
@@ -949,14 +931,15 @@ def tosphere(
|
|
|
949
931
|
"""
|
|
950
932
|
|
|
951
933
|
def trackball(
|
|
952
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
953
934
|
execution_context: int | str | None = None,
|
|
954
935
|
undo: bool | None = None,
|
|
936
|
+
/,
|
|
955
937
|
*,
|
|
956
938
|
value: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
957
939
|
mirror: bool | None = False,
|
|
958
940
|
use_proportional_edit: bool | None = False,
|
|
959
|
-
proportional_edit_falloff: bpy.
|
|
941
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
942
|
+
| None = "SMOOTH",
|
|
960
943
|
proportional_size: float | None = 1.0,
|
|
961
944
|
use_proportional_connected: bool | None = False,
|
|
962
945
|
use_proportional_projected: bool | None = False,
|
|
@@ -972,7 +955,6 @@ def trackball(
|
|
|
972
955
|
):
|
|
973
956
|
"""Trackball style rotation of selected items
|
|
974
957
|
|
|
975
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
976
958
|
:type execution_context: int | str | None
|
|
977
959
|
:type undo: bool | None
|
|
978
960
|
:param value: Angle
|
|
@@ -982,7 +964,7 @@ def trackball(
|
|
|
982
964
|
:param use_proportional_edit: Proportional Editing
|
|
983
965
|
:type use_proportional_edit: bool | None
|
|
984
966
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
985
|
-
:type proportional_edit_falloff: bpy.
|
|
967
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
986
968
|
:param proportional_size: Proportional Size
|
|
987
969
|
:type proportional_size: float | None
|
|
988
970
|
:param use_proportional_connected: Connected
|
|
@@ -1002,34 +984,36 @@ def trackball(
|
|
|
1002
984
|
"""
|
|
1003
985
|
|
|
1004
986
|
def transform(
|
|
1005
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1006
987
|
execution_context: int | str | None = None,
|
|
1007
988
|
undo: bool | None = None,
|
|
989
|
+
/,
|
|
1008
990
|
*,
|
|
1009
|
-
mode: bpy.
|
|
991
|
+
mode: bpy._typing.rna_enums.TransformModeTypeItems | None = "TRANSLATION",
|
|
1010
992
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
1011
993
|
0.0,
|
|
1012
994
|
0.0,
|
|
1013
995
|
0.0,
|
|
1014
996
|
0.0,
|
|
1015
997
|
),
|
|
1016
|
-
orient_axis: bpy.
|
|
1017
|
-
orient_type: bpy.
|
|
998
|
+
orient_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Z",
|
|
999
|
+
orient_type: bpy._typing.rna_enums.TransformOrientationItems | None = "GLOBAL",
|
|
1018
1000
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1019
1001
|
| mathutils.Matrix
|
|
1020
1002
|
| None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
|
|
1021
|
-
orient_matrix_type: bpy.
|
|
1003
|
+
orient_matrix_type: bpy._typing.rna_enums.TransformOrientationItems
|
|
1004
|
+
| None = "GLOBAL",
|
|
1022
1005
|
constraint_axis: collections.abc.Iterable[bool] | None = (False, False, False),
|
|
1023
1006
|
mirror: bool | None = False,
|
|
1024
1007
|
use_proportional_edit: bool | None = False,
|
|
1025
|
-
proportional_edit_falloff: bpy.
|
|
1008
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
1009
|
+
| None = "SMOOTH",
|
|
1026
1010
|
proportional_size: float | None = 1.0,
|
|
1027
1011
|
use_proportional_connected: bool | None = False,
|
|
1028
1012
|
use_proportional_projected: bool | None = False,
|
|
1029
1013
|
snap: bool | None = False,
|
|
1030
|
-
snap_elements: set[bpy.
|
|
1014
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
1031
1015
|
use_snap_project: bool | None = False,
|
|
1032
|
-
snap_target: bpy.
|
|
1016
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
1033
1017
|
use_snap_self: bool | None = True,
|
|
1034
1018
|
use_snap_edit: bool | None = True,
|
|
1035
1019
|
use_snap_nonedit: bool | None = True,
|
|
@@ -1060,21 +1044,20 @@ def transform(
|
|
|
1060
1044
|
):
|
|
1061
1045
|
"""Transform selected items by mode type
|
|
1062
1046
|
|
|
1063
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1064
1047
|
:type execution_context: int | str | None
|
|
1065
1048
|
:type undo: bool | None
|
|
1066
1049
|
:param mode: Mode
|
|
1067
|
-
:type mode: bpy.
|
|
1050
|
+
:type mode: bpy._typing.rna_enums.TransformModeTypeItems | None
|
|
1068
1051
|
:param value: Values
|
|
1069
1052
|
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1070
1053
|
:param orient_axis: Axis
|
|
1071
|
-
:type orient_axis: bpy.
|
|
1054
|
+
:type orient_axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
1072
1055
|
:param orient_type: Orientation, Transformation orientation
|
|
1073
|
-
:type orient_type: bpy.
|
|
1056
|
+
:type orient_type: bpy._typing.rna_enums.TransformOrientationItems | None
|
|
1074
1057
|
:param orient_matrix: Matrix
|
|
1075
1058
|
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
1076
1059
|
:param orient_matrix_type: Matrix Orientation
|
|
1077
|
-
:type orient_matrix_type: bpy.
|
|
1060
|
+
:type orient_matrix_type: bpy._typing.rna_enums.TransformOrientationItems | None
|
|
1078
1061
|
:param constraint_axis: Constraint Axis
|
|
1079
1062
|
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
1080
1063
|
:param mirror: Mirror Editing
|
|
@@ -1082,7 +1065,7 @@ def transform(
|
|
|
1082
1065
|
:param use_proportional_edit: Proportional Editing
|
|
1083
1066
|
:type use_proportional_edit: bool | None
|
|
1084
1067
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1085
|
-
:type proportional_edit_falloff: bpy.
|
|
1068
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
1086
1069
|
:param proportional_size: Proportional Size
|
|
1087
1070
|
:type proportional_size: float | None
|
|
1088
1071
|
:param use_proportional_connected: Connected
|
|
@@ -1092,11 +1075,11 @@ def transform(
|
|
|
1092
1075
|
:param snap: Use Snapping Options
|
|
1093
1076
|
:type snap: bool | None
|
|
1094
1077
|
:param snap_elements: Snap to Elements
|
|
1095
|
-
:type snap_elements: set[bpy.
|
|
1078
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
1096
1079
|
:param use_snap_project: Project Individual Elements
|
|
1097
1080
|
:type use_snap_project: bool | None
|
|
1098
1081
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1099
|
-
:type snap_target: bpy.
|
|
1082
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
1100
1083
|
:param use_snap_self: Target: Include Active
|
|
1101
1084
|
:type use_snap_self: bool | None
|
|
1102
1085
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -1130,27 +1113,29 @@ def transform(
|
|
|
1130
1113
|
"""
|
|
1131
1114
|
|
|
1132
1115
|
def translate(
|
|
1133
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1134
1116
|
execution_context: int | str | None = None,
|
|
1135
1117
|
undo: bool | None = None,
|
|
1118
|
+
/,
|
|
1136
1119
|
*,
|
|
1137
1120
|
value: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
1138
|
-
orient_type: bpy.
|
|
1121
|
+
orient_type: bpy._typing.rna_enums.TransformOrientationItems | None = "GLOBAL",
|
|
1139
1122
|
orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1140
1123
|
| mathutils.Matrix
|
|
1141
1124
|
| None = ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0)),
|
|
1142
|
-
orient_matrix_type: bpy.
|
|
1125
|
+
orient_matrix_type: bpy._typing.rna_enums.TransformOrientationItems
|
|
1126
|
+
| None = "GLOBAL",
|
|
1143
1127
|
constraint_axis: collections.abc.Iterable[bool] | None = (False, False, False),
|
|
1144
1128
|
mirror: bool | None = False,
|
|
1145
1129
|
use_proportional_edit: bool | None = False,
|
|
1146
|
-
proportional_edit_falloff: bpy.
|
|
1130
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
1131
|
+
| None = "SMOOTH",
|
|
1147
1132
|
proportional_size: float | None = 1.0,
|
|
1148
1133
|
use_proportional_connected: bool | None = False,
|
|
1149
1134
|
use_proportional_projected: bool | None = False,
|
|
1150
1135
|
snap: bool | None = False,
|
|
1151
|
-
snap_elements: set[bpy.
|
|
1136
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
1152
1137
|
use_snap_project: bool | None = False,
|
|
1153
|
-
snap_target: bpy.
|
|
1138
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
1154
1139
|
use_snap_self: bool | None = True,
|
|
1155
1140
|
use_snap_edit: bool | None = True,
|
|
1156
1141
|
use_snap_nonedit: bool | None = True,
|
|
@@ -1178,17 +1163,16 @@ def translate(
|
|
|
1178
1163
|
):
|
|
1179
1164
|
"""Move selected items
|
|
1180
1165
|
|
|
1181
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1182
1166
|
:type execution_context: int | str | None
|
|
1183
1167
|
:type undo: bool | None
|
|
1184
1168
|
:param value: Move
|
|
1185
1169
|
:type value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1186
1170
|
:param orient_type: Orientation, Transformation orientation
|
|
1187
|
-
:type orient_type: bpy.
|
|
1171
|
+
:type orient_type: bpy._typing.rna_enums.TransformOrientationItems | None
|
|
1188
1172
|
:param orient_matrix: Matrix
|
|
1189
1173
|
:type orient_matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
1190
1174
|
:param orient_matrix_type: Matrix Orientation
|
|
1191
|
-
:type orient_matrix_type: bpy.
|
|
1175
|
+
:type orient_matrix_type: bpy._typing.rna_enums.TransformOrientationItems | None
|
|
1192
1176
|
:param constraint_axis: Constraint Axis
|
|
1193
1177
|
:type constraint_axis: collections.abc.Iterable[bool] | None
|
|
1194
1178
|
:param mirror: Mirror Editing
|
|
@@ -1196,7 +1180,7 @@ def translate(
|
|
|
1196
1180
|
:param use_proportional_edit: Proportional Editing
|
|
1197
1181
|
:type use_proportional_edit: bool | None
|
|
1198
1182
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1199
|
-
:type proportional_edit_falloff: bpy.
|
|
1183
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
1200
1184
|
:param proportional_size: Proportional Size
|
|
1201
1185
|
:type proportional_size: float | None
|
|
1202
1186
|
:param use_proportional_connected: Connected
|
|
@@ -1206,11 +1190,11 @@ def translate(
|
|
|
1206
1190
|
:param snap: Use Snapping Options
|
|
1207
1191
|
:type snap: bool | None
|
|
1208
1192
|
:param snap_elements: Snap to Elements
|
|
1209
|
-
:type snap_elements: set[bpy.
|
|
1193
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
1210
1194
|
:param use_snap_project: Project Individual Elements
|
|
1211
1195
|
:type use_snap_project: bool | None
|
|
1212
1196
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1213
|
-
:type snap_target: bpy.
|
|
1197
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
1214
1198
|
:param use_snap_self: Target: Include Active
|
|
1215
1199
|
:type use_snap_self: bool | None
|
|
1216
1200
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -1246,9 +1230,9 @@ def translate(
|
|
|
1246
1230
|
"""
|
|
1247
1231
|
|
|
1248
1232
|
def vert_crease(
|
|
1249
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1250
1233
|
execution_context: int | str | None = None,
|
|
1251
1234
|
undo: bool | None = None,
|
|
1235
|
+
/,
|
|
1252
1236
|
*,
|
|
1253
1237
|
value: float | None = 0.0,
|
|
1254
1238
|
snap: bool | None = False,
|
|
@@ -1257,7 +1241,6 @@ def vert_crease(
|
|
|
1257
1241
|
):
|
|
1258
1242
|
"""Change the crease of vertices
|
|
1259
1243
|
|
|
1260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1261
1244
|
:type execution_context: int | str | None
|
|
1262
1245
|
:type undo: bool | None
|
|
1263
1246
|
:param value: Factor
|
|
@@ -1271,9 +1254,9 @@ def vert_crease(
|
|
|
1271
1254
|
"""
|
|
1272
1255
|
|
|
1273
1256
|
def vert_slide(
|
|
1274
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1275
1257
|
execution_context: int | str | None = None,
|
|
1276
1258
|
undo: bool | None = None,
|
|
1259
|
+
/,
|
|
1277
1260
|
*,
|
|
1278
1261
|
value: float | None = 0.0,
|
|
1279
1262
|
use_even: bool | None = False,
|
|
@@ -1281,9 +1264,9 @@ def vert_slide(
|
|
|
1281
1264
|
use_clamp: bool | None = True,
|
|
1282
1265
|
mirror: bool | None = False,
|
|
1283
1266
|
snap: bool | None = False,
|
|
1284
|
-
snap_elements: set[bpy.
|
|
1267
|
+
snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None = {"INCREMENT"},
|
|
1285
1268
|
use_snap_project: bool | None = False,
|
|
1286
|
-
snap_target: bpy.
|
|
1269
|
+
snap_target: bpy._typing.rna_enums.SnapSourceItems | None = "CLOSEST",
|
|
1287
1270
|
use_snap_self: bool | None = True,
|
|
1288
1271
|
use_snap_edit: bool | None = True,
|
|
1289
1272
|
use_snap_nonedit: bool | None = True,
|
|
@@ -1299,7 +1282,6 @@ def vert_slide(
|
|
|
1299
1282
|
):
|
|
1300
1283
|
"""Slide a vertex along a mesh
|
|
1301
1284
|
|
|
1302
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1303
1285
|
:type execution_context: int | str | None
|
|
1304
1286
|
:type undo: bool | None
|
|
1305
1287
|
:param value: Factor
|
|
@@ -1315,11 +1297,11 @@ def vert_slide(
|
|
|
1315
1297
|
:param snap: Use Snapping Options
|
|
1316
1298
|
:type snap: bool | None
|
|
1317
1299
|
:param snap_elements: Snap to Elements
|
|
1318
|
-
:type snap_elements: set[bpy.
|
|
1300
|
+
:type snap_elements: set[bpy._typing.rna_enums.SnapElementItems] | None
|
|
1319
1301
|
:param use_snap_project: Project Individual Elements
|
|
1320
1302
|
:type use_snap_project: bool | None
|
|
1321
1303
|
:param snap_target: Snap Base, Point on source that will snap to target
|
|
1322
|
-
:type snap_target: bpy.
|
|
1304
|
+
:type snap_target: bpy._typing.rna_enums.SnapSourceItems | None
|
|
1323
1305
|
:param use_snap_self: Target: Include Active
|
|
1324
1306
|
:type use_snap_self: bool | None
|
|
1325
1307
|
:param use_snap_edit: Target: Include Edit
|
|
@@ -1339,9 +1321,9 @@ def vert_slide(
|
|
|
1339
1321
|
"""
|
|
1340
1322
|
|
|
1341
1323
|
def vertex_random(
|
|
1342
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1343
1324
|
execution_context: int | str | None = None,
|
|
1344
1325
|
undo: bool | None = None,
|
|
1326
|
+
/,
|
|
1345
1327
|
*,
|
|
1346
1328
|
offset: float | None = 0.0,
|
|
1347
1329
|
uniform: float | None = 0.0,
|
|
@@ -1351,7 +1333,6 @@ def vertex_random(
|
|
|
1351
1333
|
):
|
|
1352
1334
|
"""Randomize vertices
|
|
1353
1335
|
|
|
1354
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1355
1336
|
:type execution_context: int | str | None
|
|
1356
1337
|
:type undo: bool | None
|
|
1357
1338
|
:param offset: Amount, Distance to offset
|
|
@@ -1367,9 +1348,9 @@ def vertex_random(
|
|
|
1367
1348
|
"""
|
|
1368
1349
|
|
|
1369
1350
|
def vertex_warp(
|
|
1370
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1371
1351
|
execution_context: int | str | None = None,
|
|
1372
1352
|
undo: bool | None = None,
|
|
1353
|
+
/,
|
|
1373
1354
|
*,
|
|
1374
1355
|
warp_angle: float | None = 6.28319,
|
|
1375
1356
|
offset_angle: float | None = 0.0,
|
|
@@ -1387,7 +1368,6 @@ def vertex_warp(
|
|
|
1387
1368
|
):
|
|
1388
1369
|
"""Warp vertices around the cursor
|
|
1389
1370
|
|
|
1390
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1391
1371
|
:type execution_context: int | str | None
|
|
1392
1372
|
:type undo: bool | None
|
|
1393
1373
|
:param warp_angle: Warp Angle, Amount to warp about the cursor
|