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/mesh/__init__.pyi
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy._typing.rna_enums
|
|
4
5
|
import bpy.ops.transform
|
|
5
|
-
import bpy.types
|
|
6
|
-
import bpy.typing
|
|
7
6
|
import mathutils
|
|
8
7
|
|
|
9
8
|
def attribute_set(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
9
|
execution_context: int | str | None = None,
|
|
12
10
|
undo: bool | None = None,
|
|
11
|
+
/,
|
|
13
12
|
*,
|
|
14
13
|
value_float: float | None = 0.0,
|
|
15
14
|
value_float_vector_2d: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
@@ -21,7 +20,6 @@ def attribute_set(
|
|
|
21
20
|
):
|
|
22
21
|
"""Set values of the active attribute for selected elements
|
|
23
22
|
|
|
24
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
25
23
|
:type execution_context: int | str | None
|
|
26
24
|
:type undo: bool | None
|
|
27
25
|
:param value_float: Value
|
|
@@ -41,9 +39,9 @@ def attribute_set(
|
|
|
41
39
|
"""
|
|
42
40
|
|
|
43
41
|
def average_normals(
|
|
44
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
45
42
|
execution_context: int | str | None = None,
|
|
46
43
|
undo: bool | None = None,
|
|
44
|
+
/,
|
|
47
45
|
*,
|
|
48
46
|
average_type: typing.Literal["CUSTOM_NORMAL", "FACE_AREA", "CORNER_ANGLE"]
|
|
49
47
|
| None = "CUSTOM_NORMAL",
|
|
@@ -52,7 +50,6 @@ def average_normals(
|
|
|
52
50
|
):
|
|
53
51
|
"""Average custom normals of selected vertices
|
|
54
52
|
|
|
55
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
56
53
|
:type execution_context: int | str | None
|
|
57
54
|
:type undo: bool | None
|
|
58
55
|
:param average_type: Type, Averaging method
|
|
@@ -73,15 +70,14 @@ def average_normals(
|
|
|
73
70
|
"""
|
|
74
71
|
|
|
75
72
|
def beautify_fill(
|
|
76
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
77
73
|
execution_context: int | str | None = None,
|
|
78
74
|
undo: bool | None = None,
|
|
75
|
+
/,
|
|
79
76
|
*,
|
|
80
77
|
angle_limit: float | None = 3.14159,
|
|
81
78
|
):
|
|
82
79
|
"""Rearrange some faces to try to get less degenerated geometry
|
|
83
80
|
|
|
84
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
85
81
|
:type execution_context: int | str | None
|
|
86
82
|
:type undo: bool | None
|
|
87
83
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -89,9 +85,9 @@ def beautify_fill(
|
|
|
89
85
|
"""
|
|
90
86
|
|
|
91
87
|
def bevel(
|
|
92
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
93
88
|
execution_context: int | str | None = None,
|
|
94
89
|
undo: bool | None = None,
|
|
90
|
+
/,
|
|
95
91
|
*,
|
|
96
92
|
offset_type: typing.Literal["OFFSET", "WIDTH", "DEPTH", "PERCENT", "ABSOLUTE"]
|
|
97
93
|
| None = "OFFSET",
|
|
@@ -117,7 +113,6 @@ def bevel(
|
|
|
117
113
|
):
|
|
118
114
|
"""Cut into selected items at an angle to create bevel or chamfer
|
|
119
115
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
121
116
|
:type execution_context: int | str | None
|
|
122
117
|
:type undo: bool | None
|
|
123
118
|
:param offset_type: Width Type, The method for determining the size of the bevel
|
|
@@ -221,9 +216,9 @@ def bevel(
|
|
|
221
216
|
"""
|
|
222
217
|
|
|
223
218
|
def bisect(
|
|
224
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
225
219
|
execution_context: int | str | None = None,
|
|
226
220
|
undo: bool | None = None,
|
|
221
|
+
/,
|
|
227
222
|
*,
|
|
228
223
|
plane_co: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
229
224
|
0.0,
|
|
@@ -248,7 +243,6 @@ def bisect(
|
|
|
248
243
|
):
|
|
249
244
|
"""Cut geometry along a plane (click-drag to define plane)
|
|
250
245
|
|
|
251
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
252
246
|
:type execution_context: int | str | None
|
|
253
247
|
:type undo: bool | None
|
|
254
248
|
:param plane_co: Plane Point, A point on the plane
|
|
@@ -278,9 +272,9 @@ def bisect(
|
|
|
278
272
|
"""
|
|
279
273
|
|
|
280
274
|
def blend_from_shape(
|
|
281
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
282
275
|
execution_context: int | str | None = None,
|
|
283
276
|
undo: bool | None = None,
|
|
277
|
+
/,
|
|
284
278
|
*,
|
|
285
279
|
shape: str | None = "",
|
|
286
280
|
blend: float | None = 1.0,
|
|
@@ -288,7 +282,6 @@ def blend_from_shape(
|
|
|
288
282
|
):
|
|
289
283
|
"""Blend in shape from a shape key
|
|
290
284
|
|
|
291
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
292
285
|
:type execution_context: int | str | None
|
|
293
286
|
:type undo: bool | None
|
|
294
287
|
:param shape: Shape, Shape key to use for blending
|
|
@@ -300,9 +293,9 @@ def blend_from_shape(
|
|
|
300
293
|
"""
|
|
301
294
|
|
|
302
295
|
def bridge_edge_loops(
|
|
303
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
304
296
|
execution_context: int | str | None = None,
|
|
305
297
|
undo: bool | None = None,
|
|
298
|
+
/,
|
|
306
299
|
*,
|
|
307
300
|
type: typing.Literal["SINGLE", "CLOSED", "PAIRS"] | None = "SINGLE",
|
|
308
301
|
use_merge: bool | None = False,
|
|
@@ -312,11 +305,11 @@ def bridge_edge_loops(
|
|
|
312
305
|
interpolation: typing.Literal["LINEAR", "PATH", "SURFACE"] | None = "PATH",
|
|
313
306
|
smoothness: float | None = 1.0,
|
|
314
307
|
profile_shape_factor: float | None = 0.0,
|
|
315
|
-
profile_shape: bpy.
|
|
308
|
+
profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
309
|
+
| None = "SMOOTH",
|
|
316
310
|
):
|
|
317
311
|
"""Create a bridge of faces between two or more selected edge loops
|
|
318
312
|
|
|
319
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
320
313
|
:type execution_context: int | str | None
|
|
321
314
|
:type undo: bool | None
|
|
322
315
|
:param type: Connect Loops, Method of bridging multiple loops
|
|
@@ -336,31 +329,27 @@ def bridge_edge_loops(
|
|
|
336
329
|
:param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
|
|
337
330
|
:type profile_shape_factor: float | None
|
|
338
331
|
:param profile_shape: Profile Shape, Shape of the profile
|
|
339
|
-
:type profile_shape: bpy.
|
|
332
|
+
:type profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
340
333
|
"""
|
|
341
334
|
|
|
342
335
|
def colors_reverse(
|
|
343
|
-
|
|
344
|
-
execution_context: int | str | None = None,
|
|
345
|
-
undo: bool | None = None,
|
|
336
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
346
337
|
):
|
|
347
338
|
"""Flip direction of face corner color attribute inside faces
|
|
348
339
|
|
|
349
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
350
340
|
:type execution_context: int | str | None
|
|
351
341
|
:type undo: bool | None
|
|
352
342
|
"""
|
|
353
343
|
|
|
354
344
|
def colors_rotate(
|
|
355
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
356
345
|
execution_context: int | str | None = None,
|
|
357
346
|
undo: bool | None = None,
|
|
347
|
+
/,
|
|
358
348
|
*,
|
|
359
349
|
use_ccw: bool | None = False,
|
|
360
350
|
):
|
|
361
351
|
"""Rotate face corner color attribute inside faces
|
|
362
352
|
|
|
363
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
364
353
|
:type execution_context: int | str | None
|
|
365
354
|
:type undo: bool | None
|
|
366
355
|
:param use_ccw: Counter Clockwise
|
|
@@ -368,9 +357,9 @@ def colors_rotate(
|
|
|
368
357
|
"""
|
|
369
358
|
|
|
370
359
|
def convex_hull(
|
|
371
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
372
360
|
execution_context: int | str | None = None,
|
|
373
361
|
undo: bool | None = None,
|
|
362
|
+
/,
|
|
374
363
|
*,
|
|
375
364
|
delete_unused: bool | None = True,
|
|
376
365
|
use_existing_faces: bool | None = True,
|
|
@@ -388,7 +377,6 @@ def convex_hull(
|
|
|
388
377
|
):
|
|
389
378
|
"""Enclose selected vertices in a convex polyhedron
|
|
390
379
|
|
|
391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
392
380
|
:type execution_context: int | str | None
|
|
393
381
|
:type undo: bool | None
|
|
394
382
|
:param delete_unused: Delete Unused, Delete selected elements that are not used by the hull
|
|
@@ -420,80 +408,64 @@ def convex_hull(
|
|
|
420
408
|
"""
|
|
421
409
|
|
|
422
410
|
def customdata_custom_splitnormals_add(
|
|
423
|
-
|
|
424
|
-
execution_context: int | str | None = None,
|
|
425
|
-
undo: bool | None = None,
|
|
411
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
426
412
|
):
|
|
427
413
|
"""Add a custom split normals layer, if none exists yet
|
|
428
414
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
415
|
:type execution_context: int | str | None
|
|
431
416
|
:type undo: bool | None
|
|
432
417
|
"""
|
|
433
418
|
|
|
434
419
|
def customdata_custom_splitnormals_clear(
|
|
435
|
-
|
|
436
|
-
execution_context: int | str | None = None,
|
|
437
|
-
undo: bool | None = None,
|
|
420
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
438
421
|
):
|
|
439
422
|
"""Remove the custom split normals layer, if it exists
|
|
440
423
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
424
|
:type execution_context: int | str | None
|
|
443
425
|
:type undo: bool | None
|
|
444
426
|
"""
|
|
445
427
|
|
|
446
428
|
def customdata_mask_clear(
|
|
447
|
-
|
|
448
|
-
execution_context: int | str | None = None,
|
|
449
|
-
undo: bool | None = None,
|
|
429
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
450
430
|
):
|
|
451
431
|
"""Clear vertex sculpt masking data from the mesh
|
|
452
432
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
454
433
|
:type execution_context: int | str | None
|
|
455
434
|
:type undo: bool | None
|
|
456
435
|
"""
|
|
457
436
|
|
|
458
437
|
def customdata_skin_add(
|
|
459
|
-
|
|
460
|
-
execution_context: int | str | None = None,
|
|
461
|
-
undo: bool | None = None,
|
|
438
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
462
439
|
):
|
|
463
440
|
"""Add a vertex skin layer
|
|
464
441
|
|
|
465
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
466
442
|
:type execution_context: int | str | None
|
|
467
443
|
:type undo: bool | None
|
|
468
444
|
"""
|
|
469
445
|
|
|
470
446
|
def customdata_skin_clear(
|
|
471
|
-
|
|
472
|
-
execution_context: int | str | None = None,
|
|
473
|
-
undo: bool | None = None,
|
|
447
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
474
448
|
):
|
|
475
449
|
"""Clear vertex skin layer
|
|
476
450
|
|
|
477
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
478
451
|
:type execution_context: int | str | None
|
|
479
452
|
:type undo: bool | None
|
|
480
453
|
"""
|
|
481
454
|
|
|
482
455
|
def decimate(
|
|
483
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
484
456
|
execution_context: int | str | None = None,
|
|
485
457
|
undo: bool | None = None,
|
|
458
|
+
/,
|
|
486
459
|
*,
|
|
487
460
|
ratio: float | None = 1.0,
|
|
488
461
|
use_vertex_group: bool | None = False,
|
|
489
462
|
vertex_group_factor: float | None = 1.0,
|
|
490
463
|
invert_vertex_group: bool | None = False,
|
|
491
464
|
use_symmetry: bool | None = False,
|
|
492
|
-
symmetry_axis: bpy.
|
|
465
|
+
symmetry_axis: bpy._typing.rna_enums.AxisXyzItems | None = "Y",
|
|
493
466
|
):
|
|
494
467
|
"""Simplify geometry by collapsing edges
|
|
495
468
|
|
|
496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
497
469
|
:type execution_context: int | str | None
|
|
498
470
|
:type undo: bool | None
|
|
499
471
|
:param ratio: Ratio
|
|
@@ -507,20 +479,19 @@ def decimate(
|
|
|
507
479
|
:param use_symmetry: Symmetry, Maintain symmetry on an axis
|
|
508
480
|
:type use_symmetry: bool | None
|
|
509
481
|
:param symmetry_axis: Axis, Axis of symmetry
|
|
510
|
-
:type symmetry_axis: bpy.
|
|
482
|
+
:type symmetry_axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
511
483
|
"""
|
|
512
484
|
|
|
513
485
|
def delete(
|
|
514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
515
486
|
execution_context: int | str | None = None,
|
|
516
487
|
undo: bool | None = None,
|
|
488
|
+
/,
|
|
517
489
|
*,
|
|
518
490
|
type: typing.Literal["VERT", "EDGE", "FACE", "EDGE_FACE", "ONLY_FACE"]
|
|
519
491
|
| None = "VERT",
|
|
520
492
|
):
|
|
521
493
|
"""Delete selected vertices, edges or faces
|
|
522
494
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
524
495
|
:type execution_context: int | str | None
|
|
525
496
|
:type undo: bool | None
|
|
526
497
|
:param type: Type, Method used for deleting mesh data
|
|
@@ -528,15 +499,14 @@ def delete(
|
|
|
528
499
|
"""
|
|
529
500
|
|
|
530
501
|
def delete_edgeloop(
|
|
531
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
532
502
|
execution_context: int | str | None = None,
|
|
533
503
|
undo: bool | None = None,
|
|
504
|
+
/,
|
|
534
505
|
*,
|
|
535
506
|
use_face_split: bool | None = True,
|
|
536
507
|
):
|
|
537
508
|
"""Delete an edge loop by merging the faces on each side
|
|
538
509
|
|
|
539
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
540
510
|
:type execution_context: int | str | None
|
|
541
511
|
:type undo: bool | None
|
|
542
512
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -544,9 +514,9 @@ def delete_edgeloop(
|
|
|
544
514
|
"""
|
|
545
515
|
|
|
546
516
|
def delete_loose(
|
|
547
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
548
517
|
execution_context: int | str | None = None,
|
|
549
518
|
undo: bool | None = None,
|
|
519
|
+
/,
|
|
550
520
|
*,
|
|
551
521
|
use_verts: bool | None = True,
|
|
552
522
|
use_edges: bool | None = True,
|
|
@@ -554,7 +524,6 @@ def delete_loose(
|
|
|
554
524
|
):
|
|
555
525
|
"""Delete loose vertices, edges or faces
|
|
556
526
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
558
527
|
:type execution_context: int | str | None
|
|
559
528
|
:type undo: bool | None
|
|
560
529
|
:param use_verts: Vertices, Remove loose vertices
|
|
@@ -566,15 +535,14 @@ def delete_loose(
|
|
|
566
535
|
"""
|
|
567
536
|
|
|
568
537
|
def dissolve_degenerate(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
538
|
execution_context: int | str | None = None,
|
|
571
539
|
undo: bool | None = None,
|
|
540
|
+
/,
|
|
572
541
|
*,
|
|
573
542
|
threshold: float | None = 0.0001,
|
|
574
543
|
):
|
|
575
544
|
"""Dissolve zero area faces and zero length edges
|
|
576
545
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
546
|
:type execution_context: int | str | None
|
|
579
547
|
:type undo: bool | None
|
|
580
548
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -582,16 +550,15 @@ def dissolve_degenerate(
|
|
|
582
550
|
"""
|
|
583
551
|
|
|
584
552
|
def dissolve_edges(
|
|
585
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
586
553
|
execution_context: int | str | None = None,
|
|
587
554
|
undo: bool | None = None,
|
|
555
|
+
/,
|
|
588
556
|
*,
|
|
589
557
|
use_verts: bool | None = True,
|
|
590
558
|
use_face_split: bool | None = False,
|
|
591
559
|
):
|
|
592
560
|
"""Dissolve edges, merging faces
|
|
593
561
|
|
|
594
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
595
562
|
:type execution_context: int | str | None
|
|
596
563
|
:type undo: bool | None
|
|
597
564
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -601,15 +568,14 @@ def dissolve_edges(
|
|
|
601
568
|
"""
|
|
602
569
|
|
|
603
570
|
def dissolve_faces(
|
|
604
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
605
571
|
execution_context: int | str | None = None,
|
|
606
572
|
undo: bool | None = None,
|
|
573
|
+
/,
|
|
607
574
|
*,
|
|
608
575
|
use_verts: bool | None = False,
|
|
609
576
|
):
|
|
610
577
|
"""Dissolve faces
|
|
611
578
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
579
|
:type execution_context: int | str | None
|
|
614
580
|
:type undo: bool | None
|
|
615
581
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -617,17 +583,16 @@ def dissolve_faces(
|
|
|
617
583
|
"""
|
|
618
584
|
|
|
619
585
|
def dissolve_limited(
|
|
620
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
621
586
|
execution_context: int | str | None = None,
|
|
622
587
|
undo: bool | None = None,
|
|
588
|
+
/,
|
|
623
589
|
*,
|
|
624
590
|
angle_limit: float | None = 0.0872665,
|
|
625
591
|
use_dissolve_boundaries: bool | None = False,
|
|
626
|
-
delimit: set[bpy.
|
|
592
|
+
delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"NORMAL"},
|
|
627
593
|
):
|
|
628
594
|
"""Dissolve selected edges and vertices, limited by the angle of surrounding geometry
|
|
629
595
|
|
|
630
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
631
596
|
:type execution_context: int | str | None
|
|
632
597
|
:type undo: bool | None
|
|
633
598
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -635,13 +600,13 @@ def dissolve_limited(
|
|
|
635
600
|
:param use_dissolve_boundaries: All Boundaries, Dissolve all vertices in between face boundaries
|
|
636
601
|
:type use_dissolve_boundaries: bool | None
|
|
637
602
|
:param delimit: Delimit, Delimit dissolve operation
|
|
638
|
-
:type delimit: set[bpy.
|
|
603
|
+
:type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
|
|
639
604
|
"""
|
|
640
605
|
|
|
641
606
|
def dissolve_mode(
|
|
642
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
643
607
|
execution_context: int | str | None = None,
|
|
644
608
|
undo: bool | None = None,
|
|
609
|
+
/,
|
|
645
610
|
*,
|
|
646
611
|
use_verts: bool | None = False,
|
|
647
612
|
use_face_split: bool | None = False,
|
|
@@ -649,7 +614,6 @@ def dissolve_mode(
|
|
|
649
614
|
):
|
|
650
615
|
"""Dissolve geometry based on the selection mode
|
|
651
616
|
|
|
652
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
653
617
|
:type execution_context: int | str | None
|
|
654
618
|
:type undo: bool | None
|
|
655
619
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -661,16 +625,15 @@ def dissolve_mode(
|
|
|
661
625
|
"""
|
|
662
626
|
|
|
663
627
|
def dissolve_verts(
|
|
664
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
665
628
|
execution_context: int | str | None = None,
|
|
666
629
|
undo: bool | None = None,
|
|
630
|
+
/,
|
|
667
631
|
*,
|
|
668
632
|
use_face_split: bool | None = False,
|
|
669
633
|
use_boundary_tear: bool | None = False,
|
|
670
634
|
):
|
|
671
635
|
"""Dissolve vertices, merge edges and faces
|
|
672
636
|
|
|
673
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
674
637
|
:type execution_context: int | str | None
|
|
675
638
|
:type undo: bool | None
|
|
676
639
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -680,15 +643,14 @@ def dissolve_verts(
|
|
|
680
643
|
"""
|
|
681
644
|
|
|
682
645
|
def dupli_extrude_cursor(
|
|
683
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
684
646
|
execution_context: int | str | None = None,
|
|
685
647
|
undo: bool | None = None,
|
|
648
|
+
/,
|
|
686
649
|
*,
|
|
687
650
|
rotate_source: bool | None = True,
|
|
688
651
|
):
|
|
689
652
|
"""Duplicate and extrude selected vertices, edges or faces towards the mouse cursor
|
|
690
653
|
|
|
691
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
692
654
|
:type execution_context: int | str | None
|
|
693
655
|
:type undo: bool | None
|
|
694
656
|
:param rotate_source: Rotate Source, Rotate initial selection giving better shape
|
|
@@ -696,15 +658,14 @@ def dupli_extrude_cursor(
|
|
|
696
658
|
"""
|
|
697
659
|
|
|
698
660
|
def duplicate(
|
|
699
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
700
661
|
execution_context: int | str | None = None,
|
|
701
662
|
undo: bool | None = None,
|
|
663
|
+
/,
|
|
702
664
|
*,
|
|
703
665
|
mode: int | None = 1,
|
|
704
666
|
):
|
|
705
667
|
"""Duplicate selected vertices, edges or faces
|
|
706
668
|
|
|
707
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
708
669
|
:type execution_context: int | str | None
|
|
709
670
|
:type undo: bool | None
|
|
710
671
|
:param mode: Mode
|
|
@@ -712,16 +673,15 @@ def duplicate(
|
|
|
712
673
|
"""
|
|
713
674
|
|
|
714
675
|
def duplicate_move(
|
|
715
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
716
676
|
execution_context: int | str | None = None,
|
|
717
677
|
undo: bool | None = None,
|
|
678
|
+
/,
|
|
718
679
|
*,
|
|
719
680
|
MESH_OT_duplicate: duplicate | None = None,
|
|
720
681
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
721
682
|
):
|
|
722
683
|
"""Duplicate mesh and move
|
|
723
684
|
|
|
724
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
725
685
|
:type execution_context: int | str | None
|
|
726
686
|
:type undo: bool | None
|
|
727
687
|
:param MESH_OT_duplicate: Duplicate, Duplicate selected vertices, edges or faces
|
|
@@ -730,40 +690,29 @@ def duplicate_move(
|
|
|
730
690
|
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
731
691
|
"""
|
|
732
692
|
|
|
733
|
-
def edge_collapse(
|
|
734
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
735
|
-
execution_context: int | str | None = None,
|
|
736
|
-
undo: bool | None = None,
|
|
737
|
-
):
|
|
693
|
+
def edge_collapse(execution_context: int | str | None = None, undo: bool | None = None):
|
|
738
694
|
"""Collapse isolated edge and face regions, merging data such as UVs and color attributes. This can collapse edge-rings as well as regions of connected faces into vertices
|
|
739
695
|
|
|
740
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
741
696
|
:type execution_context: int | str | None
|
|
742
697
|
:type undo: bool | None
|
|
743
698
|
"""
|
|
744
699
|
|
|
745
|
-
def edge_face_add(
|
|
746
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
747
|
-
execution_context: int | str | None = None,
|
|
748
|
-
undo: bool | None = None,
|
|
749
|
-
):
|
|
700
|
+
def edge_face_add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
750
701
|
"""Add an edge or face to selected
|
|
751
702
|
|
|
752
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
753
703
|
:type execution_context: int | str | None
|
|
754
704
|
:type undo: bool | None
|
|
755
705
|
"""
|
|
756
706
|
|
|
757
707
|
def edge_rotate(
|
|
758
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
759
708
|
execution_context: int | str | None = None,
|
|
760
709
|
undo: bool | None = None,
|
|
710
|
+
/,
|
|
761
711
|
*,
|
|
762
712
|
use_ccw: bool | None = False,
|
|
763
713
|
):
|
|
764
714
|
"""Rotate selected edge or adjoining faces
|
|
765
715
|
|
|
766
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
767
716
|
:type execution_context: int | str | None
|
|
768
717
|
:type undo: bool | None
|
|
769
718
|
:param use_ccw: Counter Clockwise
|
|
@@ -771,15 +720,14 @@ def edge_rotate(
|
|
|
771
720
|
"""
|
|
772
721
|
|
|
773
722
|
def edge_split(
|
|
774
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
775
723
|
execution_context: int | str | None = None,
|
|
776
724
|
undo: bool | None = None,
|
|
725
|
+
/,
|
|
777
726
|
*,
|
|
778
727
|
type: typing.Literal["EDGE", "VERT"] | None = "EDGE",
|
|
779
728
|
):
|
|
780
729
|
"""Split selected edges so that each neighbor face gets its own copy
|
|
781
730
|
|
|
782
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
731
|
:type execution_context: int | str | None
|
|
784
732
|
:type undo: bool | None
|
|
785
733
|
:param type: Type, Method to use for splitting
|
|
@@ -793,9 +741,9 @@ def edge_split(
|
|
|
793
741
|
"""
|
|
794
742
|
|
|
795
743
|
def edgering_select(
|
|
796
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
797
744
|
execution_context: int | str | None = None,
|
|
798
745
|
undo: bool | None = None,
|
|
746
|
+
/,
|
|
799
747
|
*,
|
|
800
748
|
extend: bool | None = False,
|
|
801
749
|
deselect: bool | None = False,
|
|
@@ -804,7 +752,6 @@ def edgering_select(
|
|
|
804
752
|
):
|
|
805
753
|
"""Select an edge ring
|
|
806
754
|
|
|
807
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
808
755
|
:type execution_context: int | str | None
|
|
809
756
|
:type undo: bool | None
|
|
810
757
|
:param extend: Extend, Extend the selection
|
|
@@ -818,15 +765,14 @@ def edgering_select(
|
|
|
818
765
|
"""
|
|
819
766
|
|
|
820
767
|
def edges_select_sharp(
|
|
821
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
822
768
|
execution_context: int | str | None = None,
|
|
823
769
|
undo: bool | None = None,
|
|
770
|
+
/,
|
|
824
771
|
*,
|
|
825
772
|
sharpness: float | None = 0.523599,
|
|
826
773
|
):
|
|
827
774
|
"""Select all sharp enough edges
|
|
828
775
|
|
|
829
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
830
776
|
:type execution_context: int | str | None
|
|
831
777
|
:type undo: bool | None
|
|
832
778
|
:param sharpness: Sharpness
|
|
@@ -834,9 +780,9 @@ def edges_select_sharp(
|
|
|
834
780
|
"""
|
|
835
781
|
|
|
836
782
|
def extrude_context(
|
|
837
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
838
783
|
execution_context: int | str | None = None,
|
|
839
784
|
undo: bool | None = None,
|
|
785
|
+
/,
|
|
840
786
|
*,
|
|
841
787
|
use_normal_flip: bool | None = False,
|
|
842
788
|
use_dissolve_ortho_edges: bool | None = False,
|
|
@@ -844,7 +790,6 @@ def extrude_context(
|
|
|
844
790
|
):
|
|
845
791
|
"""Extrude selection
|
|
846
792
|
|
|
847
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
848
793
|
:type execution_context: int | str | None
|
|
849
794
|
:type undo: bool | None
|
|
850
795
|
:param use_normal_flip: Flip Normals
|
|
@@ -856,16 +801,15 @@ def extrude_context(
|
|
|
856
801
|
"""
|
|
857
802
|
|
|
858
803
|
def extrude_context_move(
|
|
859
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
860
804
|
execution_context: int | str | None = None,
|
|
861
805
|
undo: bool | None = None,
|
|
806
|
+
/,
|
|
862
807
|
*,
|
|
863
808
|
MESH_OT_extrude_context: extrude_context | None = None,
|
|
864
809
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
865
810
|
):
|
|
866
811
|
"""Extrude region together along the average normal
|
|
867
812
|
|
|
868
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
869
813
|
:type execution_context: int | str | None
|
|
870
814
|
:type undo: bool | None
|
|
871
815
|
:param MESH_OT_extrude_context: Extrude Context, Extrude selection
|
|
@@ -875,16 +819,15 @@ def extrude_context_move(
|
|
|
875
819
|
"""
|
|
876
820
|
|
|
877
821
|
def extrude_edges_indiv(
|
|
878
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
879
822
|
execution_context: int | str | None = None,
|
|
880
823
|
undo: bool | None = None,
|
|
824
|
+
/,
|
|
881
825
|
*,
|
|
882
826
|
use_normal_flip: bool | None = False,
|
|
883
827
|
mirror: bool | None = False,
|
|
884
828
|
):
|
|
885
829
|
"""Extrude individual edges only
|
|
886
830
|
|
|
887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
888
831
|
:type execution_context: int | str | None
|
|
889
832
|
:type undo: bool | None
|
|
890
833
|
:param use_normal_flip: Flip Normals
|
|
@@ -894,16 +837,15 @@ def extrude_edges_indiv(
|
|
|
894
837
|
"""
|
|
895
838
|
|
|
896
839
|
def extrude_edges_move(
|
|
897
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
898
840
|
execution_context: int | str | None = None,
|
|
899
841
|
undo: bool | None = None,
|
|
842
|
+
/,
|
|
900
843
|
*,
|
|
901
844
|
MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
|
|
902
845
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
903
846
|
):
|
|
904
847
|
"""Extrude edges and move result
|
|
905
848
|
|
|
906
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
907
849
|
:type execution_context: int | str | None
|
|
908
850
|
:type undo: bool | None
|
|
909
851
|
:param MESH_OT_extrude_edges_indiv: Extrude Only Edges, Extrude individual edges only
|
|
@@ -913,15 +855,14 @@ def extrude_edges_move(
|
|
|
913
855
|
"""
|
|
914
856
|
|
|
915
857
|
def extrude_faces_indiv(
|
|
916
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
917
858
|
execution_context: int | str | None = None,
|
|
918
859
|
undo: bool | None = None,
|
|
860
|
+
/,
|
|
919
861
|
*,
|
|
920
862
|
mirror: bool | None = False,
|
|
921
863
|
):
|
|
922
864
|
"""Extrude individual faces only
|
|
923
865
|
|
|
924
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
925
866
|
:type execution_context: int | str | None
|
|
926
867
|
:type undo: bool | None
|
|
927
868
|
:param mirror: Mirror Editing
|
|
@@ -929,16 +870,15 @@ def extrude_faces_indiv(
|
|
|
929
870
|
"""
|
|
930
871
|
|
|
931
872
|
def extrude_faces_move(
|
|
932
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
933
873
|
execution_context: int | str | None = None,
|
|
934
874
|
undo: bool | None = None,
|
|
875
|
+
/,
|
|
935
876
|
*,
|
|
936
877
|
MESH_OT_extrude_faces_indiv: extrude_faces_indiv | None = None,
|
|
937
878
|
TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
|
|
938
879
|
):
|
|
939
880
|
"""Extrude each individual face separately along local normals
|
|
940
881
|
|
|
941
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
942
882
|
:type execution_context: int | str | None
|
|
943
883
|
:type undo: bool | None
|
|
944
884
|
:param MESH_OT_extrude_faces_indiv: Extrude Individual Faces, Extrude individual faces only
|
|
@@ -948,16 +888,15 @@ def extrude_faces_move(
|
|
|
948
888
|
"""
|
|
949
889
|
|
|
950
890
|
def extrude_manifold(
|
|
951
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
952
891
|
execution_context: int | str | None = None,
|
|
953
892
|
undo: bool | None = None,
|
|
893
|
+
/,
|
|
954
894
|
*,
|
|
955
895
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
956
896
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
957
897
|
):
|
|
958
898
|
"""Extrude, dissolves edges whose faces form a flat surface and intersect new edges
|
|
959
899
|
|
|
960
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
961
900
|
:type execution_context: int | str | None
|
|
962
901
|
:type undo: bool | None
|
|
963
902
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -967,9 +906,9 @@ def extrude_manifold(
|
|
|
967
906
|
"""
|
|
968
907
|
|
|
969
908
|
def extrude_region(
|
|
970
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
971
909
|
execution_context: int | str | None = None,
|
|
972
910
|
undo: bool | None = None,
|
|
911
|
+
/,
|
|
973
912
|
*,
|
|
974
913
|
use_normal_flip: bool | None = False,
|
|
975
914
|
use_dissolve_ortho_edges: bool | None = False,
|
|
@@ -977,7 +916,6 @@ def extrude_region(
|
|
|
977
916
|
):
|
|
978
917
|
"""Extrude region of faces
|
|
979
918
|
|
|
980
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
981
919
|
:type execution_context: int | str | None
|
|
982
920
|
:type undo: bool | None
|
|
983
921
|
:param use_normal_flip: Flip Normals
|
|
@@ -989,16 +927,15 @@ def extrude_region(
|
|
|
989
927
|
"""
|
|
990
928
|
|
|
991
929
|
def extrude_region_move(
|
|
992
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
993
930
|
execution_context: int | str | None = None,
|
|
994
931
|
undo: bool | None = None,
|
|
932
|
+
/,
|
|
995
933
|
*,
|
|
996
934
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
997
935
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
998
936
|
):
|
|
999
937
|
"""Extrude region and move result
|
|
1000
938
|
|
|
1001
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1002
939
|
:type execution_context: int | str | None
|
|
1003
940
|
:type undo: bool | None
|
|
1004
941
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1008,16 +945,15 @@ def extrude_region_move(
|
|
|
1008
945
|
"""
|
|
1009
946
|
|
|
1010
947
|
def extrude_region_shrink_fatten(
|
|
1011
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1012
948
|
execution_context: int | str | None = None,
|
|
1013
949
|
undo: bool | None = None,
|
|
950
|
+
/,
|
|
1014
951
|
*,
|
|
1015
952
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
1016
953
|
TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
|
|
1017
954
|
):
|
|
1018
955
|
"""Extrude region together along local normals
|
|
1019
956
|
|
|
1020
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1021
957
|
:type execution_context: int | str | None
|
|
1022
958
|
:type undo: bool | None
|
|
1023
959
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1027,9 +963,9 @@ def extrude_region_shrink_fatten(
|
|
|
1027
963
|
"""
|
|
1028
964
|
|
|
1029
965
|
def extrude_repeat(
|
|
1030
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1031
966
|
execution_context: int | str | None = None,
|
|
1032
967
|
undo: bool | None = None,
|
|
968
|
+
/,
|
|
1033
969
|
*,
|
|
1034
970
|
steps: int | None = 10,
|
|
1035
971
|
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
@@ -1037,7 +973,6 @@ def extrude_repeat(
|
|
|
1037
973
|
):
|
|
1038
974
|
"""Extrude selected vertices, edges or faces repeatedly
|
|
1039
975
|
|
|
1040
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1041
976
|
:type execution_context: int | str | None
|
|
1042
977
|
:type undo: bool | None
|
|
1043
978
|
:param steps: Steps
|
|
@@ -1049,16 +984,15 @@ def extrude_repeat(
|
|
|
1049
984
|
"""
|
|
1050
985
|
|
|
1051
986
|
def extrude_vertices_move(
|
|
1052
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1053
987
|
execution_context: int | str | None = None,
|
|
1054
988
|
undo: bool | None = None,
|
|
989
|
+
/,
|
|
1055
990
|
*,
|
|
1056
991
|
MESH_OT_extrude_verts_indiv: extrude_verts_indiv | None = None,
|
|
1057
992
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1058
993
|
):
|
|
1059
994
|
"""Extrude vertices and move result
|
|
1060
995
|
|
|
1061
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1062
996
|
:type execution_context: int | str | None
|
|
1063
997
|
:type undo: bool | None
|
|
1064
998
|
:param MESH_OT_extrude_verts_indiv: Extrude Only Vertices, Extrude individual vertices only
|
|
@@ -1068,15 +1002,14 @@ def extrude_vertices_move(
|
|
|
1068
1002
|
"""
|
|
1069
1003
|
|
|
1070
1004
|
def extrude_verts_indiv(
|
|
1071
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1072
1005
|
execution_context: int | str | None = None,
|
|
1073
1006
|
undo: bool | None = None,
|
|
1007
|
+
/,
|
|
1074
1008
|
*,
|
|
1075
1009
|
mirror: bool | None = False,
|
|
1076
1010
|
):
|
|
1077
1011
|
"""Extrude individual vertices only
|
|
1078
1012
|
|
|
1079
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1080
1013
|
:type execution_context: int | str | None
|
|
1081
1014
|
:type undo: bool | None
|
|
1082
1015
|
:param mirror: Mirror Editing
|
|
@@ -1084,16 +1017,15 @@ def extrude_verts_indiv(
|
|
|
1084
1017
|
"""
|
|
1085
1018
|
|
|
1086
1019
|
def face_make_planar(
|
|
1087
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1088
1020
|
execution_context: int | str | None = None,
|
|
1089
1021
|
undo: bool | None = None,
|
|
1022
|
+
/,
|
|
1090
1023
|
*,
|
|
1091
1024
|
factor: float | None = 1.0,
|
|
1092
1025
|
repeat: int | None = 1,
|
|
1093
1026
|
):
|
|
1094
1027
|
"""Flatten selected faces
|
|
1095
1028
|
|
|
1096
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1097
1029
|
:type execution_context: int | str | None
|
|
1098
1030
|
:type undo: bool | None
|
|
1099
1031
|
:param factor: Factor
|
|
@@ -1103,9 +1035,9 @@ def face_make_planar(
|
|
|
1103
1035
|
"""
|
|
1104
1036
|
|
|
1105
1037
|
def face_set_extract(
|
|
1106
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1107
1038
|
execution_context: int | str | None = None,
|
|
1108
1039
|
undo: bool | None = None,
|
|
1040
|
+
/,
|
|
1109
1041
|
*,
|
|
1110
1042
|
add_boundary_loop: bool | None = True,
|
|
1111
1043
|
smooth_iterations: int | None = 4,
|
|
@@ -1114,7 +1046,6 @@ def face_set_extract(
|
|
|
1114
1046
|
):
|
|
1115
1047
|
"""Create a new mesh object from the selected Face Set
|
|
1116
1048
|
|
|
1117
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1118
1049
|
:type execution_context: int | str | None
|
|
1119
1050
|
:type undo: bool | None
|
|
1120
1051
|
:param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
|
|
@@ -1128,28 +1059,24 @@ def face_set_extract(
|
|
|
1128
1059
|
"""
|
|
1129
1060
|
|
|
1130
1061
|
def face_split_by_edges(
|
|
1131
|
-
|
|
1132
|
-
execution_context: int | str | None = None,
|
|
1133
|
-
undo: bool | None = None,
|
|
1062
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1134
1063
|
):
|
|
1135
1064
|
"""Weld loose edges into faces (splitting them into new faces)
|
|
1136
1065
|
|
|
1137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1138
1066
|
:type execution_context: int | str | None
|
|
1139
1067
|
:type undo: bool | None
|
|
1140
1068
|
"""
|
|
1141
1069
|
|
|
1142
1070
|
def faces_mirror_uv(
|
|
1143
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1144
1071
|
execution_context: int | str | None = None,
|
|
1145
1072
|
undo: bool | None = None,
|
|
1073
|
+
/,
|
|
1146
1074
|
*,
|
|
1147
1075
|
direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
|
|
1148
1076
|
precision: int | None = 3,
|
|
1149
1077
|
):
|
|
1150
1078
|
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh
|
|
1151
1079
|
|
|
1152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1153
1080
|
:type execution_context: int | str | None
|
|
1154
1081
|
:type undo: bool | None
|
|
1155
1082
|
:param direction: Axis Direction
|
|
@@ -1159,15 +1086,14 @@ def faces_mirror_uv(
|
|
|
1159
1086
|
"""
|
|
1160
1087
|
|
|
1161
1088
|
def faces_select_linked_flat(
|
|
1162
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1163
1089
|
execution_context: int | str | None = None,
|
|
1164
1090
|
undo: bool | None = None,
|
|
1091
|
+
/,
|
|
1165
1092
|
*,
|
|
1166
1093
|
sharpness: float | None = 0.0174533,
|
|
1167
1094
|
):
|
|
1168
1095
|
"""Select linked faces by angle
|
|
1169
1096
|
|
|
1170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1171
1097
|
:type execution_context: int | str | None
|
|
1172
1098
|
:type undo: bool | None
|
|
1173
1099
|
:param sharpness: Sharpness
|
|
@@ -1175,39 +1101,32 @@ def faces_select_linked_flat(
|
|
|
1175
1101
|
"""
|
|
1176
1102
|
|
|
1177
1103
|
def faces_shade_flat(
|
|
1178
|
-
|
|
1179
|
-
execution_context: int | str | None = None,
|
|
1180
|
-
undo: bool | None = None,
|
|
1104
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1181
1105
|
):
|
|
1182
1106
|
"""Display faces flat
|
|
1183
1107
|
|
|
1184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1185
1108
|
:type execution_context: int | str | None
|
|
1186
1109
|
:type undo: bool | None
|
|
1187
1110
|
"""
|
|
1188
1111
|
|
|
1189
1112
|
def faces_shade_smooth(
|
|
1190
|
-
|
|
1191
|
-
execution_context: int | str | None = None,
|
|
1192
|
-
undo: bool | None = None,
|
|
1113
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1193
1114
|
):
|
|
1194
1115
|
"""Display faces smooth (using vertex normals)
|
|
1195
1116
|
|
|
1196
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1197
1117
|
:type execution_context: int | str | None
|
|
1198
1118
|
:type undo: bool | None
|
|
1199
1119
|
"""
|
|
1200
1120
|
|
|
1201
1121
|
def fill(
|
|
1202
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1203
1122
|
execution_context: int | str | None = None,
|
|
1204
1123
|
undo: bool | None = None,
|
|
1124
|
+
/,
|
|
1205
1125
|
*,
|
|
1206
1126
|
use_beauty: bool | None = True,
|
|
1207
1127
|
):
|
|
1208
1128
|
"""Fill a selected edge loop with faces
|
|
1209
1129
|
|
|
1210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1211
1130
|
:type execution_context: int | str | None
|
|
1212
1131
|
:type undo: bool | None
|
|
1213
1132
|
:param use_beauty: Beauty, Use best triangulation division
|
|
@@ -1215,9 +1134,9 @@ def fill(
|
|
|
1215
1134
|
"""
|
|
1216
1135
|
|
|
1217
1136
|
def fill_grid(
|
|
1218
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1219
1137
|
execution_context: int | str | None = None,
|
|
1220
1138
|
undo: bool | None = None,
|
|
1139
|
+
/,
|
|
1221
1140
|
*,
|
|
1222
1141
|
span: int | None = 1,
|
|
1223
1142
|
offset: int | None = 0,
|
|
@@ -1225,7 +1144,6 @@ def fill_grid(
|
|
|
1225
1144
|
):
|
|
1226
1145
|
"""Fill grid from two loops
|
|
1227
1146
|
|
|
1228
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1229
1147
|
:type execution_context: int | str | None
|
|
1230
1148
|
:type undo: bool | None
|
|
1231
1149
|
:param span: Span, Number of grid columns
|
|
@@ -1237,15 +1155,14 @@ def fill_grid(
|
|
|
1237
1155
|
"""
|
|
1238
1156
|
|
|
1239
1157
|
def fill_holes(
|
|
1240
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1241
1158
|
execution_context: int | str | None = None,
|
|
1242
1159
|
undo: bool | None = None,
|
|
1160
|
+
/,
|
|
1243
1161
|
*,
|
|
1244
1162
|
sides: int | None = 4,
|
|
1245
1163
|
):
|
|
1246
1164
|
"""Fill in holes (boundary edge loops)
|
|
1247
1165
|
|
|
1248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1249
1166
|
:type execution_context: int | str | None
|
|
1250
1167
|
:type undo: bool | None
|
|
1251
1168
|
:param sides: Sides, Number of sides in hole required to fill (zero fills all holes)
|
|
@@ -1253,15 +1170,14 @@ def fill_holes(
|
|
|
1253
1170
|
"""
|
|
1254
1171
|
|
|
1255
1172
|
def flip_normals(
|
|
1256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1257
1173
|
execution_context: int | str | None = None,
|
|
1258
1174
|
undo: bool | None = None,
|
|
1175
|
+
/,
|
|
1259
1176
|
*,
|
|
1260
1177
|
only_clnors: bool | None = False,
|
|
1261
1178
|
):
|
|
1262
1179
|
"""Flip the direction of selected faces' normals (and of their vertices)
|
|
1263
1180
|
|
|
1264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1265
1181
|
:type execution_context: int | str | None
|
|
1266
1182
|
:type undo: bool | None
|
|
1267
1183
|
:param only_clnors: Custom Normals Only, Only flip the custom loop normals of the selected elements
|
|
@@ -1269,27 +1185,23 @@ def flip_normals(
|
|
|
1269
1185
|
"""
|
|
1270
1186
|
|
|
1271
1187
|
def flip_quad_tessellation(
|
|
1272
|
-
|
|
1273
|
-
execution_context: int | str | None = None,
|
|
1274
|
-
undo: bool | None = None,
|
|
1188
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1275
1189
|
):
|
|
1276
1190
|
"""Flips the tessellation of selected quads
|
|
1277
1191
|
|
|
1278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1279
1192
|
:type execution_context: int | str | None
|
|
1280
1193
|
:type undo: bool | None
|
|
1281
1194
|
"""
|
|
1282
1195
|
|
|
1283
1196
|
def hide(
|
|
1284
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1285
1197
|
execution_context: int | str | None = None,
|
|
1286
1198
|
undo: bool | None = None,
|
|
1199
|
+
/,
|
|
1287
1200
|
*,
|
|
1288
1201
|
unselected: bool | None = False,
|
|
1289
1202
|
):
|
|
1290
1203
|
"""Hide (un)selected vertices, edges or faces
|
|
1291
1204
|
|
|
1292
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1293
1205
|
:type execution_context: int | str | None
|
|
1294
1206
|
:type undo: bool | None
|
|
1295
1207
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -1297,9 +1209,9 @@ def hide(
|
|
|
1297
1209
|
"""
|
|
1298
1210
|
|
|
1299
1211
|
def inset(
|
|
1300
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1301
1212
|
execution_context: int | str | None = None,
|
|
1302
1213
|
undo: bool | None = None,
|
|
1214
|
+
/,
|
|
1303
1215
|
*,
|
|
1304
1216
|
use_boundary: bool | None = True,
|
|
1305
1217
|
use_even_offset: bool | None = True,
|
|
@@ -1315,7 +1227,6 @@ def inset(
|
|
|
1315
1227
|
):
|
|
1316
1228
|
"""Inset new faces into selected faces
|
|
1317
1229
|
|
|
1318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1319
1230
|
:type execution_context: int | str | None
|
|
1320
1231
|
:type undo: bool | None
|
|
1321
1232
|
:param use_boundary: Boundary, Inset face boundaries
|
|
@@ -1343,9 +1254,9 @@ def inset(
|
|
|
1343
1254
|
"""
|
|
1344
1255
|
|
|
1345
1256
|
def intersect(
|
|
1346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1347
1257
|
execution_context: int | str | None = None,
|
|
1348
1258
|
undo: bool | None = None,
|
|
1259
|
+
/,
|
|
1349
1260
|
*,
|
|
1350
1261
|
mode: typing.Literal["SELECT", "SELECT_UNSELECT"] | None = "SELECT_UNSELECT",
|
|
1351
1262
|
separate_mode: typing.Literal["ALL", "CUT", "NONE"] | None = "CUT",
|
|
@@ -1354,7 +1265,6 @@ def intersect(
|
|
|
1354
1265
|
):
|
|
1355
1266
|
"""Cut an intersection into faces
|
|
1356
1267
|
|
|
1357
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1358
1268
|
:type execution_context: int | str | None
|
|
1359
1269
|
:type undo: bool | None
|
|
1360
1270
|
:param mode: Source
|
|
@@ -1389,9 +1299,9 @@ def intersect(
|
|
|
1389
1299
|
"""
|
|
1390
1300
|
|
|
1391
1301
|
def intersect_boolean(
|
|
1392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1393
1302
|
execution_context: int | str | None = None,
|
|
1394
1303
|
undo: bool | None = None,
|
|
1304
|
+
/,
|
|
1395
1305
|
*,
|
|
1396
1306
|
operation: typing.Literal["INTERSECT", "UNION", "DIFFERENCE"] | None = "DIFFERENCE",
|
|
1397
1307
|
use_swap: bool | None = False,
|
|
@@ -1401,7 +1311,6 @@ def intersect_boolean(
|
|
|
1401
1311
|
):
|
|
1402
1312
|
"""Cut solid geometry from selected to unselected
|
|
1403
1313
|
|
|
1404
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1405
1314
|
:type execution_context: int | str | None
|
|
1406
1315
|
:type undo: bool | None
|
|
1407
1316
|
:param operation: Boolean Operation, Which boolean operation to apply
|
|
@@ -1423,15 +1332,14 @@ def intersect_boolean(
|
|
|
1423
1332
|
"""
|
|
1424
1333
|
|
|
1425
1334
|
def knife_project(
|
|
1426
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1427
1335
|
execution_context: int | str | None = None,
|
|
1428
1336
|
undo: bool | None = None,
|
|
1337
|
+
/,
|
|
1429
1338
|
*,
|
|
1430
1339
|
cut_through: bool | None = False,
|
|
1431
1340
|
):
|
|
1432
1341
|
"""Use other objects outlines and boundaries to project knife cuts
|
|
1433
1342
|
|
|
1434
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1435
1343
|
:type execution_context: int | str | None
|
|
1436
1344
|
:type undo: bool | None
|
|
1437
1345
|
:param cut_through: Cut Through, Cut through all faces, not just visible ones
|
|
@@ -1439,9 +1347,9 @@ def knife_project(
|
|
|
1439
1347
|
"""
|
|
1440
1348
|
|
|
1441
1349
|
def knife_tool(
|
|
1442
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1443
1350
|
execution_context: int | str | None = None,
|
|
1444
1351
|
undo: bool | None = None,
|
|
1352
|
+
/,
|
|
1445
1353
|
*,
|
|
1446
1354
|
use_occlude_geometry: bool | None = True,
|
|
1447
1355
|
only_selected: bool | None = False,
|
|
@@ -1454,7 +1362,6 @@ def knife_tool(
|
|
|
1454
1362
|
):
|
|
1455
1363
|
"""Cut new topology
|
|
1456
1364
|
|
|
1457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1458
1365
|
:type execution_context: int | str | None
|
|
1459
1366
|
:type undo: bool | None
|
|
1460
1367
|
:param use_occlude_geometry: Occlude Geometry, Only cut the front most geometry
|
|
@@ -1495,15 +1402,14 @@ def knife_tool(
|
|
|
1495
1402
|
"""
|
|
1496
1403
|
|
|
1497
1404
|
def loop_multi_select(
|
|
1498
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1499
1405
|
execution_context: int | str | None = None,
|
|
1500
1406
|
undo: bool | None = None,
|
|
1407
|
+
/,
|
|
1501
1408
|
*,
|
|
1502
1409
|
ring: bool | None = False,
|
|
1503
1410
|
):
|
|
1504
1411
|
"""Select a loop of connected edges by connection type
|
|
1505
1412
|
|
|
1506
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1507
1413
|
:type execution_context: int | str | None
|
|
1508
1414
|
:type undo: bool | None
|
|
1509
1415
|
:param ring: Ring
|
|
@@ -1511,9 +1417,9 @@ def loop_multi_select(
|
|
|
1511
1417
|
"""
|
|
1512
1418
|
|
|
1513
1419
|
def loop_select(
|
|
1514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1515
1420
|
execution_context: int | str | None = None,
|
|
1516
1421
|
undo: bool | None = None,
|
|
1422
|
+
/,
|
|
1517
1423
|
*,
|
|
1518
1424
|
extend: bool | None = False,
|
|
1519
1425
|
deselect: bool | None = False,
|
|
@@ -1522,7 +1428,6 @@ def loop_select(
|
|
|
1522
1428
|
):
|
|
1523
1429
|
"""Select a loop of connected edges
|
|
1524
1430
|
|
|
1525
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1526
1431
|
:type execution_context: int | str | None
|
|
1527
1432
|
:type undo: bool | None
|
|
1528
1433
|
:param extend: Extend Select, Extend the selection
|
|
@@ -1536,15 +1441,14 @@ def loop_select(
|
|
|
1536
1441
|
"""
|
|
1537
1442
|
|
|
1538
1443
|
def loop_to_region(
|
|
1539
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1540
1444
|
execution_context: int | str | None = None,
|
|
1541
1445
|
undo: bool | None = None,
|
|
1446
|
+
/,
|
|
1542
1447
|
*,
|
|
1543
1448
|
select_bigger: bool | None = False,
|
|
1544
1449
|
):
|
|
1545
1450
|
"""Select region of faces inside of a selected loop of edges
|
|
1546
1451
|
|
|
1547
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1548
1452
|
:type execution_context: int | str | None
|
|
1549
1453
|
:type undo: bool | None
|
|
1550
1454
|
:param select_bigger: Select Bigger, Select bigger regions instead of smaller ones
|
|
@@ -1552,13 +1456,14 @@ def loop_to_region(
|
|
|
1552
1456
|
"""
|
|
1553
1457
|
|
|
1554
1458
|
def loopcut(
|
|
1555
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1556
1459
|
execution_context: int | str | None = None,
|
|
1557
1460
|
undo: bool | None = None,
|
|
1461
|
+
/,
|
|
1558
1462
|
*,
|
|
1559
1463
|
number_cuts: int | None = 1,
|
|
1560
1464
|
smoothness: float | None = 0.0,
|
|
1561
|
-
falloff: bpy.
|
|
1465
|
+
falloff: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
1466
|
+
| None = "INVERSE_SQUARE",
|
|
1562
1467
|
object_index: int | None = -1,
|
|
1563
1468
|
edge_index: int | None = -1,
|
|
1564
1469
|
mesh_select_mode_init: collections.abc.Iterable[bool] | None = (
|
|
@@ -1569,7 +1474,6 @@ def loopcut(
|
|
|
1569
1474
|
):
|
|
1570
1475
|
"""Add a new loop between existing loops
|
|
1571
1476
|
|
|
1572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1573
1477
|
:type execution_context: int | str | None
|
|
1574
1478
|
:type undo: bool | None
|
|
1575
1479
|
:param number_cuts: Number of Cuts
|
|
@@ -1577,7 +1481,7 @@ def loopcut(
|
|
|
1577
1481
|
:param smoothness: Smoothness, Smoothness factor
|
|
1578
1482
|
:type smoothness: float | None
|
|
1579
1483
|
:param falloff: Falloff, Falloff type of the feather
|
|
1580
|
-
:type falloff: bpy.
|
|
1484
|
+
:type falloff: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
1581
1485
|
:param object_index: Object Index
|
|
1582
1486
|
:type object_index: int | None
|
|
1583
1487
|
:param edge_index: Edge Index
|
|
@@ -1586,16 +1490,15 @@ def loopcut(
|
|
|
1586
1490
|
"""
|
|
1587
1491
|
|
|
1588
1492
|
def loopcut_slide(
|
|
1589
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1590
1493
|
execution_context: int | str | None = None,
|
|
1591
1494
|
undo: bool | None = None,
|
|
1495
|
+
/,
|
|
1592
1496
|
*,
|
|
1593
1497
|
MESH_OT_loopcut: loopcut | None = None,
|
|
1594
1498
|
TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
|
|
1595
1499
|
):
|
|
1596
1500
|
"""Cut mesh loop and slide it
|
|
1597
1501
|
|
|
1598
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1599
1502
|
:type execution_context: int | str | None
|
|
1600
1503
|
:type undo: bool | None
|
|
1601
1504
|
:param MESH_OT_loopcut: Loop Cut, Add a new loop between existing loops
|
|
@@ -1605,15 +1508,14 @@ def loopcut_slide(
|
|
|
1605
1508
|
"""
|
|
1606
1509
|
|
|
1607
1510
|
def mark_freestyle_edge(
|
|
1608
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1609
1511
|
execution_context: int | str | None = None,
|
|
1610
1512
|
undo: bool | None = None,
|
|
1513
|
+
/,
|
|
1611
1514
|
*,
|
|
1612
1515
|
clear: bool | None = False,
|
|
1613
1516
|
):
|
|
1614
1517
|
"""(Un)mark selected edges as Freestyle feature edges
|
|
1615
1518
|
|
|
1616
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1617
1519
|
:type execution_context: int | str | None
|
|
1618
1520
|
:type undo: bool | None
|
|
1619
1521
|
:param clear: Clear
|
|
@@ -1621,15 +1523,14 @@ def mark_freestyle_edge(
|
|
|
1621
1523
|
"""
|
|
1622
1524
|
|
|
1623
1525
|
def mark_freestyle_face(
|
|
1624
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1625
1526
|
execution_context: int | str | None = None,
|
|
1626
1527
|
undo: bool | None = None,
|
|
1528
|
+
/,
|
|
1627
1529
|
*,
|
|
1628
1530
|
clear: bool | None = False,
|
|
1629
1531
|
):
|
|
1630
1532
|
"""(Un)mark selected faces for exclusion from Freestyle feature edge detection
|
|
1631
1533
|
|
|
1632
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1633
1534
|
:type execution_context: int | str | None
|
|
1634
1535
|
:type undo: bool | None
|
|
1635
1536
|
:param clear: Clear
|
|
@@ -1637,15 +1538,14 @@ def mark_freestyle_face(
|
|
|
1637
1538
|
"""
|
|
1638
1539
|
|
|
1639
1540
|
def mark_seam(
|
|
1640
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1641
1541
|
execution_context: int | str | None = None,
|
|
1642
1542
|
undo: bool | None = None,
|
|
1543
|
+
/,
|
|
1643
1544
|
*,
|
|
1644
1545
|
clear: bool | None = False,
|
|
1645
1546
|
):
|
|
1646
1547
|
"""(Un)mark selected edges as a seam
|
|
1647
1548
|
|
|
1648
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1649
1549
|
:type execution_context: int | str | None
|
|
1650
1550
|
:type undo: bool | None
|
|
1651
1551
|
:param clear: Clear
|
|
@@ -1653,16 +1553,15 @@ def mark_seam(
|
|
|
1653
1553
|
"""
|
|
1654
1554
|
|
|
1655
1555
|
def mark_sharp(
|
|
1656
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1657
1556
|
execution_context: int | str | None = None,
|
|
1658
1557
|
undo: bool | None = None,
|
|
1558
|
+
/,
|
|
1659
1559
|
*,
|
|
1660
1560
|
clear: bool | None = False,
|
|
1661
1561
|
use_verts: bool | None = False,
|
|
1662
1562
|
):
|
|
1663
1563
|
"""(Un)mark selected edges as sharp
|
|
1664
1564
|
|
|
1665
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1666
1565
|
:type execution_context: int | str | None
|
|
1667
1566
|
:type undo: bool | None
|
|
1668
1567
|
:param clear: Clear
|
|
@@ -1672,9 +1571,9 @@ def mark_sharp(
|
|
|
1672
1571
|
"""
|
|
1673
1572
|
|
|
1674
1573
|
def merge(
|
|
1675
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1676
1574
|
execution_context: int | str | None = None,
|
|
1677
1575
|
undo: bool | None = None,
|
|
1576
|
+
/,
|
|
1678
1577
|
*,
|
|
1679
1578
|
type: typing.Literal["CENTER", "CURSOR", "COLLAPSE", "FIRST", "LAST"]
|
|
1680
1579
|
| None = "CENTER",
|
|
@@ -1682,7 +1581,6 @@ def merge(
|
|
|
1682
1581
|
):
|
|
1683
1582
|
"""Merge selected vertices
|
|
1684
1583
|
|
|
1685
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1686
1584
|
:type execution_context: int | str | None
|
|
1687
1585
|
:type undo: bool | None
|
|
1688
1586
|
:param type: Type, Merge method to use
|
|
@@ -1691,29 +1589,23 @@ def merge(
|
|
|
1691
1589
|
:type uvs: bool | None
|
|
1692
1590
|
"""
|
|
1693
1591
|
|
|
1694
|
-
def merge_normals(
|
|
1695
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1696
|
-
execution_context: int | str | None = None,
|
|
1697
|
-
undo: bool | None = None,
|
|
1698
|
-
):
|
|
1592
|
+
def merge_normals(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1699
1593
|
"""Merge custom normals of selected vertices
|
|
1700
1594
|
|
|
1701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1702
1595
|
:type execution_context: int | str | None
|
|
1703
1596
|
:type undo: bool | None
|
|
1704
1597
|
"""
|
|
1705
1598
|
|
|
1706
1599
|
def mod_weighted_strength(
|
|
1707
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1708
1600
|
execution_context: int | str | None = None,
|
|
1709
1601
|
undo: bool | None = None,
|
|
1602
|
+
/,
|
|
1710
1603
|
*,
|
|
1711
1604
|
set: bool | None = False,
|
|
1712
1605
|
face_strength: typing.Literal["WEAK", "MEDIUM", "STRONG"] | None = "MEDIUM",
|
|
1713
1606
|
):
|
|
1714
1607
|
"""Set/Get strength of face (used in Weighted Normal modifier)
|
|
1715
1608
|
|
|
1716
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1717
1609
|
:type execution_context: int | str | None
|
|
1718
1610
|
:type undo: bool | None
|
|
1719
1611
|
:param set: Set Value, Set value of faces
|
|
@@ -1722,76 +1614,54 @@ def mod_weighted_strength(
|
|
|
1722
1614
|
:type face_strength: typing.Literal['WEAK','MEDIUM','STRONG'] | None
|
|
1723
1615
|
"""
|
|
1724
1616
|
|
|
1725
|
-
def navmesh_clear(
|
|
1726
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1727
|
-
execution_context: int | str | None = None,
|
|
1728
|
-
undo: bool | None = None,
|
|
1729
|
-
):
|
|
1617
|
+
def navmesh_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1730
1618
|
"""Remove navmesh data from this mesh
|
|
1731
1619
|
|
|
1732
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1733
1620
|
:type execution_context: int | str | None
|
|
1734
1621
|
:type undo: bool | None
|
|
1735
1622
|
"""
|
|
1736
1623
|
|
|
1737
1624
|
def navmesh_face_add(
|
|
1738
|
-
|
|
1739
|
-
execution_context: int | str | None = None,
|
|
1740
|
-
undo: bool | None = None,
|
|
1625
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1741
1626
|
):
|
|
1742
1627
|
"""Add a new index and assign it to selected faces
|
|
1743
1628
|
|
|
1744
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1745
1629
|
:type execution_context: int | str | None
|
|
1746
1630
|
:type undo: bool | None
|
|
1747
1631
|
"""
|
|
1748
1632
|
|
|
1749
1633
|
def navmesh_face_copy(
|
|
1750
|
-
|
|
1751
|
-
execution_context: int | str | None = None,
|
|
1752
|
-
undo: bool | None = None,
|
|
1634
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1753
1635
|
):
|
|
1754
1636
|
"""Copy the index from the active face
|
|
1755
1637
|
|
|
1756
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1757
1638
|
:type execution_context: int | str | None
|
|
1758
1639
|
:type undo: bool | None
|
|
1759
1640
|
"""
|
|
1760
1641
|
|
|
1761
|
-
def navmesh_make(
|
|
1762
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1763
|
-
execution_context: int | str | None = None,
|
|
1764
|
-
undo: bool | None = None,
|
|
1765
|
-
):
|
|
1642
|
+
def navmesh_make(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1766
1643
|
"""Create navigation mesh for selected objects
|
|
1767
1644
|
|
|
1768
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1769
1645
|
:type execution_context: int | str | None
|
|
1770
1646
|
:type undo: bool | None
|
|
1771
1647
|
"""
|
|
1772
1648
|
|
|
1773
|
-
def navmesh_reset(
|
|
1774
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1775
|
-
execution_context: int | str | None = None,
|
|
1776
|
-
undo: bool | None = None,
|
|
1777
|
-
):
|
|
1649
|
+
def navmesh_reset(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1778
1650
|
"""Assign a new index to every face
|
|
1779
1651
|
|
|
1780
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1781
1652
|
:type execution_context: int | str | None
|
|
1782
1653
|
:type undo: bool | None
|
|
1783
1654
|
"""
|
|
1784
1655
|
|
|
1785
1656
|
def normals_make_consistent(
|
|
1786
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1787
1657
|
execution_context: int | str | None = None,
|
|
1788
1658
|
undo: bool | None = None,
|
|
1659
|
+
/,
|
|
1789
1660
|
*,
|
|
1790
1661
|
inside: bool | None = False,
|
|
1791
1662
|
):
|
|
1792
1663
|
"""Make face and vertex normals point either outside or inside the mesh
|
|
1793
1664
|
|
|
1794
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1795
1665
|
:type execution_context: int | str | None
|
|
1796
1666
|
:type undo: bool | None
|
|
1797
1667
|
:param inside: Inside
|
|
@@ -1799,16 +1669,15 @@ def normals_make_consistent(
|
|
|
1799
1669
|
"""
|
|
1800
1670
|
|
|
1801
1671
|
def normals_tools(
|
|
1802
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1803
1672
|
execution_context: int | str | None = None,
|
|
1804
1673
|
undo: bool | None = None,
|
|
1674
|
+
/,
|
|
1805
1675
|
*,
|
|
1806
1676
|
mode: typing.Literal["COPY", "PASTE", "ADD", "MULTIPLY", "RESET"] | None = "COPY",
|
|
1807
1677
|
absolute: bool | None = False,
|
|
1808
1678
|
):
|
|
1809
1679
|
"""Custom normals tools using Normal Vector of UI
|
|
1810
1680
|
|
|
1811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1812
1681
|
:type execution_context: int | str | None
|
|
1813
1682
|
:type undo: bool | None
|
|
1814
1683
|
:param mode: Mode, Mode of tools taking input from interface
|
|
@@ -1833,15 +1702,14 @@ def normals_tools(
|
|
|
1833
1702
|
"""
|
|
1834
1703
|
|
|
1835
1704
|
def offset_edge_loops(
|
|
1836
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1837
1705
|
execution_context: int | str | None = None,
|
|
1838
1706
|
undo: bool | None = None,
|
|
1707
|
+
/,
|
|
1839
1708
|
*,
|
|
1840
1709
|
use_cap_endpoint: bool | None = False,
|
|
1841
1710
|
):
|
|
1842
1711
|
"""Create offset edge loop from the current selection
|
|
1843
1712
|
|
|
1844
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1845
1713
|
:type execution_context: int | str | None
|
|
1846
1714
|
:type undo: bool | None
|
|
1847
1715
|
:param use_cap_endpoint: Cap Endpoint, Extend loop around end-points
|
|
@@ -1849,16 +1717,15 @@ def offset_edge_loops(
|
|
|
1849
1717
|
"""
|
|
1850
1718
|
|
|
1851
1719
|
def offset_edge_loops_slide(
|
|
1852
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1853
1720
|
execution_context: int | str | None = None,
|
|
1854
1721
|
undo: bool | None = None,
|
|
1722
|
+
/,
|
|
1855
1723
|
*,
|
|
1856
1724
|
MESH_OT_offset_edge_loops: offset_edge_loops | None = None,
|
|
1857
1725
|
TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
|
|
1858
1726
|
):
|
|
1859
1727
|
"""Offset edge loop slide
|
|
1860
1728
|
|
|
1861
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1862
1729
|
:type execution_context: int | str | None
|
|
1863
1730
|
:type undo: bool | None
|
|
1864
1731
|
:param MESH_OT_offset_edge_loops: Offset Edge Loop, Create offset edge loop from the current selection
|
|
@@ -1868,9 +1735,9 @@ def offset_edge_loops_slide(
|
|
|
1868
1735
|
"""
|
|
1869
1736
|
|
|
1870
1737
|
def paint_mask_extract(
|
|
1871
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1872
1738
|
execution_context: int | str | None = None,
|
|
1873
1739
|
undo: bool | None = None,
|
|
1740
|
+
/,
|
|
1874
1741
|
*,
|
|
1875
1742
|
mask_threshold: float | None = 0.5,
|
|
1876
1743
|
add_boundary_loop: bool | None = True,
|
|
@@ -1880,7 +1747,6 @@ def paint_mask_extract(
|
|
|
1880
1747
|
):
|
|
1881
1748
|
"""Create a new mesh object from the current paint mask
|
|
1882
1749
|
|
|
1883
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1884
1750
|
:type execution_context: int | str | None
|
|
1885
1751
|
:type undo: bool | None
|
|
1886
1752
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1896,9 +1762,9 @@ def paint_mask_extract(
|
|
|
1896
1762
|
"""
|
|
1897
1763
|
|
|
1898
1764
|
def paint_mask_slice(
|
|
1899
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1900
1765
|
execution_context: int | str | None = None,
|
|
1901
1766
|
undo: bool | None = None,
|
|
1767
|
+
/,
|
|
1902
1768
|
*,
|
|
1903
1769
|
mask_threshold: float | None = 0.5,
|
|
1904
1770
|
fill_holes: bool | None = True,
|
|
@@ -1906,7 +1772,6 @@ def paint_mask_slice(
|
|
|
1906
1772
|
):
|
|
1907
1773
|
"""Slices the paint mask from the mesh
|
|
1908
1774
|
|
|
1909
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1910
1775
|
:type execution_context: int | str | None
|
|
1911
1776
|
:type undo: bool | None
|
|
1912
1777
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1918,9 +1783,9 @@ def paint_mask_slice(
|
|
|
1918
1783
|
"""
|
|
1919
1784
|
|
|
1920
1785
|
def point_normals(
|
|
1921
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1922
1786
|
execution_context: int | str | None = None,
|
|
1923
1787
|
undo: bool | None = None,
|
|
1788
|
+
/,
|
|
1924
1789
|
*,
|
|
1925
1790
|
mode: typing.Literal["COORDINATES", "MOUSE"] | None = "COORDINATES",
|
|
1926
1791
|
invert: bool | None = False,
|
|
@@ -1935,7 +1800,6 @@ def point_normals(
|
|
|
1935
1800
|
):
|
|
1936
1801
|
"""Point selected custom normals to specified Target
|
|
1937
1802
|
|
|
1938
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1939
1803
|
:type execution_context: int | str | None
|
|
1940
1804
|
:type undo: bool | None
|
|
1941
1805
|
:param mode: Mode, How to define coordinates to point custom normals to
|
|
@@ -1959,9 +1823,9 @@ def point_normals(
|
|
|
1959
1823
|
"""
|
|
1960
1824
|
|
|
1961
1825
|
def poke(
|
|
1962
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1963
1826
|
execution_context: int | str | None = None,
|
|
1964
1827
|
undo: bool | None = None,
|
|
1828
|
+
/,
|
|
1965
1829
|
*,
|
|
1966
1830
|
offset: float | None = 0.0,
|
|
1967
1831
|
use_relative_offset: bool | None = False,
|
|
@@ -1970,7 +1834,6 @@ def poke(
|
|
|
1970
1834
|
):
|
|
1971
1835
|
"""Split a face into a fan
|
|
1972
1836
|
|
|
1973
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1974
1837
|
:type execution_context: int | str | None
|
|
1975
1838
|
:type undo: bool | None
|
|
1976
1839
|
:param offset: Poke Offset, Poke Offset
|
|
@@ -1991,13 +1854,14 @@ def poke(
|
|
|
1991
1854
|
"""
|
|
1992
1855
|
|
|
1993
1856
|
def polybuild_delete_at_cursor(
|
|
1994
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1995
1857
|
execution_context: int | str | None = None,
|
|
1996
1858
|
undo: bool | None = None,
|
|
1859
|
+
/,
|
|
1997
1860
|
*,
|
|
1998
1861
|
mirror: bool | None = False,
|
|
1999
1862
|
use_proportional_edit: bool | None = False,
|
|
2000
|
-
proportional_edit_falloff: bpy.
|
|
1863
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
1864
|
+
| None = "SMOOTH",
|
|
2001
1865
|
proportional_size: float | None = 1.0,
|
|
2002
1866
|
use_proportional_connected: bool | None = False,
|
|
2003
1867
|
use_proportional_projected: bool | None = False,
|
|
@@ -2006,7 +1870,6 @@ def polybuild_delete_at_cursor(
|
|
|
2006
1870
|
):
|
|
2007
1871
|
"""Undocumented, consider contributing.
|
|
2008
1872
|
|
|
2009
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2010
1873
|
:type execution_context: int | str | None
|
|
2011
1874
|
:type undo: bool | None
|
|
2012
1875
|
:param mirror: Mirror Editing
|
|
@@ -2014,7 +1877,7 @@ def polybuild_delete_at_cursor(
|
|
|
2014
1877
|
:param use_proportional_edit: Proportional Editing
|
|
2015
1878
|
:type use_proportional_edit: bool | None
|
|
2016
1879
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2017
|
-
:type proportional_edit_falloff: bpy.
|
|
1880
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
2018
1881
|
:param proportional_size: Proportional Size
|
|
2019
1882
|
:type proportional_size: float | None
|
|
2020
1883
|
:param use_proportional_connected: Connected
|
|
@@ -2028,21 +1891,18 @@ def polybuild_delete_at_cursor(
|
|
|
2028
1891
|
"""
|
|
2029
1892
|
|
|
2030
1893
|
def polybuild_dissolve_at_cursor(
|
|
2031
|
-
|
|
2032
|
-
execution_context: int | str | None = None,
|
|
2033
|
-
undo: bool | None = None,
|
|
1894
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2034
1895
|
):
|
|
2035
1896
|
"""Undocumented, consider contributing.
|
|
2036
1897
|
|
|
2037
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2038
1898
|
:type execution_context: int | str | None
|
|
2039
1899
|
:type undo: bool | None
|
|
2040
1900
|
"""
|
|
2041
1901
|
|
|
2042
1902
|
def polybuild_extrude_at_cursor_move(
|
|
2043
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2044
1903
|
execution_context: int | str | None = None,
|
|
2045
1904
|
undo: bool | None = None,
|
|
1905
|
+
/,
|
|
2046
1906
|
*,
|
|
2047
1907
|
MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
|
|
2048
1908
|
MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
|
|
@@ -2050,7 +1910,6 @@ def polybuild_extrude_at_cursor_move(
|
|
|
2050
1910
|
):
|
|
2051
1911
|
"""Undocumented, consider contributing.
|
|
2052
1912
|
|
|
2053
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2054
1913
|
:type execution_context: int | str | None
|
|
2055
1914
|
:type undo: bool | None
|
|
2056
1915
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2062,14 +1921,15 @@ def polybuild_extrude_at_cursor_move(
|
|
|
2062
1921
|
"""
|
|
2063
1922
|
|
|
2064
1923
|
def polybuild_face_at_cursor(
|
|
2065
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2066
1924
|
execution_context: int | str | None = None,
|
|
2067
1925
|
undo: bool | None = None,
|
|
1926
|
+
/,
|
|
2068
1927
|
*,
|
|
2069
1928
|
create_quads: bool | None = True,
|
|
2070
1929
|
mirror: bool | None = False,
|
|
2071
1930
|
use_proportional_edit: bool | None = False,
|
|
2072
|
-
proportional_edit_falloff: bpy.
|
|
1931
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
1932
|
+
| None = "SMOOTH",
|
|
2073
1933
|
proportional_size: float | None = 1.0,
|
|
2074
1934
|
use_proportional_connected: bool | None = False,
|
|
2075
1935
|
use_proportional_projected: bool | None = False,
|
|
@@ -2078,7 +1938,6 @@ def polybuild_face_at_cursor(
|
|
|
2078
1938
|
):
|
|
2079
1939
|
"""Undocumented, consider contributing.
|
|
2080
1940
|
|
|
2081
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2082
1941
|
:type execution_context: int | str | None
|
|
2083
1942
|
:type undo: bool | None
|
|
2084
1943
|
:param create_quads: Create Quads, Automatically split edges in triangles to maintain quad topology
|
|
@@ -2088,7 +1947,7 @@ def polybuild_face_at_cursor(
|
|
|
2088
1947
|
:param use_proportional_edit: Proportional Editing
|
|
2089
1948
|
:type use_proportional_edit: bool | None
|
|
2090
1949
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2091
|
-
:type proportional_edit_falloff: bpy.
|
|
1950
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
2092
1951
|
:param proportional_size: Proportional Size
|
|
2093
1952
|
:type proportional_size: float | None
|
|
2094
1953
|
:param use_proportional_connected: Connected
|
|
@@ -2102,16 +1961,15 @@ def polybuild_face_at_cursor(
|
|
|
2102
1961
|
"""
|
|
2103
1962
|
|
|
2104
1963
|
def polybuild_face_at_cursor_move(
|
|
2105
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2106
1964
|
execution_context: int | str | None = None,
|
|
2107
1965
|
undo: bool | None = None,
|
|
1966
|
+
/,
|
|
2108
1967
|
*,
|
|
2109
1968
|
MESH_OT_polybuild_face_at_cursor: polybuild_face_at_cursor | None = None,
|
|
2110
1969
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2111
1970
|
):
|
|
2112
1971
|
"""Undocumented, consider contributing.
|
|
2113
1972
|
|
|
2114
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2115
1973
|
:type execution_context: int | str | None
|
|
2116
1974
|
:type undo: bool | None
|
|
2117
1975
|
:param MESH_OT_polybuild_face_at_cursor: Poly Build Face at Cursor
|
|
@@ -2121,13 +1979,14 @@ def polybuild_face_at_cursor_move(
|
|
|
2121
1979
|
"""
|
|
2122
1980
|
|
|
2123
1981
|
def polybuild_split_at_cursor(
|
|
2124
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2125
1982
|
execution_context: int | str | None = None,
|
|
2126
1983
|
undo: bool | None = None,
|
|
1984
|
+
/,
|
|
2127
1985
|
*,
|
|
2128
1986
|
mirror: bool | None = False,
|
|
2129
1987
|
use_proportional_edit: bool | None = False,
|
|
2130
|
-
proportional_edit_falloff: bpy.
|
|
1988
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
1989
|
+
| None = "SMOOTH",
|
|
2131
1990
|
proportional_size: float | None = 1.0,
|
|
2132
1991
|
use_proportional_connected: bool | None = False,
|
|
2133
1992
|
use_proportional_projected: bool | None = False,
|
|
@@ -2136,7 +1995,6 @@ def polybuild_split_at_cursor(
|
|
|
2136
1995
|
):
|
|
2137
1996
|
"""Undocumented, consider contributing.
|
|
2138
1997
|
|
|
2139
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2140
1998
|
:type execution_context: int | str | None
|
|
2141
1999
|
:type undo: bool | None
|
|
2142
2000
|
:param mirror: Mirror Editing
|
|
@@ -2144,7 +2002,7 @@ def polybuild_split_at_cursor(
|
|
|
2144
2002
|
:param use_proportional_edit: Proportional Editing
|
|
2145
2003
|
:type use_proportional_edit: bool | None
|
|
2146
2004
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2147
|
-
:type proportional_edit_falloff: bpy.
|
|
2005
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
2148
2006
|
:param proportional_size: Proportional Size
|
|
2149
2007
|
:type proportional_size: float | None
|
|
2150
2008
|
:param use_proportional_connected: Connected
|
|
@@ -2158,16 +2016,15 @@ def polybuild_split_at_cursor(
|
|
|
2158
2016
|
"""
|
|
2159
2017
|
|
|
2160
2018
|
def polybuild_split_at_cursor_move(
|
|
2161
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2162
2019
|
execution_context: int | str | None = None,
|
|
2163
2020
|
undo: bool | None = None,
|
|
2021
|
+
/,
|
|
2164
2022
|
*,
|
|
2165
2023
|
MESH_OT_polybuild_split_at_cursor: polybuild_split_at_cursor | None = None,
|
|
2166
2024
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2167
2025
|
):
|
|
2168
2026
|
"""Undocumented, consider contributing.
|
|
2169
2027
|
|
|
2170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2171
2028
|
:type execution_context: int | str | None
|
|
2172
2029
|
:type undo: bool | None
|
|
2173
2030
|
:param MESH_OT_polybuild_split_at_cursor: Poly Build Split at Cursor
|
|
@@ -2177,13 +2034,14 @@ def polybuild_split_at_cursor_move(
|
|
|
2177
2034
|
"""
|
|
2178
2035
|
|
|
2179
2036
|
def polybuild_transform_at_cursor(
|
|
2180
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2181
2037
|
execution_context: int | str | None = None,
|
|
2182
2038
|
undo: bool | None = None,
|
|
2039
|
+
/,
|
|
2183
2040
|
*,
|
|
2184
2041
|
mirror: bool | None = False,
|
|
2185
2042
|
use_proportional_edit: bool | None = False,
|
|
2186
|
-
proportional_edit_falloff: bpy.
|
|
2043
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
2044
|
+
| None = "SMOOTH",
|
|
2187
2045
|
proportional_size: float | None = 1.0,
|
|
2188
2046
|
use_proportional_connected: bool | None = False,
|
|
2189
2047
|
use_proportional_projected: bool | None = False,
|
|
@@ -2192,7 +2050,6 @@ def polybuild_transform_at_cursor(
|
|
|
2192
2050
|
):
|
|
2193
2051
|
"""Undocumented, consider contributing.
|
|
2194
2052
|
|
|
2195
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2196
2053
|
:type execution_context: int | str | None
|
|
2197
2054
|
:type undo: bool | None
|
|
2198
2055
|
:param mirror: Mirror Editing
|
|
@@ -2200,7 +2057,7 @@ def polybuild_transform_at_cursor(
|
|
|
2200
2057
|
:param use_proportional_edit: Proportional Editing
|
|
2201
2058
|
:type use_proportional_edit: bool | None
|
|
2202
2059
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2203
|
-
:type proportional_edit_falloff: bpy.
|
|
2060
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
2204
2061
|
:param proportional_size: Proportional Size
|
|
2205
2062
|
:type proportional_size: float | None
|
|
2206
2063
|
:param use_proportional_connected: Connected
|
|
@@ -2214,16 +2071,15 @@ def polybuild_transform_at_cursor(
|
|
|
2214
2071
|
"""
|
|
2215
2072
|
|
|
2216
2073
|
def polybuild_transform_at_cursor_move(
|
|
2217
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2218
2074
|
execution_context: int | str | None = None,
|
|
2219
2075
|
undo: bool | None = None,
|
|
2076
|
+
/,
|
|
2220
2077
|
*,
|
|
2221
2078
|
MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
|
|
2222
2079
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2223
2080
|
):
|
|
2224
2081
|
"""Undocumented, consider contributing.
|
|
2225
2082
|
|
|
2226
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2227
2083
|
:type execution_context: int | str | None
|
|
2228
2084
|
:type undo: bool | None
|
|
2229
2085
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2233,9 +2089,9 @@ def polybuild_transform_at_cursor_move(
|
|
|
2233
2089
|
"""
|
|
2234
2090
|
|
|
2235
2091
|
def primitive_circle_add(
|
|
2236
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2237
2092
|
execution_context: int | str | None = None,
|
|
2238
2093
|
undo: bool | None = None,
|
|
2094
|
+
/,
|
|
2239
2095
|
*,
|
|
2240
2096
|
vertices: int | None = 32,
|
|
2241
2097
|
radius: float | None = 1.0,
|
|
@@ -2257,7 +2113,6 @@ def primitive_circle_add(
|
|
|
2257
2113
|
):
|
|
2258
2114
|
"""Construct a circle mesh
|
|
2259
2115
|
|
|
2260
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2261
2116
|
:type execution_context: int | str | None
|
|
2262
2117
|
:type undo: bool | None
|
|
2263
2118
|
:param vertices: Vertices
|
|
@@ -2299,9 +2154,9 @@ def primitive_circle_add(
|
|
|
2299
2154
|
"""
|
|
2300
2155
|
|
|
2301
2156
|
def primitive_cone_add(
|
|
2302
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2303
2157
|
execution_context: int | str | None = None,
|
|
2304
2158
|
undo: bool | None = None,
|
|
2159
|
+
/,
|
|
2305
2160
|
*,
|
|
2306
2161
|
vertices: int | None = 32,
|
|
2307
2162
|
radius1: float | None = 1.0,
|
|
@@ -2325,7 +2180,6 @@ def primitive_cone_add(
|
|
|
2325
2180
|
):
|
|
2326
2181
|
"""Construct a conic mesh
|
|
2327
2182
|
|
|
2328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2329
2183
|
:type execution_context: int | str | None
|
|
2330
2184
|
:type undo: bool | None
|
|
2331
2185
|
:param vertices: Vertices
|
|
@@ -2371,9 +2225,9 @@ def primitive_cone_add(
|
|
|
2371
2225
|
"""
|
|
2372
2226
|
|
|
2373
2227
|
def primitive_cube_add(
|
|
2374
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2375
2228
|
execution_context: int | str | None = None,
|
|
2376
2229
|
undo: bool | None = None,
|
|
2230
|
+
/,
|
|
2377
2231
|
*,
|
|
2378
2232
|
size: float | None = 2.0,
|
|
2379
2233
|
calc_uvs: bool | None = True,
|
|
@@ -2393,7 +2247,6 @@ def primitive_cube_add(
|
|
|
2393
2247
|
):
|
|
2394
2248
|
"""Construct a cube mesh that consists of six square faces
|
|
2395
2249
|
|
|
2396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2397
2250
|
:type execution_context: int | str | None
|
|
2398
2251
|
:type undo: bool | None
|
|
2399
2252
|
:param size: Size
|
|
@@ -2422,9 +2275,9 @@ def primitive_cube_add(
|
|
|
2422
2275
|
"""
|
|
2423
2276
|
|
|
2424
2277
|
def primitive_cube_add_gizmo(
|
|
2425
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2426
2278
|
execution_context: int | str | None = None,
|
|
2427
2279
|
undo: bool | None = None,
|
|
2280
|
+
/,
|
|
2428
2281
|
*,
|
|
2429
2282
|
calc_uvs: bool | None = True,
|
|
2430
2283
|
enter_editmode: bool | None = False,
|
|
@@ -2451,7 +2304,6 @@ def primitive_cube_add_gizmo(
|
|
|
2451
2304
|
):
|
|
2452
2305
|
"""Construct a cube mesh
|
|
2453
2306
|
|
|
2454
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2455
2307
|
:type execution_context: int | str | None
|
|
2456
2308
|
:type undo: bool | None
|
|
2457
2309
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
@@ -2480,9 +2332,9 @@ def primitive_cube_add_gizmo(
|
|
|
2480
2332
|
"""
|
|
2481
2333
|
|
|
2482
2334
|
def primitive_cylinder_add(
|
|
2483
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2484
2335
|
execution_context: int | str | None = None,
|
|
2485
2336
|
undo: bool | None = None,
|
|
2337
|
+
/,
|
|
2486
2338
|
*,
|
|
2487
2339
|
vertices: int | None = 32,
|
|
2488
2340
|
radius: float | None = 1.0,
|
|
@@ -2505,7 +2357,6 @@ def primitive_cylinder_add(
|
|
|
2505
2357
|
):
|
|
2506
2358
|
"""Construct a cylinder mesh
|
|
2507
2359
|
|
|
2508
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2509
2360
|
:type execution_context: int | str | None
|
|
2510
2361
|
:type undo: bool | None
|
|
2511
2362
|
:param vertices: Vertices
|
|
@@ -2549,9 +2400,9 @@ def primitive_cylinder_add(
|
|
|
2549
2400
|
"""
|
|
2550
2401
|
|
|
2551
2402
|
def primitive_grid_add(
|
|
2552
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2553
2403
|
execution_context: int | str | None = None,
|
|
2554
2404
|
undo: bool | None = None,
|
|
2405
|
+
/,
|
|
2555
2406
|
*,
|
|
2556
2407
|
x_subdivisions: int | None = 10,
|
|
2557
2408
|
y_subdivisions: int | None = 10,
|
|
@@ -2573,7 +2424,6 @@ def primitive_grid_add(
|
|
|
2573
2424
|
):
|
|
2574
2425
|
"""Construct a subdivided plane mesh
|
|
2575
2426
|
|
|
2576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2577
2427
|
:type execution_context: int | str | None
|
|
2578
2428
|
:type undo: bool | None
|
|
2579
2429
|
:param x_subdivisions: X Subdivisions
|
|
@@ -2606,9 +2456,9 @@ def primitive_grid_add(
|
|
|
2606
2456
|
"""
|
|
2607
2457
|
|
|
2608
2458
|
def primitive_ico_sphere_add(
|
|
2609
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2610
2459
|
execution_context: int | str | None = None,
|
|
2611
2460
|
undo: bool | None = None,
|
|
2461
|
+
/,
|
|
2612
2462
|
*,
|
|
2613
2463
|
subdivisions: int | None = 2,
|
|
2614
2464
|
radius: float | None = 1.0,
|
|
@@ -2629,7 +2479,6 @@ def primitive_ico_sphere_add(
|
|
|
2629
2479
|
):
|
|
2630
2480
|
"""Construct a spherical mesh that consists of equally sized triangles
|
|
2631
2481
|
|
|
2632
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2633
2482
|
:type execution_context: int | str | None
|
|
2634
2483
|
:type undo: bool | None
|
|
2635
2484
|
:param subdivisions: Subdivisions
|
|
@@ -2660,9 +2509,9 @@ def primitive_ico_sphere_add(
|
|
|
2660
2509
|
"""
|
|
2661
2510
|
|
|
2662
2511
|
def primitive_monkey_add(
|
|
2663
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2664
2512
|
execution_context: int | str | None = None,
|
|
2665
2513
|
undo: bool | None = None,
|
|
2514
|
+
/,
|
|
2666
2515
|
*,
|
|
2667
2516
|
size: float | None = 2.0,
|
|
2668
2517
|
calc_uvs: bool | None = True,
|
|
@@ -2682,7 +2531,6 @@ def primitive_monkey_add(
|
|
|
2682
2531
|
):
|
|
2683
2532
|
"""Construct a Suzanne mesh
|
|
2684
2533
|
|
|
2685
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2686
2534
|
:type execution_context: int | str | None
|
|
2687
2535
|
:type undo: bool | None
|
|
2688
2536
|
:param size: Size
|
|
@@ -2711,9 +2559,9 @@ def primitive_monkey_add(
|
|
|
2711
2559
|
"""
|
|
2712
2560
|
|
|
2713
2561
|
def primitive_plane_add(
|
|
2714
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2715
2562
|
execution_context: int | str | None = None,
|
|
2716
2563
|
undo: bool | None = None,
|
|
2564
|
+
/,
|
|
2717
2565
|
*,
|
|
2718
2566
|
size: float | None = 2.0,
|
|
2719
2567
|
calc_uvs: bool | None = True,
|
|
@@ -2733,7 +2581,6 @@ def primitive_plane_add(
|
|
|
2733
2581
|
):
|
|
2734
2582
|
"""Construct a filled planar mesh with 4 vertices
|
|
2735
2583
|
|
|
2736
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2737
2584
|
:type execution_context: int | str | None
|
|
2738
2585
|
:type undo: bool | None
|
|
2739
2586
|
:param size: Size
|
|
@@ -2762,9 +2609,9 @@ def primitive_plane_add(
|
|
|
2762
2609
|
"""
|
|
2763
2610
|
|
|
2764
2611
|
def primitive_torus_add(
|
|
2765
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2766
2612
|
execution_context: int | str | None = None,
|
|
2767
2613
|
undo: bool | None = None,
|
|
2614
|
+
/,
|
|
2768
2615
|
*,
|
|
2769
2616
|
align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
|
|
2770
2617
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
@@ -2788,7 +2635,6 @@ def primitive_torus_add(
|
|
|
2788
2635
|
):
|
|
2789
2636
|
"""Construct a torus mesh
|
|
2790
2637
|
|
|
2791
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2792
2638
|
:type execution_context: int | str | None
|
|
2793
2639
|
:type undo: bool | None
|
|
2794
2640
|
:param align: Align
|
|
@@ -2831,9 +2677,9 @@ def primitive_torus_add(
|
|
|
2831
2677
|
"""
|
|
2832
2678
|
|
|
2833
2679
|
def primitive_uv_sphere_add(
|
|
2834
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2835
2680
|
execution_context: int | str | None = None,
|
|
2836
2681
|
undo: bool | None = None,
|
|
2682
|
+
/,
|
|
2837
2683
|
*,
|
|
2838
2684
|
segments: int | None = 32,
|
|
2839
2685
|
ring_count: int | None = 16,
|
|
@@ -2855,7 +2701,6 @@ def primitive_uv_sphere_add(
|
|
|
2855
2701
|
):
|
|
2856
2702
|
"""Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
|
|
2857
2703
|
|
|
2858
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2859
2704
|
:type execution_context: int | str | None
|
|
2860
2705
|
:type undo: bool | None
|
|
2861
2706
|
:param segments: Segments
|
|
@@ -2888,40 +2733,38 @@ def primitive_uv_sphere_add(
|
|
|
2888
2733
|
"""
|
|
2889
2734
|
|
|
2890
2735
|
def quads_convert_to_tris(
|
|
2891
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2892
2736
|
execution_context: int | str | None = None,
|
|
2893
2737
|
undo: bool | None = None,
|
|
2738
|
+
/,
|
|
2894
2739
|
*,
|
|
2895
|
-
quad_method: bpy.
|
|
2896
|
-
|
|
2740
|
+
quad_method: bpy._typing.rna_enums.ModifierTriangulateQuadMethodItems
|
|
2741
|
+
| None = "BEAUTY",
|
|
2742
|
+
ngon_method: bpy._typing.rna_enums.ModifierTriangulateNgonMethodItems
|
|
2743
|
+
| None = "BEAUTY",
|
|
2897
2744
|
):
|
|
2898
2745
|
"""Triangulate selected faces
|
|
2899
2746
|
|
|
2900
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2901
2747
|
:type execution_context: int | str | None
|
|
2902
2748
|
:type undo: bool | None
|
|
2903
2749
|
:param quad_method: Quad Method, Method for splitting the quads into triangles
|
|
2904
|
-
:type quad_method: bpy.
|
|
2750
|
+
:type quad_method: bpy._typing.rna_enums.ModifierTriangulateQuadMethodItems | None
|
|
2905
2751
|
:param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
|
|
2906
|
-
:type ngon_method: bpy.
|
|
2752
|
+
:type ngon_method: bpy._typing.rna_enums.ModifierTriangulateNgonMethodItems | None
|
|
2907
2753
|
"""
|
|
2908
2754
|
|
|
2909
2755
|
def region_to_loop(
|
|
2910
|
-
|
|
2911
|
-
execution_context: int | str | None = None,
|
|
2912
|
-
undo: bool | None = None,
|
|
2756
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2913
2757
|
):
|
|
2914
2758
|
"""Select boundary edges around the selected faces
|
|
2915
2759
|
|
|
2916
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2917
2760
|
:type execution_context: int | str | None
|
|
2918
2761
|
:type undo: bool | None
|
|
2919
2762
|
"""
|
|
2920
2763
|
|
|
2921
2764
|
def remove_doubles(
|
|
2922
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2923
2765
|
execution_context: int | str | None = None,
|
|
2924
2766
|
undo: bool | None = None,
|
|
2767
|
+
/,
|
|
2925
2768
|
*,
|
|
2926
2769
|
threshold: float | None = 0.0001,
|
|
2927
2770
|
use_unselected: bool | None = False,
|
|
@@ -2929,7 +2772,6 @@ def remove_doubles(
|
|
|
2929
2772
|
):
|
|
2930
2773
|
"""Merge vertices based on their proximity
|
|
2931
2774
|
|
|
2932
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2933
2775
|
:type execution_context: int | str | None
|
|
2934
2776
|
:type undo: bool | None
|
|
2935
2777
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -2941,15 +2783,14 @@ def remove_doubles(
|
|
|
2941
2783
|
"""
|
|
2942
2784
|
|
|
2943
2785
|
def reveal(
|
|
2944
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2945
2786
|
execution_context: int | str | None = None,
|
|
2946
2787
|
undo: bool | None = None,
|
|
2788
|
+
/,
|
|
2947
2789
|
*,
|
|
2948
2790
|
select: bool | None = True,
|
|
2949
2791
|
):
|
|
2950
2792
|
"""Reveal all hidden vertices, edges and faces
|
|
2951
2793
|
|
|
2952
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2953
2794
|
:type execution_context: int | str | None
|
|
2954
2795
|
:type undo: bool | None
|
|
2955
2796
|
:param select: Select
|
|
@@ -2957,13 +2798,14 @@ def reveal(
|
|
|
2957
2798
|
"""
|
|
2958
2799
|
|
|
2959
2800
|
def rip(
|
|
2960
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2961
2801
|
execution_context: int | str | None = None,
|
|
2962
2802
|
undo: bool | None = None,
|
|
2803
|
+
/,
|
|
2963
2804
|
*,
|
|
2964
2805
|
mirror: bool | None = False,
|
|
2965
2806
|
use_proportional_edit: bool | None = False,
|
|
2966
|
-
proportional_edit_falloff: bpy.
|
|
2807
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
2808
|
+
| None = "SMOOTH",
|
|
2967
2809
|
proportional_size: float | None = 1.0,
|
|
2968
2810
|
use_proportional_connected: bool | None = False,
|
|
2969
2811
|
use_proportional_projected: bool | None = False,
|
|
@@ -2973,7 +2815,6 @@ def rip(
|
|
|
2973
2815
|
):
|
|
2974
2816
|
"""Disconnect vertex or edges from connected geometry
|
|
2975
2817
|
|
|
2976
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2977
2818
|
:type execution_context: int | str | None
|
|
2978
2819
|
:type undo: bool | None
|
|
2979
2820
|
:param mirror: Mirror Editing
|
|
@@ -2981,7 +2822,7 @@ def rip(
|
|
|
2981
2822
|
:param use_proportional_edit: Proportional Editing
|
|
2982
2823
|
:type use_proportional_edit: bool | None
|
|
2983
2824
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2984
|
-
:type proportional_edit_falloff: bpy.
|
|
2825
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
2985
2826
|
:param proportional_size: Proportional Size
|
|
2986
2827
|
:type proportional_size: float | None
|
|
2987
2828
|
:param use_proportional_connected: Connected
|
|
@@ -2997,13 +2838,14 @@ def rip(
|
|
|
2997
2838
|
"""
|
|
2998
2839
|
|
|
2999
2840
|
def rip_edge(
|
|
3000
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3001
2841
|
execution_context: int | str | None = None,
|
|
3002
2842
|
undo: bool | None = None,
|
|
2843
|
+
/,
|
|
3003
2844
|
*,
|
|
3004
2845
|
mirror: bool | None = False,
|
|
3005
2846
|
use_proportional_edit: bool | None = False,
|
|
3006
|
-
proportional_edit_falloff: bpy.
|
|
2847
|
+
proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems
|
|
2848
|
+
| None = "SMOOTH",
|
|
3007
2849
|
proportional_size: float | None = 1.0,
|
|
3008
2850
|
use_proportional_connected: bool | None = False,
|
|
3009
2851
|
use_proportional_projected: bool | None = False,
|
|
@@ -3012,7 +2854,6 @@ def rip_edge(
|
|
|
3012
2854
|
):
|
|
3013
2855
|
"""Extend vertices along the edge closest to the cursor
|
|
3014
2856
|
|
|
3015
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3016
2857
|
:type execution_context: int | str | None
|
|
3017
2858
|
:type undo: bool | None
|
|
3018
2859
|
:param mirror: Mirror Editing
|
|
@@ -3020,7 +2861,7 @@ def rip_edge(
|
|
|
3020
2861
|
:param use_proportional_edit: Proportional Editing
|
|
3021
2862
|
:type use_proportional_edit: bool | None
|
|
3022
2863
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
3023
|
-
:type proportional_edit_falloff: bpy.
|
|
2864
|
+
:type proportional_edit_falloff: bpy._typing.rna_enums.ProportionalFalloffItems | None
|
|
3024
2865
|
:param proportional_size: Proportional Size
|
|
3025
2866
|
:type proportional_size: float | None
|
|
3026
2867
|
:param use_proportional_connected: Connected
|
|
@@ -3034,16 +2875,15 @@ def rip_edge(
|
|
|
3034
2875
|
"""
|
|
3035
2876
|
|
|
3036
2877
|
def rip_edge_move(
|
|
3037
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3038
2878
|
execution_context: int | str | None = None,
|
|
3039
2879
|
undo: bool | None = None,
|
|
2880
|
+
/,
|
|
3040
2881
|
*,
|
|
3041
2882
|
MESH_OT_rip_edge: rip_edge | None = None,
|
|
3042
2883
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
3043
2884
|
):
|
|
3044
2885
|
"""Extend vertices and move the result
|
|
3045
2886
|
|
|
3046
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3047
2887
|
:type execution_context: int | str | None
|
|
3048
2888
|
:type undo: bool | None
|
|
3049
2889
|
:param MESH_OT_rip_edge: Extend Vertices, Extend vertices along the edge closest to the cursor
|
|
@@ -3053,16 +2893,15 @@ def rip_edge_move(
|
|
|
3053
2893
|
"""
|
|
3054
2894
|
|
|
3055
2895
|
def rip_move(
|
|
3056
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3057
2896
|
execution_context: int | str | None = None,
|
|
3058
2897
|
undo: bool | None = None,
|
|
2898
|
+
/,
|
|
3059
2899
|
*,
|
|
3060
2900
|
MESH_OT_rip: rip | None = None,
|
|
3061
2901
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
3062
2902
|
):
|
|
3063
2903
|
"""Rip polygons and move the result
|
|
3064
2904
|
|
|
3065
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3066
2905
|
:type execution_context: int | str | None
|
|
3067
2906
|
:type undo: bool | None
|
|
3068
2907
|
:param MESH_OT_rip: Rip, Disconnect vertex or edges from connected geometry
|
|
@@ -3072,9 +2911,9 @@ def rip_move(
|
|
|
3072
2911
|
"""
|
|
3073
2912
|
|
|
3074
2913
|
def screw(
|
|
3075
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3076
2914
|
execution_context: int | str | None = None,
|
|
3077
2915
|
undo: bool | None = None,
|
|
2916
|
+
/,
|
|
3078
2917
|
*,
|
|
3079
2918
|
steps: int | None = 9,
|
|
3080
2919
|
turns: int | None = 1,
|
|
@@ -3083,7 +2922,6 @@ def screw(
|
|
|
3083
2922
|
):
|
|
3084
2923
|
"""Extrude selected vertices in screw-shaped rotation around the cursor in indicated viewport
|
|
3085
2924
|
|
|
3086
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3087
2925
|
:type execution_context: int | str | None
|
|
3088
2926
|
:type undo: bool | None
|
|
3089
2927
|
:param steps: Steps, Steps
|
|
@@ -3097,15 +2935,14 @@ def screw(
|
|
|
3097
2935
|
"""
|
|
3098
2936
|
|
|
3099
2937
|
def select_all(
|
|
3100
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3101
2938
|
execution_context: int | str | None = None,
|
|
3102
2939
|
undo: bool | None = None,
|
|
2940
|
+
/,
|
|
3103
2941
|
*,
|
|
3104
2942
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
3105
2943
|
):
|
|
3106
2944
|
"""(De)select all vertices, edges or faces
|
|
3107
2945
|
|
|
3108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3109
2946
|
:type execution_context: int | str | None
|
|
3110
2947
|
:type undo: bool | None
|
|
3111
2948
|
:param action: Action, Selection action to execute
|
|
@@ -3125,46 +2962,42 @@ def select_all(
|
|
|
3125
2962
|
"""
|
|
3126
2963
|
|
|
3127
2964
|
def select_axis(
|
|
3128
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3129
2965
|
execution_context: int | str | None = None,
|
|
3130
2966
|
undo: bool | None = None,
|
|
2967
|
+
/,
|
|
3131
2968
|
*,
|
|
3132
|
-
orientation: bpy.
|
|
2969
|
+
orientation: bpy._typing.rna_enums.TransformOrientationItems | None = "LOCAL",
|
|
3133
2970
|
sign: typing.Literal["POS", "NEG", "ALIGN"] | None = "POS",
|
|
3134
|
-
axis: bpy.
|
|
2971
|
+
axis: bpy._typing.rna_enums.AxisXyzItems | None = "X",
|
|
3135
2972
|
threshold: float | None = 0.0001,
|
|
3136
2973
|
):
|
|
3137
2974
|
"""Select all data in the mesh on a single axis
|
|
3138
2975
|
|
|
3139
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3140
2976
|
:type execution_context: int | str | None
|
|
3141
2977
|
:type undo: bool | None
|
|
3142
2978
|
:param orientation: Axis Mode, Axis orientation
|
|
3143
|
-
:type orientation: bpy.
|
|
2979
|
+
:type orientation: bpy._typing.rna_enums.TransformOrientationItems | None
|
|
3144
2980
|
:param sign: Axis Sign, Side to select
|
|
3145
2981
|
:type sign: typing.Literal['POS','NEG','ALIGN'] | None
|
|
3146
2982
|
:param axis: Axis, Select the axis to compare each vertex on
|
|
3147
|
-
:type axis: bpy.
|
|
2983
|
+
:type axis: bpy._typing.rna_enums.AxisXyzItems | None
|
|
3148
2984
|
:param threshold: Threshold
|
|
3149
2985
|
:type threshold: float | None
|
|
3150
2986
|
"""
|
|
3151
2987
|
|
|
3152
2988
|
def select_by_attribute(
|
|
3153
|
-
|
|
3154
|
-
execution_context: int | str | None = None,
|
|
3155
|
-
undo: bool | None = None,
|
|
2989
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3156
2990
|
):
|
|
3157
2991
|
"""Select elements based on the active boolean attribute
|
|
3158
2992
|
|
|
3159
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3160
2993
|
:type execution_context: int | str | None
|
|
3161
2994
|
:type undo: bool | None
|
|
3162
2995
|
"""
|
|
3163
2996
|
|
|
3164
2997
|
def select_by_pole_count(
|
|
3165
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3166
2998
|
execution_context: int | str | None = None,
|
|
3167
2999
|
undo: bool | None = None,
|
|
3000
|
+
/,
|
|
3168
3001
|
*,
|
|
3169
3002
|
pole_count: int | None = 4,
|
|
3170
3003
|
type: typing.Literal["LESS", "EQUAL", "GREATER", "NOTEQUAL"] | None = "NOTEQUAL",
|
|
@@ -3173,7 +3006,6 @@ def select_by_pole_count(
|
|
|
3173
3006
|
):
|
|
3174
3007
|
"""Select vertices at poles by the number of connected edges. In edge and face mode the geometry connected to the vertices is selected
|
|
3175
3008
|
|
|
3176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3177
3009
|
:type execution_context: int | str | None
|
|
3178
3010
|
:type undo: bool | None
|
|
3179
3011
|
:param pole_count: Pole Count
|
|
@@ -3187,9 +3019,9 @@ def select_by_pole_count(
|
|
|
3187
3019
|
"""
|
|
3188
3020
|
|
|
3189
3021
|
def select_face_by_sides(
|
|
3190
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3191
3022
|
execution_context: int | str | None = None,
|
|
3192
3023
|
undo: bool | None = None,
|
|
3024
|
+
/,
|
|
3193
3025
|
*,
|
|
3194
3026
|
number: int | None = 4,
|
|
3195
3027
|
type: typing.Literal["LESS", "EQUAL", "GREATER", "NOTEQUAL"] | None = "EQUAL",
|
|
@@ -3197,7 +3029,6 @@ def select_face_by_sides(
|
|
|
3197
3029
|
):
|
|
3198
3030
|
"""Select vertices or faces by the number of face sides
|
|
3199
3031
|
|
|
3200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3201
3032
|
:type execution_context: int | str | None
|
|
3202
3033
|
:type undo: bool | None
|
|
3203
3034
|
:param number: Number of Vertices
|
|
@@ -3209,27 +3040,23 @@ def select_face_by_sides(
|
|
|
3209
3040
|
"""
|
|
3210
3041
|
|
|
3211
3042
|
def select_interior_faces(
|
|
3212
|
-
|
|
3213
|
-
execution_context: int | str | None = None,
|
|
3214
|
-
undo: bool | None = None,
|
|
3043
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3215
3044
|
):
|
|
3216
3045
|
"""Select faces where all edges have more than 2 face users
|
|
3217
3046
|
|
|
3218
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3219
3047
|
:type execution_context: int | str | None
|
|
3220
3048
|
:type undo: bool | None
|
|
3221
3049
|
"""
|
|
3222
3050
|
|
|
3223
3051
|
def select_less(
|
|
3224
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3225
3052
|
execution_context: int | str | None = None,
|
|
3226
3053
|
undo: bool | None = None,
|
|
3054
|
+
/,
|
|
3227
3055
|
*,
|
|
3228
3056
|
use_face_step: bool | None = True,
|
|
3229
3057
|
):
|
|
3230
3058
|
"""Deselect vertices, edges or faces at the boundary of each selection region
|
|
3231
3059
|
|
|
3232
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3233
3060
|
:type execution_context: int | str | None
|
|
3234
3061
|
:type undo: bool | None
|
|
3235
3062
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3237,54 +3064,51 @@ def select_less(
|
|
|
3237
3064
|
"""
|
|
3238
3065
|
|
|
3239
3066
|
def select_linked(
|
|
3240
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3241
3067
|
execution_context: int | str | None = None,
|
|
3242
3068
|
undo: bool | None = None,
|
|
3069
|
+
/,
|
|
3243
3070
|
*,
|
|
3244
|
-
delimit: set[bpy.
|
|
3071
|
+
delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"SEAM"},
|
|
3245
3072
|
):
|
|
3246
3073
|
"""Select all vertices connected to the current selection
|
|
3247
3074
|
|
|
3248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3249
3075
|
:type execution_context: int | str | None
|
|
3250
3076
|
:type undo: bool | None
|
|
3251
3077
|
:param delimit: Delimit, Delimit selected region
|
|
3252
|
-
:type delimit: set[bpy.
|
|
3078
|
+
:type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
|
|
3253
3079
|
"""
|
|
3254
3080
|
|
|
3255
3081
|
def select_linked_pick(
|
|
3256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3257
3082
|
execution_context: int | str | None = None,
|
|
3258
3083
|
undo: bool | None = None,
|
|
3084
|
+
/,
|
|
3259
3085
|
*,
|
|
3260
3086
|
deselect: bool | None = False,
|
|
3261
|
-
delimit: set[bpy.
|
|
3087
|
+
delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None = {"SEAM"},
|
|
3262
3088
|
object_index: int | None = -1,
|
|
3263
3089
|
index: int | None = -1,
|
|
3264
3090
|
):
|
|
3265
3091
|
"""(De)select all vertices linked to the edge under the mouse cursor
|
|
3266
3092
|
|
|
3267
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3268
3093
|
:type execution_context: int | str | None
|
|
3269
3094
|
:type undo: bool | None
|
|
3270
3095
|
:param deselect: Deselect
|
|
3271
3096
|
:type deselect: bool | None
|
|
3272
3097
|
:param delimit: Delimit, Delimit selected region
|
|
3273
|
-
:type delimit: set[bpy.
|
|
3098
|
+
:type delimit: set[bpy._typing.rna_enums.MeshDelimitModeItems] | None
|
|
3274
3099
|
:type object_index: int | None
|
|
3275
3100
|
:type index: int | None
|
|
3276
3101
|
"""
|
|
3277
3102
|
|
|
3278
3103
|
def select_loose(
|
|
3279
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3280
3104
|
execution_context: int | str | None = None,
|
|
3281
3105
|
undo: bool | None = None,
|
|
3106
|
+
/,
|
|
3282
3107
|
*,
|
|
3283
3108
|
extend: bool | None = False,
|
|
3284
3109
|
):
|
|
3285
3110
|
"""Select loose geometry based on the selection mode
|
|
3286
3111
|
|
|
3287
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3288
3112
|
:type execution_context: int | str | None
|
|
3289
3113
|
:type undo: bool | None
|
|
3290
3114
|
:param extend: Extend, Extend the selection
|
|
@@ -3292,37 +3116,35 @@ def select_loose(
|
|
|
3292
3116
|
"""
|
|
3293
3117
|
|
|
3294
3118
|
def select_mirror(
|
|
3295
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3296
3119
|
execution_context: int | str | None = None,
|
|
3297
3120
|
undo: bool | None = None,
|
|
3121
|
+
/,
|
|
3298
3122
|
*,
|
|
3299
|
-
axis: set[bpy.
|
|
3123
|
+
axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None = {"X"},
|
|
3300
3124
|
extend: bool | None = False,
|
|
3301
3125
|
):
|
|
3302
3126
|
"""Select mesh items at mirrored locations
|
|
3303
3127
|
|
|
3304
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3305
3128
|
:type execution_context: int | str | None
|
|
3306
3129
|
:type undo: bool | None
|
|
3307
3130
|
:param axis: Axis
|
|
3308
|
-
:type axis: set[bpy.
|
|
3131
|
+
:type axis: set[bpy._typing.rna_enums.AxisFlagXyzItems] | None
|
|
3309
3132
|
:param extend: Extend, Extend the existing selection
|
|
3310
3133
|
:type extend: bool | None
|
|
3311
3134
|
"""
|
|
3312
3135
|
|
|
3313
3136
|
def select_mode(
|
|
3314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3315
3137
|
execution_context: int | str | None = None,
|
|
3316
3138
|
undo: bool | None = None,
|
|
3139
|
+
/,
|
|
3317
3140
|
*,
|
|
3318
3141
|
use_extend: bool | None = False,
|
|
3319
3142
|
use_expand: bool | None = False,
|
|
3320
|
-
type: bpy.
|
|
3143
|
+
type: bpy._typing.rna_enums.MeshSelectModeItems | None = "VERT",
|
|
3321
3144
|
action: typing.Literal["DISABLE", "ENABLE", "TOGGLE"] | None = "TOGGLE",
|
|
3322
3145
|
):
|
|
3323
3146
|
"""Change selection mode
|
|
3324
3147
|
|
|
3325
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3326
3148
|
:type execution_context: int | str | None
|
|
3327
3149
|
:type undo: bool | None
|
|
3328
3150
|
:param use_extend: Extend
|
|
@@ -3330,7 +3152,7 @@ def select_mode(
|
|
|
3330
3152
|
:param use_expand: Expand
|
|
3331
3153
|
:type use_expand: bool | None
|
|
3332
3154
|
:param type: Type
|
|
3333
|
-
:type type: bpy.
|
|
3155
|
+
:type type: bpy._typing.rna_enums.MeshSelectModeItems | None
|
|
3334
3156
|
:param action: Action, Selection action to execute
|
|
3335
3157
|
|
|
3336
3158
|
DISABLE
|
|
@@ -3345,15 +3167,14 @@ def select_mode(
|
|
|
3345
3167
|
"""
|
|
3346
3168
|
|
|
3347
3169
|
def select_more(
|
|
3348
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3349
3170
|
execution_context: int | str | None = None,
|
|
3350
3171
|
undo: bool | None = None,
|
|
3172
|
+
/,
|
|
3351
3173
|
*,
|
|
3352
3174
|
use_face_step: bool | None = True,
|
|
3353
3175
|
):
|
|
3354
3176
|
"""Select more vertices, edges or faces connected to initial selection
|
|
3355
3177
|
|
|
3356
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3357
3178
|
:type execution_context: int | str | None
|
|
3358
3179
|
:type undo: bool | None
|
|
3359
3180
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3361,21 +3182,18 @@ def select_more(
|
|
|
3361
3182
|
"""
|
|
3362
3183
|
|
|
3363
3184
|
def select_next_item(
|
|
3364
|
-
|
|
3365
|
-
execution_context: int | str | None = None,
|
|
3366
|
-
undo: bool | None = None,
|
|
3185
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3367
3186
|
):
|
|
3368
3187
|
"""Select the next element (using selection order)
|
|
3369
3188
|
|
|
3370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3371
3189
|
:type execution_context: int | str | None
|
|
3372
3190
|
:type undo: bool | None
|
|
3373
3191
|
"""
|
|
3374
3192
|
|
|
3375
3193
|
def select_non_manifold(
|
|
3376
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3377
3194
|
execution_context: int | str | None = None,
|
|
3378
3195
|
undo: bool | None = None,
|
|
3196
|
+
/,
|
|
3379
3197
|
*,
|
|
3380
3198
|
extend: bool | None = True,
|
|
3381
3199
|
use_wire: bool | None = True,
|
|
@@ -3386,7 +3204,6 @@ def select_non_manifold(
|
|
|
3386
3204
|
):
|
|
3387
3205
|
"""Select all non-manifold vertices or edges
|
|
3388
3206
|
|
|
3389
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3390
3207
|
:type execution_context: int | str | None
|
|
3391
3208
|
:type undo: bool | None
|
|
3392
3209
|
:param extend: Extend, Extend the selection
|
|
@@ -3404,9 +3221,9 @@ def select_non_manifold(
|
|
|
3404
3221
|
"""
|
|
3405
3222
|
|
|
3406
3223
|
def select_nth(
|
|
3407
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3408
3224
|
execution_context: int | str | None = None,
|
|
3409
3225
|
undo: bool | None = None,
|
|
3226
|
+
/,
|
|
3410
3227
|
*,
|
|
3411
3228
|
skip: int | None = 1,
|
|
3412
3229
|
nth: int | None = 1,
|
|
@@ -3414,7 +3231,6 @@ def select_nth(
|
|
|
3414
3231
|
):
|
|
3415
3232
|
"""Deselect every Nth element starting from the active vertex, edge or face
|
|
3416
3233
|
|
|
3417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3418
3234
|
:type execution_context: int | str | None
|
|
3419
3235
|
:type undo: bool | None
|
|
3420
3236
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
@@ -3426,21 +3242,18 @@ def select_nth(
|
|
|
3426
3242
|
"""
|
|
3427
3243
|
|
|
3428
3244
|
def select_prev_item(
|
|
3429
|
-
|
|
3430
|
-
execution_context: int | str | None = None,
|
|
3431
|
-
undo: bool | None = None,
|
|
3245
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3432
3246
|
):
|
|
3433
3247
|
"""Select the previous element (using selection order)
|
|
3434
3248
|
|
|
3435
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3436
3249
|
:type execution_context: int | str | None
|
|
3437
3250
|
:type undo: bool | None
|
|
3438
3251
|
"""
|
|
3439
3252
|
|
|
3440
3253
|
def select_random(
|
|
3441
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3442
3254
|
execution_context: int | str | None = None,
|
|
3443
3255
|
undo: bool | None = None,
|
|
3256
|
+
/,
|
|
3444
3257
|
*,
|
|
3445
3258
|
ratio: float | None = 0.5,
|
|
3446
3259
|
seed: int | None = 0,
|
|
@@ -3448,7 +3261,6 @@ def select_random(
|
|
|
3448
3261
|
):
|
|
3449
3262
|
"""Randomly select vertices
|
|
3450
3263
|
|
|
3451
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3452
3264
|
:type execution_context: int | str | None
|
|
3453
3265
|
:type undo: bool | None
|
|
3454
3266
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -3466,9 +3278,9 @@ def select_random(
|
|
|
3466
3278
|
"""
|
|
3467
3279
|
|
|
3468
3280
|
def select_similar(
|
|
3469
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3470
3281
|
execution_context: int | str | None = None,
|
|
3471
3282
|
undo: bool | None = None,
|
|
3283
|
+
/,
|
|
3472
3284
|
*,
|
|
3473
3285
|
type: typing.Literal[
|
|
3474
3286
|
"VERT_NORMAL",
|
|
@@ -3500,7 +3312,6 @@ def select_similar(
|
|
|
3500
3312
|
):
|
|
3501
3313
|
"""Select similar vertices, edges or faces by property types
|
|
3502
3314
|
|
|
3503
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3504
3315
|
:type execution_context: int | str | None
|
|
3505
3316
|
:type undo: bool | None
|
|
3506
3317
|
:param type: Type
|
|
@@ -3512,27 +3323,23 @@ def select_similar(
|
|
|
3512
3323
|
"""
|
|
3513
3324
|
|
|
3514
3325
|
def select_similar_region(
|
|
3515
|
-
|
|
3516
|
-
execution_context: int | str | None = None,
|
|
3517
|
-
undo: bool | None = None,
|
|
3326
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3518
3327
|
):
|
|
3519
3328
|
"""Select similar face regions to the current selection
|
|
3520
3329
|
|
|
3521
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3522
3330
|
:type execution_context: int | str | None
|
|
3523
3331
|
:type undo: bool | None
|
|
3524
3332
|
"""
|
|
3525
3333
|
|
|
3526
3334
|
def select_ungrouped(
|
|
3527
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3528
3335
|
execution_context: int | str | None = None,
|
|
3529
3336
|
undo: bool | None = None,
|
|
3337
|
+
/,
|
|
3530
3338
|
*,
|
|
3531
3339
|
extend: bool | None = False,
|
|
3532
3340
|
):
|
|
3533
3341
|
"""Select vertices without a group
|
|
3534
3342
|
|
|
3535
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3536
3343
|
:type execution_context: int | str | None
|
|
3537
3344
|
:type undo: bool | None
|
|
3538
3345
|
:param extend: Extend, Extend the selection
|
|
@@ -3540,15 +3347,14 @@ def select_ungrouped(
|
|
|
3540
3347
|
"""
|
|
3541
3348
|
|
|
3542
3349
|
def separate(
|
|
3543
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3544
3350
|
execution_context: int | str | None = None,
|
|
3545
3351
|
undo: bool | None = None,
|
|
3352
|
+
/,
|
|
3546
3353
|
*,
|
|
3547
3354
|
type: typing.Literal["SELECTED", "MATERIAL", "LOOSE"] | None = "SELECTED",
|
|
3548
3355
|
):
|
|
3549
3356
|
"""Separate selected geometry into a new mesh
|
|
3550
3357
|
|
|
3551
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3552
3358
|
:type execution_context: int | str | None
|
|
3553
3359
|
:type undo: bool | None
|
|
3554
3360
|
:param type: Type
|
|
@@ -3556,15 +3362,14 @@ def separate(
|
|
|
3556
3362
|
"""
|
|
3557
3363
|
|
|
3558
3364
|
def set_normals_from_faces(
|
|
3559
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3560
3365
|
execution_context: int | str | None = None,
|
|
3561
3366
|
undo: bool | None = None,
|
|
3367
|
+
/,
|
|
3562
3368
|
*,
|
|
3563
3369
|
keep_sharp: bool | None = False,
|
|
3564
3370
|
):
|
|
3565
3371
|
"""Set the custom normals from the selected faces ones
|
|
3566
3372
|
|
|
3567
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3568
3373
|
:type execution_context: int | str | None
|
|
3569
3374
|
:type undo: bool | None
|
|
3570
3375
|
:param keep_sharp: Keep Sharp Edges, Do not set sharp edges to face
|
|
@@ -3572,16 +3377,15 @@ def set_normals_from_faces(
|
|
|
3572
3377
|
"""
|
|
3573
3378
|
|
|
3574
3379
|
def set_sharpness_by_angle(
|
|
3575
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3576
3380
|
execution_context: int | str | None = None,
|
|
3577
3381
|
undo: bool | None = None,
|
|
3382
|
+
/,
|
|
3578
3383
|
*,
|
|
3579
3384
|
angle: float | None = 0.523599,
|
|
3580
3385
|
extend: bool | None = False,
|
|
3581
3386
|
):
|
|
3582
3387
|
"""Set edge sharpness based on the angle between neighboring faces
|
|
3583
3388
|
|
|
3584
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3585
3389
|
:type execution_context: int | str | None
|
|
3586
3390
|
:type undo: bool | None
|
|
3587
3391
|
:param angle: Angle
|
|
@@ -3591,21 +3395,18 @@ def set_sharpness_by_angle(
|
|
|
3591
3395
|
"""
|
|
3592
3396
|
|
|
3593
3397
|
def shape_propagate_to_all(
|
|
3594
|
-
|
|
3595
|
-
execution_context: int | str | None = None,
|
|
3596
|
-
undo: bool | None = None,
|
|
3398
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3597
3399
|
):
|
|
3598
3400
|
"""Apply selected vertex locations to all other shape keys
|
|
3599
3401
|
|
|
3600
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3601
3402
|
:type execution_context: int | str | None
|
|
3602
3403
|
:type undo: bool | None
|
|
3603
3404
|
"""
|
|
3604
3405
|
|
|
3605
3406
|
def shortest_path_pick(
|
|
3606
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3607
3407
|
execution_context: int | str | None = None,
|
|
3608
3408
|
undo: bool | None = None,
|
|
3409
|
+
/,
|
|
3609
3410
|
*,
|
|
3610
3411
|
edge_mode: typing.Literal["SELECT", "SEAM", "SHARP", "CREASE", "BEVEL", "FREESTYLE"]
|
|
3611
3412
|
| None = "SELECT",
|
|
@@ -3619,7 +3420,6 @@ def shortest_path_pick(
|
|
|
3619
3420
|
):
|
|
3620
3421
|
"""Select shortest path between two selections
|
|
3621
3422
|
|
|
3622
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3623
3423
|
:type execution_context: int | str | None
|
|
3624
3424
|
:type undo: bool | None
|
|
3625
3425
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3640,9 +3440,9 @@ def shortest_path_pick(
|
|
|
3640
3440
|
"""
|
|
3641
3441
|
|
|
3642
3442
|
def shortest_path_select(
|
|
3643
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3644
3443
|
execution_context: int | str | None = None,
|
|
3645
3444
|
undo: bool | None = None,
|
|
3445
|
+
/,
|
|
3646
3446
|
*,
|
|
3647
3447
|
edge_mode: typing.Literal["SELECT", "SEAM", "SHARP", "CREASE", "BEVEL", "FREESTYLE"]
|
|
3648
3448
|
| None = "SELECT",
|
|
@@ -3655,7 +3455,6 @@ def shortest_path_select(
|
|
|
3655
3455
|
):
|
|
3656
3456
|
"""Selected shortest path between two vertices/edges/faces
|
|
3657
3457
|
|
|
3658
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3659
3458
|
:type execution_context: int | str | None
|
|
3660
3459
|
:type undo: bool | None
|
|
3661
3460
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3675,15 +3474,14 @@ def shortest_path_select(
|
|
|
3675
3474
|
"""
|
|
3676
3475
|
|
|
3677
3476
|
def smooth_normals(
|
|
3678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3679
3477
|
execution_context: int | str | None = None,
|
|
3680
3478
|
undo: bool | None = None,
|
|
3479
|
+
/,
|
|
3681
3480
|
*,
|
|
3682
3481
|
factor: float | None = 0.5,
|
|
3683
3482
|
):
|
|
3684
3483
|
"""Smooth custom normals based on adjacent vertex normals
|
|
3685
3484
|
|
|
3686
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3687
3485
|
:type execution_context: int | str | None
|
|
3688
3486
|
:type undo: bool | None
|
|
3689
3487
|
:param factor: Factor, Specifies weight of smooth vs original normal
|
|
@@ -3691,15 +3489,14 @@ def smooth_normals(
|
|
|
3691
3489
|
"""
|
|
3692
3490
|
|
|
3693
3491
|
def solidify(
|
|
3694
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3695
3492
|
execution_context: int | str | None = None,
|
|
3696
3493
|
undo: bool | None = None,
|
|
3494
|
+
/,
|
|
3697
3495
|
*,
|
|
3698
3496
|
thickness: float | None = 0.01,
|
|
3699
3497
|
):
|
|
3700
3498
|
"""Create a solid skin by extruding, compensating for sharp angles
|
|
3701
3499
|
|
|
3702
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3703
3500
|
:type execution_context: int | str | None
|
|
3704
3501
|
:type undo: bool | None
|
|
3705
3502
|
:param thickness: Thickness
|
|
@@ -3707,9 +3504,9 @@ def solidify(
|
|
|
3707
3504
|
"""
|
|
3708
3505
|
|
|
3709
3506
|
def sort_elements(
|
|
3710
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3711
3507
|
execution_context: int | str | None = None,
|
|
3712
3508
|
undo: bool | None = None,
|
|
3509
|
+
/,
|
|
3713
3510
|
*,
|
|
3714
3511
|
type: typing.Literal[
|
|
3715
3512
|
"VIEW_ZAXIS",
|
|
@@ -3727,7 +3524,6 @@ def sort_elements(
|
|
|
3727
3524
|
):
|
|
3728
3525
|
"""The order of selected vertices/edges/faces is modified, based on a given method
|
|
3729
3526
|
|
|
3730
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3731
3527
|
:type execution_context: int | str | None
|
|
3732
3528
|
:type undo: bool | None
|
|
3733
3529
|
:param type: Type, Type of reordering operation to apply
|
|
@@ -3763,9 +3559,9 @@ def sort_elements(
|
|
|
3763
3559
|
"""
|
|
3764
3560
|
|
|
3765
3561
|
def spin(
|
|
3766
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3767
3562
|
execution_context: int | str | None = None,
|
|
3768
3563
|
undo: bool | None = None,
|
|
3564
|
+
/,
|
|
3769
3565
|
*,
|
|
3770
3566
|
steps: int | None = 12,
|
|
3771
3567
|
dupli: bool | None = False,
|
|
@@ -3777,7 +3573,6 @@ def spin(
|
|
|
3777
3573
|
):
|
|
3778
3574
|
"""Extrude selected vertices in a circle around the cursor in indicated viewport
|
|
3779
3575
|
|
|
3780
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3781
3576
|
:type execution_context: int | str | None
|
|
3782
3577
|
:type undo: bool | None
|
|
3783
3578
|
:param steps: Steps, Steps
|
|
@@ -3796,34 +3591,24 @@ def spin(
|
|
|
3796
3591
|
:type axis: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
3797
3592
|
"""
|
|
3798
3593
|
|
|
3799
|
-
def split(
|
|
3800
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3801
|
-
execution_context: int | str | None = None,
|
|
3802
|
-
undo: bool | None = None,
|
|
3803
|
-
):
|
|
3594
|
+
def split(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3804
3595
|
"""Split off selected geometry from connected unselected geometry
|
|
3805
3596
|
|
|
3806
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3807
3597
|
:type execution_context: int | str | None
|
|
3808
3598
|
:type undo: bool | None
|
|
3809
3599
|
"""
|
|
3810
3600
|
|
|
3811
|
-
def split_normals(
|
|
3812
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3813
|
-
execution_context: int | str | None = None,
|
|
3814
|
-
undo: bool | None = None,
|
|
3815
|
-
):
|
|
3601
|
+
def split_normals(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3816
3602
|
"""Split custom normals of selected vertices
|
|
3817
3603
|
|
|
3818
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3819
3604
|
:type execution_context: int | str | None
|
|
3820
3605
|
:type undo: bool | None
|
|
3821
3606
|
"""
|
|
3822
3607
|
|
|
3823
3608
|
def subdivide(
|
|
3824
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3825
3609
|
execution_context: int | str | None = None,
|
|
3826
3610
|
undo: bool | None = None,
|
|
3611
|
+
/,
|
|
3827
3612
|
*,
|
|
3828
3613
|
number_cuts: int | None = 1,
|
|
3829
3614
|
smoothness: float | None = 0.0,
|
|
@@ -3836,7 +3621,6 @@ def subdivide(
|
|
|
3836
3621
|
):
|
|
3837
3622
|
"""Subdivide selected edges
|
|
3838
3623
|
|
|
3839
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3840
3624
|
:type execution_context: int | str | None
|
|
3841
3625
|
:type undo: bool | None
|
|
3842
3626
|
:param number_cuts: Number of Cuts
|
|
@@ -3856,19 +3640,19 @@ def subdivide(
|
|
|
3856
3640
|
"""
|
|
3857
3641
|
|
|
3858
3642
|
def subdivide_edgering(
|
|
3859
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3860
3643
|
execution_context: int | str | None = None,
|
|
3861
3644
|
undo: bool | None = None,
|
|
3645
|
+
/,
|
|
3862
3646
|
*,
|
|
3863
3647
|
number_cuts: int | None = 10,
|
|
3864
3648
|
interpolation: typing.Literal["LINEAR", "PATH", "SURFACE"] | None = "PATH",
|
|
3865
3649
|
smoothness: float | None = 1.0,
|
|
3866
3650
|
profile_shape_factor: float | None = 0.0,
|
|
3867
|
-
profile_shape: bpy.
|
|
3651
|
+
profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems
|
|
3652
|
+
| None = "SMOOTH",
|
|
3868
3653
|
):
|
|
3869
3654
|
"""Subdivide perpendicular edges to the selected edge-ring
|
|
3870
3655
|
|
|
3871
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3872
3656
|
:type execution_context: int | str | None
|
|
3873
3657
|
:type undo: bool | None
|
|
3874
3658
|
:param number_cuts: Number of Cuts
|
|
@@ -3880,45 +3664,43 @@ def subdivide_edgering(
|
|
|
3880
3664
|
:param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
|
|
3881
3665
|
:type profile_shape_factor: float | None
|
|
3882
3666
|
:param profile_shape: Profile Shape, Shape of the profile
|
|
3883
|
-
:type profile_shape: bpy.
|
|
3667
|
+
:type profile_shape: bpy._typing.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
3884
3668
|
"""
|
|
3885
3669
|
|
|
3886
3670
|
def symmetrize(
|
|
3887
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3888
3671
|
execution_context: int | str | None = None,
|
|
3889
3672
|
undo: bool | None = None,
|
|
3673
|
+
/,
|
|
3890
3674
|
*,
|
|
3891
|
-
direction: bpy.
|
|
3675
|
+
direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None = "NEGATIVE_X",
|
|
3892
3676
|
threshold: float | None = 0.0001,
|
|
3893
3677
|
):
|
|
3894
3678
|
"""Enforce symmetry (both form and topological) across an axis
|
|
3895
3679
|
|
|
3896
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3897
3680
|
:type execution_context: int | str | None
|
|
3898
3681
|
:type undo: bool | None
|
|
3899
3682
|
:param direction: Direction, Which sides to copy from and to
|
|
3900
|
-
:type direction: bpy.
|
|
3683
|
+
:type direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None
|
|
3901
3684
|
:param threshold: Threshold, Limit for snap middle vertices to the axis center
|
|
3902
3685
|
:type threshold: float | None
|
|
3903
3686
|
"""
|
|
3904
3687
|
|
|
3905
3688
|
def symmetry_snap(
|
|
3906
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3907
3689
|
execution_context: int | str | None = None,
|
|
3908
3690
|
undo: bool | None = None,
|
|
3691
|
+
/,
|
|
3909
3692
|
*,
|
|
3910
|
-
direction: bpy.
|
|
3693
|
+
direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None = "NEGATIVE_X",
|
|
3911
3694
|
threshold: float | None = 0.05,
|
|
3912
3695
|
factor: float | None = 0.5,
|
|
3913
3696
|
use_center: bool | None = True,
|
|
3914
3697
|
):
|
|
3915
3698
|
"""Snap vertex pairs to their mirrored locations
|
|
3916
3699
|
|
|
3917
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3918
3700
|
:type execution_context: int | str | None
|
|
3919
3701
|
:type undo: bool | None
|
|
3920
3702
|
:param direction: Direction, Which sides to copy from and to
|
|
3921
|
-
:type direction: bpy.
|
|
3703
|
+
:type direction: bpy._typing.rna_enums.SymmetrizeDirectionItems | None
|
|
3922
3704
|
:param threshold: Threshold, Distance within which matching vertices are searched
|
|
3923
3705
|
:type threshold: float | None
|
|
3924
3706
|
:param factor: Factor, Mix factor of the locations of the vertices
|
|
@@ -3928,9 +3710,9 @@ def symmetry_snap(
|
|
|
3928
3710
|
"""
|
|
3929
3711
|
|
|
3930
3712
|
def tris_convert_to_quads(
|
|
3931
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3932
3713
|
execution_context: int | str | None = None,
|
|
3933
3714
|
undo: bool | None = None,
|
|
3715
|
+
/,
|
|
3934
3716
|
*,
|
|
3935
3717
|
face_threshold: float | None = 0.698132,
|
|
3936
3718
|
shape_threshold: float | None = 0.698132,
|
|
@@ -3944,7 +3726,6 @@ def tris_convert_to_quads(
|
|
|
3944
3726
|
):
|
|
3945
3727
|
"""Join triangles into quads
|
|
3946
3728
|
|
|
3947
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3948
3729
|
:type execution_context: int | str | None
|
|
3949
3730
|
:type undo: bool | None
|
|
3950
3731
|
:param face_threshold: Max Face Angle, Face angle limit
|
|
@@ -3968,15 +3749,14 @@ def tris_convert_to_quads(
|
|
|
3968
3749
|
"""
|
|
3969
3750
|
|
|
3970
3751
|
def unsubdivide(
|
|
3971
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3972
3752
|
execution_context: int | str | None = None,
|
|
3973
3753
|
undo: bool | None = None,
|
|
3754
|
+
/,
|
|
3974
3755
|
*,
|
|
3975
3756
|
iterations: int | None = 2,
|
|
3976
3757
|
):
|
|
3977
3758
|
"""Un-subdivide selected edges and faces
|
|
3978
3759
|
|
|
3979
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3980
3760
|
:type execution_context: int | str | None
|
|
3981
3761
|
:type undo: bool | None
|
|
3982
3762
|
:param iterations: Iterations, Number of times to un-subdivide
|
|
@@ -3984,91 +3764,70 @@ def unsubdivide(
|
|
|
3984
3764
|
"""
|
|
3985
3765
|
|
|
3986
3766
|
def uv_texture_add(
|
|
3987
|
-
|
|
3988
|
-
execution_context: int | str | None = None,
|
|
3989
|
-
undo: bool | None = None,
|
|
3767
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3990
3768
|
):
|
|
3991
3769
|
"""Add UV map
|
|
3992
3770
|
|
|
3993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3994
3771
|
:type execution_context: int | str | None
|
|
3995
3772
|
:type undo: bool | None
|
|
3996
3773
|
"""
|
|
3997
3774
|
|
|
3998
3775
|
def uv_texture_remove(
|
|
3999
|
-
|
|
4000
|
-
execution_context: int | str | None = None,
|
|
4001
|
-
undo: bool | None = None,
|
|
3776
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
4002
3777
|
):
|
|
4003
3778
|
"""Remove UV map
|
|
4004
3779
|
|
|
4005
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4006
3780
|
:type execution_context: int | str | None
|
|
4007
3781
|
:type undo: bool | None
|
|
4008
3782
|
"""
|
|
4009
3783
|
|
|
4010
|
-
def uvs_reverse(
|
|
4011
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4012
|
-
execution_context: int | str | None = None,
|
|
4013
|
-
undo: bool | None = None,
|
|
4014
|
-
):
|
|
3784
|
+
def uvs_reverse(execution_context: int | str | None = None, undo: bool | None = None):
|
|
4015
3785
|
"""Flip direction of UV coordinates inside faces
|
|
4016
3786
|
|
|
4017
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4018
3787
|
:type execution_context: int | str | None
|
|
4019
3788
|
:type undo: bool | None
|
|
4020
3789
|
"""
|
|
4021
3790
|
|
|
4022
3791
|
def uvs_rotate(
|
|
4023
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4024
3792
|
execution_context: int | str | None = None,
|
|
4025
3793
|
undo: bool | None = None,
|
|
3794
|
+
/,
|
|
4026
3795
|
*,
|
|
4027
3796
|
use_ccw: bool | None = False,
|
|
4028
3797
|
):
|
|
4029
3798
|
"""Rotate UV coordinates inside faces
|
|
4030
3799
|
|
|
4031
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4032
3800
|
:type execution_context: int | str | None
|
|
4033
3801
|
:type undo: bool | None
|
|
4034
3802
|
:param use_ccw: Counter Clockwise
|
|
4035
3803
|
:type use_ccw: bool | None
|
|
4036
3804
|
"""
|
|
4037
3805
|
|
|
4038
|
-
def vert_connect(
|
|
4039
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4040
|
-
execution_context: int | str | None = None,
|
|
4041
|
-
undo: bool | None = None,
|
|
4042
|
-
):
|
|
3806
|
+
def vert_connect(execution_context: int | str | None = None, undo: bool | None = None):
|
|
4043
3807
|
"""Connect selected vertices of faces, splitting the face
|
|
4044
3808
|
|
|
4045
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4046
3809
|
:type execution_context: int | str | None
|
|
4047
3810
|
:type undo: bool | None
|
|
4048
3811
|
"""
|
|
4049
3812
|
|
|
4050
3813
|
def vert_connect_concave(
|
|
4051
|
-
|
|
4052
|
-
execution_context: int | str | None = None,
|
|
4053
|
-
undo: bool | None = None,
|
|
3814
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
4054
3815
|
):
|
|
4055
3816
|
"""Make all faces convex
|
|
4056
3817
|
|
|
4057
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4058
3818
|
:type execution_context: int | str | None
|
|
4059
3819
|
:type undo: bool | None
|
|
4060
3820
|
"""
|
|
4061
3821
|
|
|
4062
3822
|
def vert_connect_nonplanar(
|
|
4063
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4064
3823
|
execution_context: int | str | None = None,
|
|
4065
3824
|
undo: bool | None = None,
|
|
3825
|
+
/,
|
|
4066
3826
|
*,
|
|
4067
3827
|
angle_limit: float | None = 0.0872665,
|
|
4068
3828
|
):
|
|
4069
3829
|
"""Split non-planar faces that exceed the angle threshold
|
|
4070
3830
|
|
|
4071
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4072
3831
|
:type execution_context: int | str | None
|
|
4073
3832
|
:type undo: bool | None
|
|
4074
3833
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -4076,21 +3835,18 @@ def vert_connect_nonplanar(
|
|
|
4076
3835
|
"""
|
|
4077
3836
|
|
|
4078
3837
|
def vert_connect_path(
|
|
4079
|
-
|
|
4080
|
-
execution_context: int | str | None = None,
|
|
4081
|
-
undo: bool | None = None,
|
|
3838
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
4082
3839
|
):
|
|
4083
3840
|
"""Connect vertices by their selection order, creating edges, splitting faces
|
|
4084
3841
|
|
|
4085
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4086
3842
|
:type execution_context: int | str | None
|
|
4087
3843
|
:type undo: bool | None
|
|
4088
3844
|
"""
|
|
4089
3845
|
|
|
4090
3846
|
def vertices_smooth(
|
|
4091
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4092
3847
|
execution_context: int | str | None = None,
|
|
4093
3848
|
undo: bool | None = None,
|
|
3849
|
+
/,
|
|
4094
3850
|
*,
|
|
4095
3851
|
factor: float | None = 0.0,
|
|
4096
3852
|
repeat: int | None = 1,
|
|
@@ -4101,7 +3857,6 @@ def vertices_smooth(
|
|
|
4101
3857
|
):
|
|
4102
3858
|
"""Flatten angles of selected vertices
|
|
4103
3859
|
|
|
4104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4105
3860
|
:type execution_context: int | str | None
|
|
4106
3861
|
:type undo: bool | None
|
|
4107
3862
|
:param factor: Smoothing, Smoothing factor
|
|
@@ -4119,9 +3874,9 @@ def vertices_smooth(
|
|
|
4119
3874
|
"""
|
|
4120
3875
|
|
|
4121
3876
|
def vertices_smooth_laplacian(
|
|
4122
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4123
3877
|
execution_context: int | str | None = None,
|
|
4124
3878
|
undo: bool | None = None,
|
|
3879
|
+
/,
|
|
4125
3880
|
*,
|
|
4126
3881
|
repeat: int | None = 1,
|
|
4127
3882
|
lambda_factor: float | None = 1.0,
|
|
@@ -4133,7 +3888,6 @@ def vertices_smooth_laplacian(
|
|
|
4133
3888
|
):
|
|
4134
3889
|
"""Laplacian smooth of selected vertices
|
|
4135
3890
|
|
|
4136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4137
3891
|
:type execution_context: int | str | None
|
|
4138
3892
|
:type undo: bool | None
|
|
4139
3893
|
:param repeat: Number of iterations to smooth the mesh
|
|
@@ -4153,9 +3907,9 @@ def vertices_smooth_laplacian(
|
|
|
4153
3907
|
"""
|
|
4154
3908
|
|
|
4155
3909
|
def wireframe(
|
|
4156
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4157
3910
|
execution_context: int | str | None = None,
|
|
4158
3911
|
undo: bool | None = None,
|
|
3912
|
+
/,
|
|
4159
3913
|
*,
|
|
4160
3914
|
use_boundary: bool | None = True,
|
|
4161
3915
|
use_even_offset: bool | None = True,
|
|
@@ -4168,7 +3922,6 @@ def wireframe(
|
|
|
4168
3922
|
):
|
|
4169
3923
|
"""Create a solid wireframe from faces
|
|
4170
3924
|
|
|
4171
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4172
3925
|
:type execution_context: int | str | None
|
|
4173
3926
|
:type undo: bool | None
|
|
4174
3927
|
:param use_boundary: Boundary, Inset face boundaries
|