fake-bpy-module 20241208__py3-none-any.whl → 20241209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +38 -138
- 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 +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- 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 +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- 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 +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- 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 +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- 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 +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- 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 +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -2,14 +2,13 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.ops.transform
|
|
5
|
-
import bpy.types
|
|
6
5
|
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,
|
|
@@ -316,7 +309,6 @@ def bridge_edge_loops(
|
|
|
316
309
|
):
|
|
317
310
|
"""Create a bridge of faces between two or more selected edge loops
|
|
318
311
|
|
|
319
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
320
312
|
:type execution_context: int | str | None
|
|
321
313
|
:type undo: bool | None
|
|
322
314
|
:param type: Connect Loops, Method of bridging multiple loops
|
|
@@ -340,27 +332,23 @@ def bridge_edge_loops(
|
|
|
340
332
|
"""
|
|
341
333
|
|
|
342
334
|
def colors_reverse(
|
|
343
|
-
|
|
344
|
-
execution_context: int | str | None = None,
|
|
345
|
-
undo: bool | None = None,
|
|
335
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
346
336
|
):
|
|
347
337
|
"""Flip direction of face corner color attribute inside faces
|
|
348
338
|
|
|
349
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
350
339
|
:type execution_context: int | str | None
|
|
351
340
|
:type undo: bool | None
|
|
352
341
|
"""
|
|
353
342
|
|
|
354
343
|
def colors_rotate(
|
|
355
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
356
344
|
execution_context: int | str | None = None,
|
|
357
345
|
undo: bool | None = None,
|
|
346
|
+
/,
|
|
358
347
|
*,
|
|
359
348
|
use_ccw: bool | None = False,
|
|
360
349
|
):
|
|
361
350
|
"""Rotate face corner color attribute inside faces
|
|
362
351
|
|
|
363
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
364
352
|
:type execution_context: int | str | None
|
|
365
353
|
:type undo: bool | None
|
|
366
354
|
:param use_ccw: Counter Clockwise
|
|
@@ -368,9 +356,9 @@ def colors_rotate(
|
|
|
368
356
|
"""
|
|
369
357
|
|
|
370
358
|
def convex_hull(
|
|
371
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
372
359
|
execution_context: int | str | None = None,
|
|
373
360
|
undo: bool | None = None,
|
|
361
|
+
/,
|
|
374
362
|
*,
|
|
375
363
|
delete_unused: bool | None = True,
|
|
376
364
|
use_existing_faces: bool | None = True,
|
|
@@ -388,7 +376,6 @@ def convex_hull(
|
|
|
388
376
|
):
|
|
389
377
|
"""Enclose selected vertices in a convex polyhedron
|
|
390
378
|
|
|
391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
392
379
|
:type execution_context: int | str | None
|
|
393
380
|
:type undo: bool | None
|
|
394
381
|
:param delete_unused: Delete Unused, Delete selected elements that are not used by the hull
|
|
@@ -420,69 +407,54 @@ def convex_hull(
|
|
|
420
407
|
"""
|
|
421
408
|
|
|
422
409
|
def customdata_custom_splitnormals_add(
|
|
423
|
-
|
|
424
|
-
execution_context: int | str | None = None,
|
|
425
|
-
undo: bool | None = None,
|
|
410
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
426
411
|
):
|
|
427
412
|
"""Add a custom split normals layer, if none exists yet
|
|
428
413
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
414
|
:type execution_context: int | str | None
|
|
431
415
|
:type undo: bool | None
|
|
432
416
|
"""
|
|
433
417
|
|
|
434
418
|
def customdata_custom_splitnormals_clear(
|
|
435
|
-
|
|
436
|
-
execution_context: int | str | None = None,
|
|
437
|
-
undo: bool | None = None,
|
|
419
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
438
420
|
):
|
|
439
421
|
"""Remove the custom split normals layer, if it exists
|
|
440
422
|
|
|
441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
442
423
|
:type execution_context: int | str | None
|
|
443
424
|
:type undo: bool | None
|
|
444
425
|
"""
|
|
445
426
|
|
|
446
427
|
def customdata_mask_clear(
|
|
447
|
-
|
|
448
|
-
execution_context: int | str | None = None,
|
|
449
|
-
undo: bool | None = None,
|
|
428
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
450
429
|
):
|
|
451
430
|
"""Clear vertex sculpt masking data from the mesh
|
|
452
431
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
454
432
|
:type execution_context: int | str | None
|
|
455
433
|
:type undo: bool | None
|
|
456
434
|
"""
|
|
457
435
|
|
|
458
436
|
def customdata_skin_add(
|
|
459
|
-
|
|
460
|
-
execution_context: int | str | None = None,
|
|
461
|
-
undo: bool | None = None,
|
|
437
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
462
438
|
):
|
|
463
439
|
"""Add a vertex skin layer
|
|
464
440
|
|
|
465
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
466
441
|
:type execution_context: int | str | None
|
|
467
442
|
:type undo: bool | None
|
|
468
443
|
"""
|
|
469
444
|
|
|
470
445
|
def customdata_skin_clear(
|
|
471
|
-
|
|
472
|
-
execution_context: int | str | None = None,
|
|
473
|
-
undo: bool | None = None,
|
|
446
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
474
447
|
):
|
|
475
448
|
"""Clear vertex skin layer
|
|
476
449
|
|
|
477
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
478
450
|
:type execution_context: int | str | None
|
|
479
451
|
:type undo: bool | None
|
|
480
452
|
"""
|
|
481
453
|
|
|
482
454
|
def decimate(
|
|
483
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
484
455
|
execution_context: int | str | None = None,
|
|
485
456
|
undo: bool | None = None,
|
|
457
|
+
/,
|
|
486
458
|
*,
|
|
487
459
|
ratio: float | None = 1.0,
|
|
488
460
|
use_vertex_group: bool | None = False,
|
|
@@ -493,7 +465,6 @@ def decimate(
|
|
|
493
465
|
):
|
|
494
466
|
"""Simplify geometry by collapsing edges
|
|
495
467
|
|
|
496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
497
468
|
:type execution_context: int | str | None
|
|
498
469
|
:type undo: bool | None
|
|
499
470
|
:param ratio: Ratio
|
|
@@ -511,16 +482,15 @@ def decimate(
|
|
|
511
482
|
"""
|
|
512
483
|
|
|
513
484
|
def delete(
|
|
514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
515
485
|
execution_context: int | str | None = None,
|
|
516
486
|
undo: bool | None = None,
|
|
487
|
+
/,
|
|
517
488
|
*,
|
|
518
489
|
type: typing.Literal["VERT", "EDGE", "FACE", "EDGE_FACE", "ONLY_FACE"]
|
|
519
490
|
| None = "VERT",
|
|
520
491
|
):
|
|
521
492
|
"""Delete selected vertices, edges or faces
|
|
522
493
|
|
|
523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
524
494
|
:type execution_context: int | str | None
|
|
525
495
|
:type undo: bool | None
|
|
526
496
|
:param type: Type, Method used for deleting mesh data
|
|
@@ -528,15 +498,14 @@ def delete(
|
|
|
528
498
|
"""
|
|
529
499
|
|
|
530
500
|
def delete_edgeloop(
|
|
531
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
532
501
|
execution_context: int | str | None = None,
|
|
533
502
|
undo: bool | None = None,
|
|
503
|
+
/,
|
|
534
504
|
*,
|
|
535
505
|
use_face_split: bool | None = True,
|
|
536
506
|
):
|
|
537
507
|
"""Delete an edge loop by merging the faces on each side
|
|
538
508
|
|
|
539
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
540
509
|
:type execution_context: int | str | None
|
|
541
510
|
:type undo: bool | None
|
|
542
511
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -544,9 +513,9 @@ def delete_edgeloop(
|
|
|
544
513
|
"""
|
|
545
514
|
|
|
546
515
|
def delete_loose(
|
|
547
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
548
516
|
execution_context: int | str | None = None,
|
|
549
517
|
undo: bool | None = None,
|
|
518
|
+
/,
|
|
550
519
|
*,
|
|
551
520
|
use_verts: bool | None = True,
|
|
552
521
|
use_edges: bool | None = True,
|
|
@@ -554,7 +523,6 @@ def delete_loose(
|
|
|
554
523
|
):
|
|
555
524
|
"""Delete loose vertices, edges or faces
|
|
556
525
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
558
526
|
:type execution_context: int | str | None
|
|
559
527
|
:type undo: bool | None
|
|
560
528
|
:param use_verts: Vertices, Remove loose vertices
|
|
@@ -566,15 +534,14 @@ def delete_loose(
|
|
|
566
534
|
"""
|
|
567
535
|
|
|
568
536
|
def dissolve_degenerate(
|
|
569
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
570
537
|
execution_context: int | str | None = None,
|
|
571
538
|
undo: bool | None = None,
|
|
539
|
+
/,
|
|
572
540
|
*,
|
|
573
541
|
threshold: float | None = 0.0001,
|
|
574
542
|
):
|
|
575
543
|
"""Dissolve zero area faces and zero length edges
|
|
576
544
|
|
|
577
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
578
545
|
:type execution_context: int | str | None
|
|
579
546
|
:type undo: bool | None
|
|
580
547
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -582,16 +549,15 @@ def dissolve_degenerate(
|
|
|
582
549
|
"""
|
|
583
550
|
|
|
584
551
|
def dissolve_edges(
|
|
585
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
586
552
|
execution_context: int | str | None = None,
|
|
587
553
|
undo: bool | None = None,
|
|
554
|
+
/,
|
|
588
555
|
*,
|
|
589
556
|
use_verts: bool | None = True,
|
|
590
557
|
use_face_split: bool | None = False,
|
|
591
558
|
):
|
|
592
559
|
"""Dissolve edges, merging faces
|
|
593
560
|
|
|
594
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
595
561
|
:type execution_context: int | str | None
|
|
596
562
|
:type undo: bool | None
|
|
597
563
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -601,15 +567,14 @@ def dissolve_edges(
|
|
|
601
567
|
"""
|
|
602
568
|
|
|
603
569
|
def dissolve_faces(
|
|
604
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
605
570
|
execution_context: int | str | None = None,
|
|
606
571
|
undo: bool | None = None,
|
|
572
|
+
/,
|
|
607
573
|
*,
|
|
608
574
|
use_verts: bool | None = False,
|
|
609
575
|
):
|
|
610
576
|
"""Dissolve faces
|
|
611
577
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
578
|
:type execution_context: int | str | None
|
|
614
579
|
:type undo: bool | None
|
|
615
580
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -617,9 +582,9 @@ def dissolve_faces(
|
|
|
617
582
|
"""
|
|
618
583
|
|
|
619
584
|
def dissolve_limited(
|
|
620
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
621
585
|
execution_context: int | str | None = None,
|
|
622
586
|
undo: bool | None = None,
|
|
587
|
+
/,
|
|
623
588
|
*,
|
|
624
589
|
angle_limit: float | None = 0.0872665,
|
|
625
590
|
use_dissolve_boundaries: bool | None = False,
|
|
@@ -627,7 +592,6 @@ def dissolve_limited(
|
|
|
627
592
|
):
|
|
628
593
|
"""Dissolve selected edges and vertices, limited by the angle of surrounding geometry
|
|
629
594
|
|
|
630
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
631
595
|
:type execution_context: int | str | None
|
|
632
596
|
:type undo: bool | None
|
|
633
597
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -639,9 +603,9 @@ def dissolve_limited(
|
|
|
639
603
|
"""
|
|
640
604
|
|
|
641
605
|
def dissolve_mode(
|
|
642
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
643
606
|
execution_context: int | str | None = None,
|
|
644
607
|
undo: bool | None = None,
|
|
608
|
+
/,
|
|
645
609
|
*,
|
|
646
610
|
use_verts: bool | None = False,
|
|
647
611
|
use_face_split: bool | None = False,
|
|
@@ -649,7 +613,6 @@ def dissolve_mode(
|
|
|
649
613
|
):
|
|
650
614
|
"""Dissolve geometry based on the selection mode
|
|
651
615
|
|
|
652
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
653
616
|
:type execution_context: int | str | None
|
|
654
617
|
:type undo: bool | None
|
|
655
618
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -661,16 +624,15 @@ def dissolve_mode(
|
|
|
661
624
|
"""
|
|
662
625
|
|
|
663
626
|
def dissolve_verts(
|
|
664
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
665
627
|
execution_context: int | str | None = None,
|
|
666
628
|
undo: bool | None = None,
|
|
629
|
+
/,
|
|
667
630
|
*,
|
|
668
631
|
use_face_split: bool | None = False,
|
|
669
632
|
use_boundary_tear: bool | None = False,
|
|
670
633
|
):
|
|
671
634
|
"""Dissolve vertices, merge edges and faces
|
|
672
635
|
|
|
673
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
674
636
|
:type execution_context: int | str | None
|
|
675
637
|
:type undo: bool | None
|
|
676
638
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -680,15 +642,14 @@ def dissolve_verts(
|
|
|
680
642
|
"""
|
|
681
643
|
|
|
682
644
|
def dupli_extrude_cursor(
|
|
683
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
684
645
|
execution_context: int | str | None = None,
|
|
685
646
|
undo: bool | None = None,
|
|
647
|
+
/,
|
|
686
648
|
*,
|
|
687
649
|
rotate_source: bool | None = True,
|
|
688
650
|
):
|
|
689
651
|
"""Duplicate and extrude selected vertices, edges or faces towards the mouse cursor
|
|
690
652
|
|
|
691
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
692
653
|
:type execution_context: int | str | None
|
|
693
654
|
:type undo: bool | None
|
|
694
655
|
:param rotate_source: Rotate Source, Rotate initial selection giving better shape
|
|
@@ -696,15 +657,14 @@ def dupli_extrude_cursor(
|
|
|
696
657
|
"""
|
|
697
658
|
|
|
698
659
|
def duplicate(
|
|
699
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
700
660
|
execution_context: int | str | None = None,
|
|
701
661
|
undo: bool | None = None,
|
|
662
|
+
/,
|
|
702
663
|
*,
|
|
703
664
|
mode: int | None = 1,
|
|
704
665
|
):
|
|
705
666
|
"""Duplicate selected vertices, edges or faces
|
|
706
667
|
|
|
707
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
708
668
|
:type execution_context: int | str | None
|
|
709
669
|
:type undo: bool | None
|
|
710
670
|
:param mode: Mode
|
|
@@ -712,16 +672,15 @@ def duplicate(
|
|
|
712
672
|
"""
|
|
713
673
|
|
|
714
674
|
def duplicate_move(
|
|
715
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
716
675
|
execution_context: int | str | None = None,
|
|
717
676
|
undo: bool | None = None,
|
|
677
|
+
/,
|
|
718
678
|
*,
|
|
719
679
|
MESH_OT_duplicate: duplicate | None = None,
|
|
720
680
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
721
681
|
):
|
|
722
682
|
"""Duplicate mesh and move
|
|
723
683
|
|
|
724
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
725
684
|
:type execution_context: int | str | None
|
|
726
685
|
:type undo: bool | None
|
|
727
686
|
:param MESH_OT_duplicate: Duplicate, Duplicate selected vertices, edges or faces
|
|
@@ -730,40 +689,29 @@ def duplicate_move(
|
|
|
730
689
|
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
731
690
|
"""
|
|
732
691
|
|
|
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
|
-
):
|
|
692
|
+
def edge_collapse(execution_context: int | str | None = None, undo: bool | None = None):
|
|
738
693
|
"""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
694
|
|
|
740
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
741
695
|
:type execution_context: int | str | None
|
|
742
696
|
:type undo: bool | None
|
|
743
697
|
"""
|
|
744
698
|
|
|
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
|
-
):
|
|
699
|
+
def edge_face_add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
750
700
|
"""Add an edge or face to selected
|
|
751
701
|
|
|
752
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
753
702
|
:type execution_context: int | str | None
|
|
754
703
|
:type undo: bool | None
|
|
755
704
|
"""
|
|
756
705
|
|
|
757
706
|
def edge_rotate(
|
|
758
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
759
707
|
execution_context: int | str | None = None,
|
|
760
708
|
undo: bool | None = None,
|
|
709
|
+
/,
|
|
761
710
|
*,
|
|
762
711
|
use_ccw: bool | None = False,
|
|
763
712
|
):
|
|
764
713
|
"""Rotate selected edge or adjoining faces
|
|
765
714
|
|
|
766
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
767
715
|
:type execution_context: int | str | None
|
|
768
716
|
:type undo: bool | None
|
|
769
717
|
:param use_ccw: Counter Clockwise
|
|
@@ -771,15 +719,14 @@ def edge_rotate(
|
|
|
771
719
|
"""
|
|
772
720
|
|
|
773
721
|
def edge_split(
|
|
774
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
775
722
|
execution_context: int | str | None = None,
|
|
776
723
|
undo: bool | None = None,
|
|
724
|
+
/,
|
|
777
725
|
*,
|
|
778
726
|
type: typing.Literal["EDGE", "VERT"] | None = "EDGE",
|
|
779
727
|
):
|
|
780
728
|
"""Split selected edges so that each neighbor face gets its own copy
|
|
781
729
|
|
|
782
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
730
|
:type execution_context: int | str | None
|
|
784
731
|
:type undo: bool | None
|
|
785
732
|
:param type: Type, Method to use for splitting
|
|
@@ -793,9 +740,9 @@ def edge_split(
|
|
|
793
740
|
"""
|
|
794
741
|
|
|
795
742
|
def edgering_select(
|
|
796
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
797
743
|
execution_context: int | str | None = None,
|
|
798
744
|
undo: bool | None = None,
|
|
745
|
+
/,
|
|
799
746
|
*,
|
|
800
747
|
extend: bool | None = False,
|
|
801
748
|
deselect: bool | None = False,
|
|
@@ -804,7 +751,6 @@ def edgering_select(
|
|
|
804
751
|
):
|
|
805
752
|
"""Select an edge ring
|
|
806
753
|
|
|
807
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
808
754
|
:type execution_context: int | str | None
|
|
809
755
|
:type undo: bool | None
|
|
810
756
|
:param extend: Extend, Extend the selection
|
|
@@ -818,15 +764,14 @@ def edgering_select(
|
|
|
818
764
|
"""
|
|
819
765
|
|
|
820
766
|
def edges_select_sharp(
|
|
821
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
822
767
|
execution_context: int | str | None = None,
|
|
823
768
|
undo: bool | None = None,
|
|
769
|
+
/,
|
|
824
770
|
*,
|
|
825
771
|
sharpness: float | None = 0.523599,
|
|
826
772
|
):
|
|
827
773
|
"""Select all sharp enough edges
|
|
828
774
|
|
|
829
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
830
775
|
:type execution_context: int | str | None
|
|
831
776
|
:type undo: bool | None
|
|
832
777
|
:param sharpness: Sharpness
|
|
@@ -834,9 +779,9 @@ def edges_select_sharp(
|
|
|
834
779
|
"""
|
|
835
780
|
|
|
836
781
|
def extrude_context(
|
|
837
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
838
782
|
execution_context: int | str | None = None,
|
|
839
783
|
undo: bool | None = None,
|
|
784
|
+
/,
|
|
840
785
|
*,
|
|
841
786
|
use_normal_flip: bool | None = False,
|
|
842
787
|
use_dissolve_ortho_edges: bool | None = False,
|
|
@@ -844,7 +789,6 @@ def extrude_context(
|
|
|
844
789
|
):
|
|
845
790
|
"""Extrude selection
|
|
846
791
|
|
|
847
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
848
792
|
:type execution_context: int | str | None
|
|
849
793
|
:type undo: bool | None
|
|
850
794
|
:param use_normal_flip: Flip Normals
|
|
@@ -856,16 +800,15 @@ def extrude_context(
|
|
|
856
800
|
"""
|
|
857
801
|
|
|
858
802
|
def extrude_context_move(
|
|
859
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
860
803
|
execution_context: int | str | None = None,
|
|
861
804
|
undo: bool | None = None,
|
|
805
|
+
/,
|
|
862
806
|
*,
|
|
863
807
|
MESH_OT_extrude_context: extrude_context | None = None,
|
|
864
808
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
865
809
|
):
|
|
866
810
|
"""Extrude region together along the average normal
|
|
867
811
|
|
|
868
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
869
812
|
:type execution_context: int | str | None
|
|
870
813
|
:type undo: bool | None
|
|
871
814
|
:param MESH_OT_extrude_context: Extrude Context, Extrude selection
|
|
@@ -875,16 +818,15 @@ def extrude_context_move(
|
|
|
875
818
|
"""
|
|
876
819
|
|
|
877
820
|
def extrude_edges_indiv(
|
|
878
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
879
821
|
execution_context: int | str | None = None,
|
|
880
822
|
undo: bool | None = None,
|
|
823
|
+
/,
|
|
881
824
|
*,
|
|
882
825
|
use_normal_flip: bool | None = False,
|
|
883
826
|
mirror: bool | None = False,
|
|
884
827
|
):
|
|
885
828
|
"""Extrude individual edges only
|
|
886
829
|
|
|
887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
888
830
|
:type execution_context: int | str | None
|
|
889
831
|
:type undo: bool | None
|
|
890
832
|
:param use_normal_flip: Flip Normals
|
|
@@ -894,16 +836,15 @@ def extrude_edges_indiv(
|
|
|
894
836
|
"""
|
|
895
837
|
|
|
896
838
|
def extrude_edges_move(
|
|
897
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
898
839
|
execution_context: int | str | None = None,
|
|
899
840
|
undo: bool | None = None,
|
|
841
|
+
/,
|
|
900
842
|
*,
|
|
901
843
|
MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
|
|
902
844
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
903
845
|
):
|
|
904
846
|
"""Extrude edges and move result
|
|
905
847
|
|
|
906
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
907
848
|
:type execution_context: int | str | None
|
|
908
849
|
:type undo: bool | None
|
|
909
850
|
:param MESH_OT_extrude_edges_indiv: Extrude Only Edges, Extrude individual edges only
|
|
@@ -913,15 +854,14 @@ def extrude_edges_move(
|
|
|
913
854
|
"""
|
|
914
855
|
|
|
915
856
|
def extrude_faces_indiv(
|
|
916
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
917
857
|
execution_context: int | str | None = None,
|
|
918
858
|
undo: bool | None = None,
|
|
859
|
+
/,
|
|
919
860
|
*,
|
|
920
861
|
mirror: bool | None = False,
|
|
921
862
|
):
|
|
922
863
|
"""Extrude individual faces only
|
|
923
864
|
|
|
924
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
925
865
|
:type execution_context: int | str | None
|
|
926
866
|
:type undo: bool | None
|
|
927
867
|
:param mirror: Mirror Editing
|
|
@@ -929,16 +869,15 @@ def extrude_faces_indiv(
|
|
|
929
869
|
"""
|
|
930
870
|
|
|
931
871
|
def extrude_faces_move(
|
|
932
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
933
872
|
execution_context: int | str | None = None,
|
|
934
873
|
undo: bool | None = None,
|
|
874
|
+
/,
|
|
935
875
|
*,
|
|
936
876
|
MESH_OT_extrude_faces_indiv: extrude_faces_indiv | None = None,
|
|
937
877
|
TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
|
|
938
878
|
):
|
|
939
879
|
"""Extrude each individual face separately along local normals
|
|
940
880
|
|
|
941
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
942
881
|
:type execution_context: int | str | None
|
|
943
882
|
:type undo: bool | None
|
|
944
883
|
:param MESH_OT_extrude_faces_indiv: Extrude Individual Faces, Extrude individual faces only
|
|
@@ -948,16 +887,15 @@ def extrude_faces_move(
|
|
|
948
887
|
"""
|
|
949
888
|
|
|
950
889
|
def extrude_manifold(
|
|
951
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
952
890
|
execution_context: int | str | None = None,
|
|
953
891
|
undo: bool | None = None,
|
|
892
|
+
/,
|
|
954
893
|
*,
|
|
955
894
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
956
895
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
957
896
|
):
|
|
958
897
|
"""Extrude, dissolves edges whose faces form a flat surface and intersect new edges
|
|
959
898
|
|
|
960
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
961
899
|
:type execution_context: int | str | None
|
|
962
900
|
:type undo: bool | None
|
|
963
901
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -967,9 +905,9 @@ def extrude_manifold(
|
|
|
967
905
|
"""
|
|
968
906
|
|
|
969
907
|
def extrude_region(
|
|
970
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
971
908
|
execution_context: int | str | None = None,
|
|
972
909
|
undo: bool | None = None,
|
|
910
|
+
/,
|
|
973
911
|
*,
|
|
974
912
|
use_normal_flip: bool | None = False,
|
|
975
913
|
use_dissolve_ortho_edges: bool | None = False,
|
|
@@ -977,7 +915,6 @@ def extrude_region(
|
|
|
977
915
|
):
|
|
978
916
|
"""Extrude region of faces
|
|
979
917
|
|
|
980
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
981
918
|
:type execution_context: int | str | None
|
|
982
919
|
:type undo: bool | None
|
|
983
920
|
:param use_normal_flip: Flip Normals
|
|
@@ -989,16 +926,15 @@ def extrude_region(
|
|
|
989
926
|
"""
|
|
990
927
|
|
|
991
928
|
def extrude_region_move(
|
|
992
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
993
929
|
execution_context: int | str | None = None,
|
|
994
930
|
undo: bool | None = None,
|
|
931
|
+
/,
|
|
995
932
|
*,
|
|
996
933
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
997
934
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
998
935
|
):
|
|
999
936
|
"""Extrude region and move result
|
|
1000
937
|
|
|
1001
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1002
938
|
:type execution_context: int | str | None
|
|
1003
939
|
:type undo: bool | None
|
|
1004
940
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1008,16 +944,15 @@ def extrude_region_move(
|
|
|
1008
944
|
"""
|
|
1009
945
|
|
|
1010
946
|
def extrude_region_shrink_fatten(
|
|
1011
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1012
947
|
execution_context: int | str | None = None,
|
|
1013
948
|
undo: bool | None = None,
|
|
949
|
+
/,
|
|
1014
950
|
*,
|
|
1015
951
|
MESH_OT_extrude_region: extrude_region | None = None,
|
|
1016
952
|
TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None = None,
|
|
1017
953
|
):
|
|
1018
954
|
"""Extrude region together along local normals
|
|
1019
955
|
|
|
1020
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1021
956
|
:type execution_context: int | str | None
|
|
1022
957
|
:type undo: bool | None
|
|
1023
958
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1027,9 +962,9 @@ def extrude_region_shrink_fatten(
|
|
|
1027
962
|
"""
|
|
1028
963
|
|
|
1029
964
|
def extrude_repeat(
|
|
1030
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1031
965
|
execution_context: int | str | None = None,
|
|
1032
966
|
undo: bool | None = None,
|
|
967
|
+
/,
|
|
1033
968
|
*,
|
|
1034
969
|
steps: int | None = 10,
|
|
1035
970
|
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
@@ -1037,7 +972,6 @@ def extrude_repeat(
|
|
|
1037
972
|
):
|
|
1038
973
|
"""Extrude selected vertices, edges or faces repeatedly
|
|
1039
974
|
|
|
1040
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1041
975
|
:type execution_context: int | str | None
|
|
1042
976
|
:type undo: bool | None
|
|
1043
977
|
:param steps: Steps
|
|
@@ -1049,16 +983,15 @@ def extrude_repeat(
|
|
|
1049
983
|
"""
|
|
1050
984
|
|
|
1051
985
|
def extrude_vertices_move(
|
|
1052
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1053
986
|
execution_context: int | str | None = None,
|
|
1054
987
|
undo: bool | None = None,
|
|
988
|
+
/,
|
|
1055
989
|
*,
|
|
1056
990
|
MESH_OT_extrude_verts_indiv: extrude_verts_indiv | None = None,
|
|
1057
991
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1058
992
|
):
|
|
1059
993
|
"""Extrude vertices and move result
|
|
1060
994
|
|
|
1061
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1062
995
|
:type execution_context: int | str | None
|
|
1063
996
|
:type undo: bool | None
|
|
1064
997
|
:param MESH_OT_extrude_verts_indiv: Extrude Only Vertices, Extrude individual vertices only
|
|
@@ -1068,15 +1001,14 @@ def extrude_vertices_move(
|
|
|
1068
1001
|
"""
|
|
1069
1002
|
|
|
1070
1003
|
def extrude_verts_indiv(
|
|
1071
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1072
1004
|
execution_context: int | str | None = None,
|
|
1073
1005
|
undo: bool | None = None,
|
|
1006
|
+
/,
|
|
1074
1007
|
*,
|
|
1075
1008
|
mirror: bool | None = False,
|
|
1076
1009
|
):
|
|
1077
1010
|
"""Extrude individual vertices only
|
|
1078
1011
|
|
|
1079
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1080
1012
|
:type execution_context: int | str | None
|
|
1081
1013
|
:type undo: bool | None
|
|
1082
1014
|
:param mirror: Mirror Editing
|
|
@@ -1084,16 +1016,15 @@ def extrude_verts_indiv(
|
|
|
1084
1016
|
"""
|
|
1085
1017
|
|
|
1086
1018
|
def face_make_planar(
|
|
1087
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1088
1019
|
execution_context: int | str | None = None,
|
|
1089
1020
|
undo: bool | None = None,
|
|
1021
|
+
/,
|
|
1090
1022
|
*,
|
|
1091
1023
|
factor: float | None = 1.0,
|
|
1092
1024
|
repeat: int | None = 1,
|
|
1093
1025
|
):
|
|
1094
1026
|
"""Flatten selected faces
|
|
1095
1027
|
|
|
1096
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1097
1028
|
:type execution_context: int | str | None
|
|
1098
1029
|
:type undo: bool | None
|
|
1099
1030
|
:param factor: Factor
|
|
@@ -1103,9 +1034,9 @@ def face_make_planar(
|
|
|
1103
1034
|
"""
|
|
1104
1035
|
|
|
1105
1036
|
def face_set_extract(
|
|
1106
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1107
1037
|
execution_context: int | str | None = None,
|
|
1108
1038
|
undo: bool | None = None,
|
|
1039
|
+
/,
|
|
1109
1040
|
*,
|
|
1110
1041
|
add_boundary_loop: bool | None = True,
|
|
1111
1042
|
smooth_iterations: int | None = 4,
|
|
@@ -1114,7 +1045,6 @@ def face_set_extract(
|
|
|
1114
1045
|
):
|
|
1115
1046
|
"""Create a new mesh object from the selected Face Set
|
|
1116
1047
|
|
|
1117
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1118
1048
|
:type execution_context: int | str | None
|
|
1119
1049
|
:type undo: bool | None
|
|
1120
1050
|
: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 +1058,24 @@ def face_set_extract(
|
|
|
1128
1058
|
"""
|
|
1129
1059
|
|
|
1130
1060
|
def face_split_by_edges(
|
|
1131
|
-
|
|
1132
|
-
execution_context: int | str | None = None,
|
|
1133
|
-
undo: bool | None = None,
|
|
1061
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1134
1062
|
):
|
|
1135
1063
|
"""Weld loose edges into faces (splitting them into new faces)
|
|
1136
1064
|
|
|
1137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1138
1065
|
:type execution_context: int | str | None
|
|
1139
1066
|
:type undo: bool | None
|
|
1140
1067
|
"""
|
|
1141
1068
|
|
|
1142
1069
|
def faces_mirror_uv(
|
|
1143
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1144
1070
|
execution_context: int | str | None = None,
|
|
1145
1071
|
undo: bool | None = None,
|
|
1072
|
+
/,
|
|
1146
1073
|
*,
|
|
1147
1074
|
direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
|
|
1148
1075
|
precision: int | None = 3,
|
|
1149
1076
|
):
|
|
1150
1077
|
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh
|
|
1151
1078
|
|
|
1152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1153
1079
|
:type execution_context: int | str | None
|
|
1154
1080
|
:type undo: bool | None
|
|
1155
1081
|
:param direction: Axis Direction
|
|
@@ -1159,15 +1085,14 @@ def faces_mirror_uv(
|
|
|
1159
1085
|
"""
|
|
1160
1086
|
|
|
1161
1087
|
def faces_select_linked_flat(
|
|
1162
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1163
1088
|
execution_context: int | str | None = None,
|
|
1164
1089
|
undo: bool | None = None,
|
|
1090
|
+
/,
|
|
1165
1091
|
*,
|
|
1166
1092
|
sharpness: float | None = 0.0174533,
|
|
1167
1093
|
):
|
|
1168
1094
|
"""Select linked faces by angle
|
|
1169
1095
|
|
|
1170
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1171
1096
|
:type execution_context: int | str | None
|
|
1172
1097
|
:type undo: bool | None
|
|
1173
1098
|
:param sharpness: Sharpness
|
|
@@ -1175,39 +1100,32 @@ def faces_select_linked_flat(
|
|
|
1175
1100
|
"""
|
|
1176
1101
|
|
|
1177
1102
|
def faces_shade_flat(
|
|
1178
|
-
|
|
1179
|
-
execution_context: int | str | None = None,
|
|
1180
|
-
undo: bool | None = None,
|
|
1103
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1181
1104
|
):
|
|
1182
1105
|
"""Display faces flat
|
|
1183
1106
|
|
|
1184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1185
1107
|
:type execution_context: int | str | None
|
|
1186
1108
|
:type undo: bool | None
|
|
1187
1109
|
"""
|
|
1188
1110
|
|
|
1189
1111
|
def faces_shade_smooth(
|
|
1190
|
-
|
|
1191
|
-
execution_context: int | str | None = None,
|
|
1192
|
-
undo: bool | None = None,
|
|
1112
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1193
1113
|
):
|
|
1194
1114
|
"""Display faces smooth (using vertex normals)
|
|
1195
1115
|
|
|
1196
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1197
1116
|
:type execution_context: int | str | None
|
|
1198
1117
|
:type undo: bool | None
|
|
1199
1118
|
"""
|
|
1200
1119
|
|
|
1201
1120
|
def fill(
|
|
1202
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1203
1121
|
execution_context: int | str | None = None,
|
|
1204
1122
|
undo: bool | None = None,
|
|
1123
|
+
/,
|
|
1205
1124
|
*,
|
|
1206
1125
|
use_beauty: bool | None = True,
|
|
1207
1126
|
):
|
|
1208
1127
|
"""Fill a selected edge loop with faces
|
|
1209
1128
|
|
|
1210
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1211
1129
|
:type execution_context: int | str | None
|
|
1212
1130
|
:type undo: bool | None
|
|
1213
1131
|
:param use_beauty: Beauty, Use best triangulation division
|
|
@@ -1215,9 +1133,9 @@ def fill(
|
|
|
1215
1133
|
"""
|
|
1216
1134
|
|
|
1217
1135
|
def fill_grid(
|
|
1218
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1219
1136
|
execution_context: int | str | None = None,
|
|
1220
1137
|
undo: bool | None = None,
|
|
1138
|
+
/,
|
|
1221
1139
|
*,
|
|
1222
1140
|
span: int | None = 1,
|
|
1223
1141
|
offset: int | None = 0,
|
|
@@ -1225,7 +1143,6 @@ def fill_grid(
|
|
|
1225
1143
|
):
|
|
1226
1144
|
"""Fill grid from two loops
|
|
1227
1145
|
|
|
1228
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1229
1146
|
:type execution_context: int | str | None
|
|
1230
1147
|
:type undo: bool | None
|
|
1231
1148
|
:param span: Span, Number of grid columns
|
|
@@ -1237,15 +1154,14 @@ def fill_grid(
|
|
|
1237
1154
|
"""
|
|
1238
1155
|
|
|
1239
1156
|
def fill_holes(
|
|
1240
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1241
1157
|
execution_context: int | str | None = None,
|
|
1242
1158
|
undo: bool | None = None,
|
|
1159
|
+
/,
|
|
1243
1160
|
*,
|
|
1244
1161
|
sides: int | None = 4,
|
|
1245
1162
|
):
|
|
1246
1163
|
"""Fill in holes (boundary edge loops)
|
|
1247
1164
|
|
|
1248
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1249
1165
|
:type execution_context: int | str | None
|
|
1250
1166
|
:type undo: bool | None
|
|
1251
1167
|
:param sides: Sides, Number of sides in hole required to fill (zero fills all holes)
|
|
@@ -1253,15 +1169,14 @@ def fill_holes(
|
|
|
1253
1169
|
"""
|
|
1254
1170
|
|
|
1255
1171
|
def flip_normals(
|
|
1256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1257
1172
|
execution_context: int | str | None = None,
|
|
1258
1173
|
undo: bool | None = None,
|
|
1174
|
+
/,
|
|
1259
1175
|
*,
|
|
1260
1176
|
only_clnors: bool | None = False,
|
|
1261
1177
|
):
|
|
1262
1178
|
"""Flip the direction of selected faces' normals (and of their vertices)
|
|
1263
1179
|
|
|
1264
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1265
1180
|
:type execution_context: int | str | None
|
|
1266
1181
|
:type undo: bool | None
|
|
1267
1182
|
:param only_clnors: Custom Normals Only, Only flip the custom loop normals of the selected elements
|
|
@@ -1269,27 +1184,23 @@ def flip_normals(
|
|
|
1269
1184
|
"""
|
|
1270
1185
|
|
|
1271
1186
|
def flip_quad_tessellation(
|
|
1272
|
-
|
|
1273
|
-
execution_context: int | str | None = None,
|
|
1274
|
-
undo: bool | None = None,
|
|
1187
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1275
1188
|
):
|
|
1276
1189
|
"""Flips the tessellation of selected quads
|
|
1277
1190
|
|
|
1278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1279
1191
|
:type execution_context: int | str | None
|
|
1280
1192
|
:type undo: bool | None
|
|
1281
1193
|
"""
|
|
1282
1194
|
|
|
1283
1195
|
def hide(
|
|
1284
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1285
1196
|
execution_context: int | str | None = None,
|
|
1286
1197
|
undo: bool | None = None,
|
|
1198
|
+
/,
|
|
1287
1199
|
*,
|
|
1288
1200
|
unselected: bool | None = False,
|
|
1289
1201
|
):
|
|
1290
1202
|
"""Hide (un)selected vertices, edges or faces
|
|
1291
1203
|
|
|
1292
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1293
1204
|
:type execution_context: int | str | None
|
|
1294
1205
|
:type undo: bool | None
|
|
1295
1206
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -1297,9 +1208,9 @@ def hide(
|
|
|
1297
1208
|
"""
|
|
1298
1209
|
|
|
1299
1210
|
def inset(
|
|
1300
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1301
1211
|
execution_context: int | str | None = None,
|
|
1302
1212
|
undo: bool | None = None,
|
|
1213
|
+
/,
|
|
1303
1214
|
*,
|
|
1304
1215
|
use_boundary: bool | None = True,
|
|
1305
1216
|
use_even_offset: bool | None = True,
|
|
@@ -1315,7 +1226,6 @@ def inset(
|
|
|
1315
1226
|
):
|
|
1316
1227
|
"""Inset new faces into selected faces
|
|
1317
1228
|
|
|
1318
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1319
1229
|
:type execution_context: int | str | None
|
|
1320
1230
|
:type undo: bool | None
|
|
1321
1231
|
:param use_boundary: Boundary, Inset face boundaries
|
|
@@ -1343,9 +1253,9 @@ def inset(
|
|
|
1343
1253
|
"""
|
|
1344
1254
|
|
|
1345
1255
|
def intersect(
|
|
1346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1347
1256
|
execution_context: int | str | None = None,
|
|
1348
1257
|
undo: bool | None = None,
|
|
1258
|
+
/,
|
|
1349
1259
|
*,
|
|
1350
1260
|
mode: typing.Literal["SELECT", "SELECT_UNSELECT"] | None = "SELECT_UNSELECT",
|
|
1351
1261
|
separate_mode: typing.Literal["ALL", "CUT", "NONE"] | None = "CUT",
|
|
@@ -1354,7 +1264,6 @@ def intersect(
|
|
|
1354
1264
|
):
|
|
1355
1265
|
"""Cut an intersection into faces
|
|
1356
1266
|
|
|
1357
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1358
1267
|
:type execution_context: int | str | None
|
|
1359
1268
|
:type undo: bool | None
|
|
1360
1269
|
:param mode: Source
|
|
@@ -1389,9 +1298,9 @@ def intersect(
|
|
|
1389
1298
|
"""
|
|
1390
1299
|
|
|
1391
1300
|
def intersect_boolean(
|
|
1392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1393
1301
|
execution_context: int | str | None = None,
|
|
1394
1302
|
undo: bool | None = None,
|
|
1303
|
+
/,
|
|
1395
1304
|
*,
|
|
1396
1305
|
operation: typing.Literal["INTERSECT", "UNION", "DIFFERENCE"] | None = "DIFFERENCE",
|
|
1397
1306
|
use_swap: bool | None = False,
|
|
@@ -1401,7 +1310,6 @@ def intersect_boolean(
|
|
|
1401
1310
|
):
|
|
1402
1311
|
"""Cut solid geometry from selected to unselected
|
|
1403
1312
|
|
|
1404
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1405
1313
|
:type execution_context: int | str | None
|
|
1406
1314
|
:type undo: bool | None
|
|
1407
1315
|
:param operation: Boolean Operation, Which boolean operation to apply
|
|
@@ -1423,15 +1331,14 @@ def intersect_boolean(
|
|
|
1423
1331
|
"""
|
|
1424
1332
|
|
|
1425
1333
|
def knife_project(
|
|
1426
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1427
1334
|
execution_context: int | str | None = None,
|
|
1428
1335
|
undo: bool | None = None,
|
|
1336
|
+
/,
|
|
1429
1337
|
*,
|
|
1430
1338
|
cut_through: bool | None = False,
|
|
1431
1339
|
):
|
|
1432
1340
|
"""Use other objects outlines and boundaries to project knife cuts
|
|
1433
1341
|
|
|
1434
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1435
1342
|
:type execution_context: int | str | None
|
|
1436
1343
|
:type undo: bool | None
|
|
1437
1344
|
:param cut_through: Cut Through, Cut through all faces, not just visible ones
|
|
@@ -1439,9 +1346,9 @@ def knife_project(
|
|
|
1439
1346
|
"""
|
|
1440
1347
|
|
|
1441
1348
|
def knife_tool(
|
|
1442
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1443
1349
|
execution_context: int | str | None = None,
|
|
1444
1350
|
undo: bool | None = None,
|
|
1351
|
+
/,
|
|
1445
1352
|
*,
|
|
1446
1353
|
use_occlude_geometry: bool | None = True,
|
|
1447
1354
|
only_selected: bool | None = False,
|
|
@@ -1454,7 +1361,6 @@ def knife_tool(
|
|
|
1454
1361
|
):
|
|
1455
1362
|
"""Cut new topology
|
|
1456
1363
|
|
|
1457
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1458
1364
|
:type execution_context: int | str | None
|
|
1459
1365
|
:type undo: bool | None
|
|
1460
1366
|
:param use_occlude_geometry: Occlude Geometry, Only cut the front most geometry
|
|
@@ -1495,15 +1401,14 @@ def knife_tool(
|
|
|
1495
1401
|
"""
|
|
1496
1402
|
|
|
1497
1403
|
def loop_multi_select(
|
|
1498
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1499
1404
|
execution_context: int | str | None = None,
|
|
1500
1405
|
undo: bool | None = None,
|
|
1406
|
+
/,
|
|
1501
1407
|
*,
|
|
1502
1408
|
ring: bool | None = False,
|
|
1503
1409
|
):
|
|
1504
1410
|
"""Select a loop of connected edges by connection type
|
|
1505
1411
|
|
|
1506
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1507
1412
|
:type execution_context: int | str | None
|
|
1508
1413
|
:type undo: bool | None
|
|
1509
1414
|
:param ring: Ring
|
|
@@ -1511,9 +1416,9 @@ def loop_multi_select(
|
|
|
1511
1416
|
"""
|
|
1512
1417
|
|
|
1513
1418
|
def loop_select(
|
|
1514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1515
1419
|
execution_context: int | str | None = None,
|
|
1516
1420
|
undo: bool | None = None,
|
|
1421
|
+
/,
|
|
1517
1422
|
*,
|
|
1518
1423
|
extend: bool | None = False,
|
|
1519
1424
|
deselect: bool | None = False,
|
|
@@ -1522,7 +1427,6 @@ def loop_select(
|
|
|
1522
1427
|
):
|
|
1523
1428
|
"""Select a loop of connected edges
|
|
1524
1429
|
|
|
1525
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1526
1430
|
:type execution_context: int | str | None
|
|
1527
1431
|
:type undo: bool | None
|
|
1528
1432
|
:param extend: Extend Select, Extend the selection
|
|
@@ -1536,15 +1440,14 @@ def loop_select(
|
|
|
1536
1440
|
"""
|
|
1537
1441
|
|
|
1538
1442
|
def loop_to_region(
|
|
1539
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1540
1443
|
execution_context: int | str | None = None,
|
|
1541
1444
|
undo: bool | None = None,
|
|
1445
|
+
/,
|
|
1542
1446
|
*,
|
|
1543
1447
|
select_bigger: bool | None = False,
|
|
1544
1448
|
):
|
|
1545
1449
|
"""Select region of faces inside of a selected loop of edges
|
|
1546
1450
|
|
|
1547
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1548
1451
|
:type execution_context: int | str | None
|
|
1549
1452
|
:type undo: bool | None
|
|
1550
1453
|
:param select_bigger: Select Bigger, Select bigger regions instead of smaller ones
|
|
@@ -1552,9 +1455,9 @@ def loop_to_region(
|
|
|
1552
1455
|
"""
|
|
1553
1456
|
|
|
1554
1457
|
def loopcut(
|
|
1555
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1556
1458
|
execution_context: int | str | None = None,
|
|
1557
1459
|
undo: bool | None = None,
|
|
1460
|
+
/,
|
|
1558
1461
|
*,
|
|
1559
1462
|
number_cuts: int | None = 1,
|
|
1560
1463
|
smoothness: float | None = 0.0,
|
|
@@ -1569,7 +1472,6 @@ def loopcut(
|
|
|
1569
1472
|
):
|
|
1570
1473
|
"""Add a new loop between existing loops
|
|
1571
1474
|
|
|
1572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1573
1475
|
:type execution_context: int | str | None
|
|
1574
1476
|
:type undo: bool | None
|
|
1575
1477
|
:param number_cuts: Number of Cuts
|
|
@@ -1586,16 +1488,15 @@ def loopcut(
|
|
|
1586
1488
|
"""
|
|
1587
1489
|
|
|
1588
1490
|
def loopcut_slide(
|
|
1589
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1590
1491
|
execution_context: int | str | None = None,
|
|
1591
1492
|
undo: bool | None = None,
|
|
1493
|
+
/,
|
|
1592
1494
|
*,
|
|
1593
1495
|
MESH_OT_loopcut: loopcut | None = None,
|
|
1594
1496
|
TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
|
|
1595
1497
|
):
|
|
1596
1498
|
"""Cut mesh loop and slide it
|
|
1597
1499
|
|
|
1598
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1599
1500
|
:type execution_context: int | str | None
|
|
1600
1501
|
:type undo: bool | None
|
|
1601
1502
|
:param MESH_OT_loopcut: Loop Cut, Add a new loop between existing loops
|
|
@@ -1605,15 +1506,14 @@ def loopcut_slide(
|
|
|
1605
1506
|
"""
|
|
1606
1507
|
|
|
1607
1508
|
def mark_freestyle_edge(
|
|
1608
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1609
1509
|
execution_context: int | str | None = None,
|
|
1610
1510
|
undo: bool | None = None,
|
|
1511
|
+
/,
|
|
1611
1512
|
*,
|
|
1612
1513
|
clear: bool | None = False,
|
|
1613
1514
|
):
|
|
1614
1515
|
"""(Un)mark selected edges as Freestyle feature edges
|
|
1615
1516
|
|
|
1616
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1617
1517
|
:type execution_context: int | str | None
|
|
1618
1518
|
:type undo: bool | None
|
|
1619
1519
|
:param clear: Clear
|
|
@@ -1621,15 +1521,14 @@ def mark_freestyle_edge(
|
|
|
1621
1521
|
"""
|
|
1622
1522
|
|
|
1623
1523
|
def mark_freestyle_face(
|
|
1624
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1625
1524
|
execution_context: int | str | None = None,
|
|
1626
1525
|
undo: bool | None = None,
|
|
1526
|
+
/,
|
|
1627
1527
|
*,
|
|
1628
1528
|
clear: bool | None = False,
|
|
1629
1529
|
):
|
|
1630
1530
|
"""(Un)mark selected faces for exclusion from Freestyle feature edge detection
|
|
1631
1531
|
|
|
1632
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1633
1532
|
:type execution_context: int | str | None
|
|
1634
1533
|
:type undo: bool | None
|
|
1635
1534
|
:param clear: Clear
|
|
@@ -1637,15 +1536,14 @@ def mark_freestyle_face(
|
|
|
1637
1536
|
"""
|
|
1638
1537
|
|
|
1639
1538
|
def mark_seam(
|
|
1640
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1641
1539
|
execution_context: int | str | None = None,
|
|
1642
1540
|
undo: bool | None = None,
|
|
1541
|
+
/,
|
|
1643
1542
|
*,
|
|
1644
1543
|
clear: bool | None = False,
|
|
1645
1544
|
):
|
|
1646
1545
|
"""(Un)mark selected edges as a seam
|
|
1647
1546
|
|
|
1648
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1649
1547
|
:type execution_context: int | str | None
|
|
1650
1548
|
:type undo: bool | None
|
|
1651
1549
|
:param clear: Clear
|
|
@@ -1653,16 +1551,15 @@ def mark_seam(
|
|
|
1653
1551
|
"""
|
|
1654
1552
|
|
|
1655
1553
|
def mark_sharp(
|
|
1656
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1657
1554
|
execution_context: int | str | None = None,
|
|
1658
1555
|
undo: bool | None = None,
|
|
1556
|
+
/,
|
|
1659
1557
|
*,
|
|
1660
1558
|
clear: bool | None = False,
|
|
1661
1559
|
use_verts: bool | None = False,
|
|
1662
1560
|
):
|
|
1663
1561
|
"""(Un)mark selected edges as sharp
|
|
1664
1562
|
|
|
1665
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1666
1563
|
:type execution_context: int | str | None
|
|
1667
1564
|
:type undo: bool | None
|
|
1668
1565
|
:param clear: Clear
|
|
@@ -1672,9 +1569,9 @@ def mark_sharp(
|
|
|
1672
1569
|
"""
|
|
1673
1570
|
|
|
1674
1571
|
def merge(
|
|
1675
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1676
1572
|
execution_context: int | str | None = None,
|
|
1677
1573
|
undo: bool | None = None,
|
|
1574
|
+
/,
|
|
1678
1575
|
*,
|
|
1679
1576
|
type: typing.Literal["CENTER", "CURSOR", "COLLAPSE", "FIRST", "LAST"]
|
|
1680
1577
|
| None = "CENTER",
|
|
@@ -1682,7 +1579,6 @@ def merge(
|
|
|
1682
1579
|
):
|
|
1683
1580
|
"""Merge selected vertices
|
|
1684
1581
|
|
|
1685
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1686
1582
|
:type execution_context: int | str | None
|
|
1687
1583
|
:type undo: bool | None
|
|
1688
1584
|
:param type: Type, Merge method to use
|
|
@@ -1691,29 +1587,23 @@ def merge(
|
|
|
1691
1587
|
:type uvs: bool | None
|
|
1692
1588
|
"""
|
|
1693
1589
|
|
|
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
|
-
):
|
|
1590
|
+
def merge_normals(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1699
1591
|
"""Merge custom normals of selected vertices
|
|
1700
1592
|
|
|
1701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1702
1593
|
:type execution_context: int | str | None
|
|
1703
1594
|
:type undo: bool | None
|
|
1704
1595
|
"""
|
|
1705
1596
|
|
|
1706
1597
|
def mod_weighted_strength(
|
|
1707
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1708
1598
|
execution_context: int | str | None = None,
|
|
1709
1599
|
undo: bool | None = None,
|
|
1600
|
+
/,
|
|
1710
1601
|
*,
|
|
1711
1602
|
set: bool | None = False,
|
|
1712
1603
|
face_strength: typing.Literal["WEAK", "MEDIUM", "STRONG"] | None = "MEDIUM",
|
|
1713
1604
|
):
|
|
1714
1605
|
"""Set/Get strength of face (used in Weighted Normal modifier)
|
|
1715
1606
|
|
|
1716
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1717
1607
|
:type execution_context: int | str | None
|
|
1718
1608
|
:type undo: bool | None
|
|
1719
1609
|
:param set: Set Value, Set value of faces
|
|
@@ -1723,15 +1613,14 @@ def mod_weighted_strength(
|
|
|
1723
1613
|
"""
|
|
1724
1614
|
|
|
1725
1615
|
def normals_make_consistent(
|
|
1726
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1727
1616
|
execution_context: int | str | None = None,
|
|
1728
1617
|
undo: bool | None = None,
|
|
1618
|
+
/,
|
|
1729
1619
|
*,
|
|
1730
1620
|
inside: bool | None = False,
|
|
1731
1621
|
):
|
|
1732
1622
|
"""Make face and vertex normals point either outside or inside the mesh
|
|
1733
1623
|
|
|
1734
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1735
1624
|
:type execution_context: int | str | None
|
|
1736
1625
|
:type undo: bool | None
|
|
1737
1626
|
:param inside: Inside
|
|
@@ -1739,16 +1628,15 @@ def normals_make_consistent(
|
|
|
1739
1628
|
"""
|
|
1740
1629
|
|
|
1741
1630
|
def normals_tools(
|
|
1742
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1743
1631
|
execution_context: int | str | None = None,
|
|
1744
1632
|
undo: bool | None = None,
|
|
1633
|
+
/,
|
|
1745
1634
|
*,
|
|
1746
1635
|
mode: typing.Literal["COPY", "PASTE", "ADD", "MULTIPLY", "RESET"] | None = "COPY",
|
|
1747
1636
|
absolute: bool | None = False,
|
|
1748
1637
|
):
|
|
1749
1638
|
"""Custom normals tools using Normal Vector of UI
|
|
1750
1639
|
|
|
1751
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1752
1640
|
:type execution_context: int | str | None
|
|
1753
1641
|
:type undo: bool | None
|
|
1754
1642
|
:param mode: Mode, Mode of tools taking input from interface
|
|
@@ -1773,15 +1661,14 @@ def normals_tools(
|
|
|
1773
1661
|
"""
|
|
1774
1662
|
|
|
1775
1663
|
def offset_edge_loops(
|
|
1776
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1777
1664
|
execution_context: int | str | None = None,
|
|
1778
1665
|
undo: bool | None = None,
|
|
1666
|
+
/,
|
|
1779
1667
|
*,
|
|
1780
1668
|
use_cap_endpoint: bool | None = False,
|
|
1781
1669
|
):
|
|
1782
1670
|
"""Create offset edge loop from the current selection
|
|
1783
1671
|
|
|
1784
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1785
1672
|
:type execution_context: int | str | None
|
|
1786
1673
|
:type undo: bool | None
|
|
1787
1674
|
:param use_cap_endpoint: Cap Endpoint, Extend loop around end-points
|
|
@@ -1789,16 +1676,15 @@ def offset_edge_loops(
|
|
|
1789
1676
|
"""
|
|
1790
1677
|
|
|
1791
1678
|
def offset_edge_loops_slide(
|
|
1792
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1793
1679
|
execution_context: int | str | None = None,
|
|
1794
1680
|
undo: bool | None = None,
|
|
1681
|
+
/,
|
|
1795
1682
|
*,
|
|
1796
1683
|
MESH_OT_offset_edge_loops: offset_edge_loops | None = None,
|
|
1797
1684
|
TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None = None,
|
|
1798
1685
|
):
|
|
1799
1686
|
"""Offset edge loop slide
|
|
1800
1687
|
|
|
1801
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1802
1688
|
:type execution_context: int | str | None
|
|
1803
1689
|
:type undo: bool | None
|
|
1804
1690
|
:param MESH_OT_offset_edge_loops: Offset Edge Loop, Create offset edge loop from the current selection
|
|
@@ -1808,9 +1694,9 @@ def offset_edge_loops_slide(
|
|
|
1808
1694
|
"""
|
|
1809
1695
|
|
|
1810
1696
|
def paint_mask_extract(
|
|
1811
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1812
1697
|
execution_context: int | str | None = None,
|
|
1813
1698
|
undo: bool | None = None,
|
|
1699
|
+
/,
|
|
1814
1700
|
*,
|
|
1815
1701
|
mask_threshold: float | None = 0.5,
|
|
1816
1702
|
add_boundary_loop: bool | None = True,
|
|
@@ -1820,7 +1706,6 @@ def paint_mask_extract(
|
|
|
1820
1706
|
):
|
|
1821
1707
|
"""Create a new mesh object from the current paint mask
|
|
1822
1708
|
|
|
1823
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1824
1709
|
:type execution_context: int | str | None
|
|
1825
1710
|
:type undo: bool | None
|
|
1826
1711
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1836,9 +1721,9 @@ def paint_mask_extract(
|
|
|
1836
1721
|
"""
|
|
1837
1722
|
|
|
1838
1723
|
def paint_mask_slice(
|
|
1839
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1840
1724
|
execution_context: int | str | None = None,
|
|
1841
1725
|
undo: bool | None = None,
|
|
1726
|
+
/,
|
|
1842
1727
|
*,
|
|
1843
1728
|
mask_threshold: float | None = 0.5,
|
|
1844
1729
|
fill_holes: bool | None = True,
|
|
@@ -1846,7 +1731,6 @@ def paint_mask_slice(
|
|
|
1846
1731
|
):
|
|
1847
1732
|
"""Slices the paint mask from the mesh
|
|
1848
1733
|
|
|
1849
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1850
1734
|
:type execution_context: int | str | None
|
|
1851
1735
|
:type undo: bool | None
|
|
1852
1736
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1858,9 +1742,9 @@ def paint_mask_slice(
|
|
|
1858
1742
|
"""
|
|
1859
1743
|
|
|
1860
1744
|
def point_normals(
|
|
1861
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1862
1745
|
execution_context: int | str | None = None,
|
|
1863
1746
|
undo: bool | None = None,
|
|
1747
|
+
/,
|
|
1864
1748
|
*,
|
|
1865
1749
|
mode: typing.Literal["COORDINATES", "MOUSE"] | None = "COORDINATES",
|
|
1866
1750
|
invert: bool | None = False,
|
|
@@ -1875,7 +1759,6 @@ def point_normals(
|
|
|
1875
1759
|
):
|
|
1876
1760
|
"""Point selected custom normals to specified Target
|
|
1877
1761
|
|
|
1878
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1879
1762
|
:type execution_context: int | str | None
|
|
1880
1763
|
:type undo: bool | None
|
|
1881
1764
|
:param mode: Mode, How to define coordinates to point custom normals to
|
|
@@ -1899,9 +1782,9 @@ def point_normals(
|
|
|
1899
1782
|
"""
|
|
1900
1783
|
|
|
1901
1784
|
def poke(
|
|
1902
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1903
1785
|
execution_context: int | str | None = None,
|
|
1904
1786
|
undo: bool | None = None,
|
|
1787
|
+
/,
|
|
1905
1788
|
*,
|
|
1906
1789
|
offset: float | None = 0.0,
|
|
1907
1790
|
use_relative_offset: bool | None = False,
|
|
@@ -1910,7 +1793,6 @@ def poke(
|
|
|
1910
1793
|
):
|
|
1911
1794
|
"""Split a face into a fan
|
|
1912
1795
|
|
|
1913
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1914
1796
|
:type execution_context: int | str | None
|
|
1915
1797
|
:type undo: bool | None
|
|
1916
1798
|
:param offset: Poke Offset, Poke Offset
|
|
@@ -1931,9 +1813,9 @@ def poke(
|
|
|
1931
1813
|
"""
|
|
1932
1814
|
|
|
1933
1815
|
def polybuild_delete_at_cursor(
|
|
1934
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1935
1816
|
execution_context: int | str | None = None,
|
|
1936
1817
|
undo: bool | None = None,
|
|
1818
|
+
/,
|
|
1937
1819
|
*,
|
|
1938
1820
|
mirror: bool | None = False,
|
|
1939
1821
|
use_proportional_edit: bool | None = False,
|
|
@@ -1946,7 +1828,6 @@ def polybuild_delete_at_cursor(
|
|
|
1946
1828
|
):
|
|
1947
1829
|
"""Undocumented, consider contributing.
|
|
1948
1830
|
|
|
1949
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1950
1831
|
:type execution_context: int | str | None
|
|
1951
1832
|
:type undo: bool | None
|
|
1952
1833
|
:param mirror: Mirror Editing
|
|
@@ -1968,21 +1849,18 @@ def polybuild_delete_at_cursor(
|
|
|
1968
1849
|
"""
|
|
1969
1850
|
|
|
1970
1851
|
def polybuild_dissolve_at_cursor(
|
|
1971
|
-
|
|
1972
|
-
execution_context: int | str | None = None,
|
|
1973
|
-
undo: bool | None = None,
|
|
1852
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1974
1853
|
):
|
|
1975
1854
|
"""Undocumented, consider contributing.
|
|
1976
1855
|
|
|
1977
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1978
1856
|
:type execution_context: int | str | None
|
|
1979
1857
|
:type undo: bool | None
|
|
1980
1858
|
"""
|
|
1981
1859
|
|
|
1982
1860
|
def polybuild_extrude_at_cursor_move(
|
|
1983
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1984
1861
|
execution_context: int | str | None = None,
|
|
1985
1862
|
undo: bool | None = None,
|
|
1863
|
+
/,
|
|
1986
1864
|
*,
|
|
1987
1865
|
MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
|
|
1988
1866
|
MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None = None,
|
|
@@ -1990,7 +1868,6 @@ def polybuild_extrude_at_cursor_move(
|
|
|
1990
1868
|
):
|
|
1991
1869
|
"""Undocumented, consider contributing.
|
|
1992
1870
|
|
|
1993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1994
1871
|
:type execution_context: int | str | None
|
|
1995
1872
|
:type undo: bool | None
|
|
1996
1873
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2002,9 +1879,9 @@ def polybuild_extrude_at_cursor_move(
|
|
|
2002
1879
|
"""
|
|
2003
1880
|
|
|
2004
1881
|
def polybuild_face_at_cursor(
|
|
2005
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2006
1882
|
execution_context: int | str | None = None,
|
|
2007
1883
|
undo: bool | None = None,
|
|
1884
|
+
/,
|
|
2008
1885
|
*,
|
|
2009
1886
|
create_quads: bool | None = True,
|
|
2010
1887
|
mirror: bool | None = False,
|
|
@@ -2018,7 +1895,6 @@ def polybuild_face_at_cursor(
|
|
|
2018
1895
|
):
|
|
2019
1896
|
"""Undocumented, consider contributing.
|
|
2020
1897
|
|
|
2021
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2022
1898
|
:type execution_context: int | str | None
|
|
2023
1899
|
:type undo: bool | None
|
|
2024
1900
|
:param create_quads: Create Quads, Automatically split edges in triangles to maintain quad topology
|
|
@@ -2042,16 +1918,15 @@ def polybuild_face_at_cursor(
|
|
|
2042
1918
|
"""
|
|
2043
1919
|
|
|
2044
1920
|
def polybuild_face_at_cursor_move(
|
|
2045
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2046
1921
|
execution_context: int | str | None = None,
|
|
2047
1922
|
undo: bool | None = None,
|
|
1923
|
+
/,
|
|
2048
1924
|
*,
|
|
2049
1925
|
MESH_OT_polybuild_face_at_cursor: polybuild_face_at_cursor | None = None,
|
|
2050
1926
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2051
1927
|
):
|
|
2052
1928
|
"""Undocumented, consider contributing.
|
|
2053
1929
|
|
|
2054
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2055
1930
|
:type execution_context: int | str | None
|
|
2056
1931
|
:type undo: bool | None
|
|
2057
1932
|
:param MESH_OT_polybuild_face_at_cursor: Poly Build Face at Cursor
|
|
@@ -2061,9 +1936,9 @@ def polybuild_face_at_cursor_move(
|
|
|
2061
1936
|
"""
|
|
2062
1937
|
|
|
2063
1938
|
def polybuild_split_at_cursor(
|
|
2064
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2065
1939
|
execution_context: int | str | None = None,
|
|
2066
1940
|
undo: bool | None = None,
|
|
1941
|
+
/,
|
|
2067
1942
|
*,
|
|
2068
1943
|
mirror: bool | None = False,
|
|
2069
1944
|
use_proportional_edit: bool | None = False,
|
|
@@ -2076,7 +1951,6 @@ def polybuild_split_at_cursor(
|
|
|
2076
1951
|
):
|
|
2077
1952
|
"""Undocumented, consider contributing.
|
|
2078
1953
|
|
|
2079
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2080
1954
|
:type execution_context: int | str | None
|
|
2081
1955
|
:type undo: bool | None
|
|
2082
1956
|
:param mirror: Mirror Editing
|
|
@@ -2098,16 +1972,15 @@ def polybuild_split_at_cursor(
|
|
|
2098
1972
|
"""
|
|
2099
1973
|
|
|
2100
1974
|
def polybuild_split_at_cursor_move(
|
|
2101
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2102
1975
|
execution_context: int | str | None = None,
|
|
2103
1976
|
undo: bool | None = None,
|
|
1977
|
+
/,
|
|
2104
1978
|
*,
|
|
2105
1979
|
MESH_OT_polybuild_split_at_cursor: polybuild_split_at_cursor | None = None,
|
|
2106
1980
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2107
1981
|
):
|
|
2108
1982
|
"""Undocumented, consider contributing.
|
|
2109
1983
|
|
|
2110
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2111
1984
|
:type execution_context: int | str | None
|
|
2112
1985
|
:type undo: bool | None
|
|
2113
1986
|
:param MESH_OT_polybuild_split_at_cursor: Poly Build Split at Cursor
|
|
@@ -2117,9 +1990,9 @@ def polybuild_split_at_cursor_move(
|
|
|
2117
1990
|
"""
|
|
2118
1991
|
|
|
2119
1992
|
def polybuild_transform_at_cursor(
|
|
2120
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2121
1993
|
execution_context: int | str | None = None,
|
|
2122
1994
|
undo: bool | None = None,
|
|
1995
|
+
/,
|
|
2123
1996
|
*,
|
|
2124
1997
|
mirror: bool | None = False,
|
|
2125
1998
|
use_proportional_edit: bool | None = False,
|
|
@@ -2132,7 +2005,6 @@ def polybuild_transform_at_cursor(
|
|
|
2132
2005
|
):
|
|
2133
2006
|
"""Undocumented, consider contributing.
|
|
2134
2007
|
|
|
2135
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2136
2008
|
:type execution_context: int | str | None
|
|
2137
2009
|
:type undo: bool | None
|
|
2138
2010
|
:param mirror: Mirror Editing
|
|
@@ -2154,16 +2026,15 @@ def polybuild_transform_at_cursor(
|
|
|
2154
2026
|
"""
|
|
2155
2027
|
|
|
2156
2028
|
def polybuild_transform_at_cursor_move(
|
|
2157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2158
2029
|
execution_context: int | str | None = None,
|
|
2159
2030
|
undo: bool | None = None,
|
|
2031
|
+
/,
|
|
2160
2032
|
*,
|
|
2161
2033
|
MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None = None,
|
|
2162
2034
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2163
2035
|
):
|
|
2164
2036
|
"""Undocumented, consider contributing.
|
|
2165
2037
|
|
|
2166
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2167
2038
|
:type execution_context: int | str | None
|
|
2168
2039
|
:type undo: bool | None
|
|
2169
2040
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2173,9 +2044,9 @@ def polybuild_transform_at_cursor_move(
|
|
|
2173
2044
|
"""
|
|
2174
2045
|
|
|
2175
2046
|
def primitive_circle_add(
|
|
2176
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2177
2047
|
execution_context: int | str | None = None,
|
|
2178
2048
|
undo: bool | None = None,
|
|
2049
|
+
/,
|
|
2179
2050
|
*,
|
|
2180
2051
|
vertices: int | None = 32,
|
|
2181
2052
|
radius: float | None = 1.0,
|
|
@@ -2197,7 +2068,6 @@ def primitive_circle_add(
|
|
|
2197
2068
|
):
|
|
2198
2069
|
"""Construct a circle mesh
|
|
2199
2070
|
|
|
2200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2201
2071
|
:type execution_context: int | str | None
|
|
2202
2072
|
:type undo: bool | None
|
|
2203
2073
|
:param vertices: Vertices
|
|
@@ -2239,9 +2109,9 @@ def primitive_circle_add(
|
|
|
2239
2109
|
"""
|
|
2240
2110
|
|
|
2241
2111
|
def primitive_cone_add(
|
|
2242
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2243
2112
|
execution_context: int | str | None = None,
|
|
2244
2113
|
undo: bool | None = None,
|
|
2114
|
+
/,
|
|
2245
2115
|
*,
|
|
2246
2116
|
vertices: int | None = 32,
|
|
2247
2117
|
radius1: float | None = 1.0,
|
|
@@ -2265,7 +2135,6 @@ def primitive_cone_add(
|
|
|
2265
2135
|
):
|
|
2266
2136
|
"""Construct a conic mesh
|
|
2267
2137
|
|
|
2268
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2269
2138
|
:type execution_context: int | str | None
|
|
2270
2139
|
:type undo: bool | None
|
|
2271
2140
|
:param vertices: Vertices
|
|
@@ -2311,9 +2180,9 @@ def primitive_cone_add(
|
|
|
2311
2180
|
"""
|
|
2312
2181
|
|
|
2313
2182
|
def primitive_cube_add(
|
|
2314
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2315
2183
|
execution_context: int | str | None = None,
|
|
2316
2184
|
undo: bool | None = None,
|
|
2185
|
+
/,
|
|
2317
2186
|
*,
|
|
2318
2187
|
size: float | None = 2.0,
|
|
2319
2188
|
calc_uvs: bool | None = True,
|
|
@@ -2333,7 +2202,6 @@ def primitive_cube_add(
|
|
|
2333
2202
|
):
|
|
2334
2203
|
"""Construct a cube mesh that consists of six square faces
|
|
2335
2204
|
|
|
2336
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2337
2205
|
:type execution_context: int | str | None
|
|
2338
2206
|
:type undo: bool | None
|
|
2339
2207
|
:param size: Size
|
|
@@ -2362,9 +2230,9 @@ def primitive_cube_add(
|
|
|
2362
2230
|
"""
|
|
2363
2231
|
|
|
2364
2232
|
def primitive_cube_add_gizmo(
|
|
2365
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2366
2233
|
execution_context: int | str | None = None,
|
|
2367
2234
|
undo: bool | None = None,
|
|
2235
|
+
/,
|
|
2368
2236
|
*,
|
|
2369
2237
|
calc_uvs: bool | None = True,
|
|
2370
2238
|
enter_editmode: bool | None = False,
|
|
@@ -2391,7 +2259,6 @@ def primitive_cube_add_gizmo(
|
|
|
2391
2259
|
):
|
|
2392
2260
|
"""Construct a cube mesh
|
|
2393
2261
|
|
|
2394
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2395
2262
|
:type execution_context: int | str | None
|
|
2396
2263
|
:type undo: bool | None
|
|
2397
2264
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
@@ -2420,9 +2287,9 @@ def primitive_cube_add_gizmo(
|
|
|
2420
2287
|
"""
|
|
2421
2288
|
|
|
2422
2289
|
def primitive_cylinder_add(
|
|
2423
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2424
2290
|
execution_context: int | str | None = None,
|
|
2425
2291
|
undo: bool | None = None,
|
|
2292
|
+
/,
|
|
2426
2293
|
*,
|
|
2427
2294
|
vertices: int | None = 32,
|
|
2428
2295
|
radius: float | None = 1.0,
|
|
@@ -2445,7 +2312,6 @@ def primitive_cylinder_add(
|
|
|
2445
2312
|
):
|
|
2446
2313
|
"""Construct a cylinder mesh
|
|
2447
2314
|
|
|
2448
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2449
2315
|
:type execution_context: int | str | None
|
|
2450
2316
|
:type undo: bool | None
|
|
2451
2317
|
:param vertices: Vertices
|
|
@@ -2489,9 +2355,9 @@ def primitive_cylinder_add(
|
|
|
2489
2355
|
"""
|
|
2490
2356
|
|
|
2491
2357
|
def primitive_grid_add(
|
|
2492
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2493
2358
|
execution_context: int | str | None = None,
|
|
2494
2359
|
undo: bool | None = None,
|
|
2360
|
+
/,
|
|
2495
2361
|
*,
|
|
2496
2362
|
x_subdivisions: int | None = 10,
|
|
2497
2363
|
y_subdivisions: int | None = 10,
|
|
@@ -2513,7 +2379,6 @@ def primitive_grid_add(
|
|
|
2513
2379
|
):
|
|
2514
2380
|
"""Construct a subdivided plane mesh
|
|
2515
2381
|
|
|
2516
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2517
2382
|
:type execution_context: int | str | None
|
|
2518
2383
|
:type undo: bool | None
|
|
2519
2384
|
:param x_subdivisions: X Subdivisions
|
|
@@ -2546,9 +2411,9 @@ def primitive_grid_add(
|
|
|
2546
2411
|
"""
|
|
2547
2412
|
|
|
2548
2413
|
def primitive_ico_sphere_add(
|
|
2549
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2550
2414
|
execution_context: int | str | None = None,
|
|
2551
2415
|
undo: bool | None = None,
|
|
2416
|
+
/,
|
|
2552
2417
|
*,
|
|
2553
2418
|
subdivisions: int | None = 2,
|
|
2554
2419
|
radius: float | None = 1.0,
|
|
@@ -2569,7 +2434,6 @@ def primitive_ico_sphere_add(
|
|
|
2569
2434
|
):
|
|
2570
2435
|
"""Construct a spherical mesh that consists of equally sized triangles
|
|
2571
2436
|
|
|
2572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2573
2437
|
:type execution_context: int | str | None
|
|
2574
2438
|
:type undo: bool | None
|
|
2575
2439
|
:param subdivisions: Subdivisions
|
|
@@ -2600,9 +2464,9 @@ def primitive_ico_sphere_add(
|
|
|
2600
2464
|
"""
|
|
2601
2465
|
|
|
2602
2466
|
def primitive_monkey_add(
|
|
2603
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2604
2467
|
execution_context: int | str | None = None,
|
|
2605
2468
|
undo: bool | None = None,
|
|
2469
|
+
/,
|
|
2606
2470
|
*,
|
|
2607
2471
|
size: float | None = 2.0,
|
|
2608
2472
|
calc_uvs: bool | None = True,
|
|
@@ -2622,7 +2486,6 @@ def primitive_monkey_add(
|
|
|
2622
2486
|
):
|
|
2623
2487
|
"""Construct a Suzanne mesh
|
|
2624
2488
|
|
|
2625
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2626
2489
|
:type execution_context: int | str | None
|
|
2627
2490
|
:type undo: bool | None
|
|
2628
2491
|
:param size: Size
|
|
@@ -2651,9 +2514,9 @@ def primitive_monkey_add(
|
|
|
2651
2514
|
"""
|
|
2652
2515
|
|
|
2653
2516
|
def primitive_plane_add(
|
|
2654
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2655
2517
|
execution_context: int | str | None = None,
|
|
2656
2518
|
undo: bool | None = None,
|
|
2519
|
+
/,
|
|
2657
2520
|
*,
|
|
2658
2521
|
size: float | None = 2.0,
|
|
2659
2522
|
calc_uvs: bool | None = True,
|
|
@@ -2673,7 +2536,6 @@ def primitive_plane_add(
|
|
|
2673
2536
|
):
|
|
2674
2537
|
"""Construct a filled planar mesh with 4 vertices
|
|
2675
2538
|
|
|
2676
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2677
2539
|
:type execution_context: int | str | None
|
|
2678
2540
|
:type undo: bool | None
|
|
2679
2541
|
:param size: Size
|
|
@@ -2702,9 +2564,9 @@ def primitive_plane_add(
|
|
|
2702
2564
|
"""
|
|
2703
2565
|
|
|
2704
2566
|
def primitive_torus_add(
|
|
2705
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2706
2567
|
execution_context: int | str | None = None,
|
|
2707
2568
|
undo: bool | None = None,
|
|
2569
|
+
/,
|
|
2708
2570
|
*,
|
|
2709
2571
|
align: typing.Literal["WORLD", "VIEW", "CURSOR"] | None = "WORLD",
|
|
2710
2572
|
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
@@ -2728,7 +2590,6 @@ def primitive_torus_add(
|
|
|
2728
2590
|
):
|
|
2729
2591
|
"""Construct a torus mesh
|
|
2730
2592
|
|
|
2731
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2732
2593
|
:type execution_context: int | str | None
|
|
2733
2594
|
:type undo: bool | None
|
|
2734
2595
|
:param align: Align
|
|
@@ -2771,9 +2632,9 @@ def primitive_torus_add(
|
|
|
2771
2632
|
"""
|
|
2772
2633
|
|
|
2773
2634
|
def primitive_uv_sphere_add(
|
|
2774
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2775
2635
|
execution_context: int | str | None = None,
|
|
2776
2636
|
undo: bool | None = None,
|
|
2637
|
+
/,
|
|
2777
2638
|
*,
|
|
2778
2639
|
segments: int | None = 32,
|
|
2779
2640
|
ring_count: int | None = 16,
|
|
@@ -2795,7 +2656,6 @@ def primitive_uv_sphere_add(
|
|
|
2795
2656
|
):
|
|
2796
2657
|
"""Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
|
|
2797
2658
|
|
|
2798
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2799
2659
|
:type execution_context: int | str | None
|
|
2800
2660
|
:type undo: bool | None
|
|
2801
2661
|
:param segments: Segments
|
|
@@ -2828,16 +2688,15 @@ def primitive_uv_sphere_add(
|
|
|
2828
2688
|
"""
|
|
2829
2689
|
|
|
2830
2690
|
def quads_convert_to_tris(
|
|
2831
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2832
2691
|
execution_context: int | str | None = None,
|
|
2833
2692
|
undo: bool | None = None,
|
|
2693
|
+
/,
|
|
2834
2694
|
*,
|
|
2835
2695
|
quad_method: bpy.typing.ModifierTriangulateQuadMethodItems | None = "BEAUTY",
|
|
2836
2696
|
ngon_method: bpy.typing.ModifierTriangulateNgonMethodItems | None = "BEAUTY",
|
|
2837
2697
|
):
|
|
2838
2698
|
"""Triangulate selected faces
|
|
2839
2699
|
|
|
2840
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2841
2700
|
:type execution_context: int | str | None
|
|
2842
2701
|
:type undo: bool | None
|
|
2843
2702
|
:param quad_method: Quad Method, Method for splitting the quads into triangles
|
|
@@ -2847,21 +2706,18 @@ def quads_convert_to_tris(
|
|
|
2847
2706
|
"""
|
|
2848
2707
|
|
|
2849
2708
|
def region_to_loop(
|
|
2850
|
-
|
|
2851
|
-
execution_context: int | str | None = None,
|
|
2852
|
-
undo: bool | None = None,
|
|
2709
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2853
2710
|
):
|
|
2854
2711
|
"""Select boundary edges around the selected faces
|
|
2855
2712
|
|
|
2856
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2857
2713
|
:type execution_context: int | str | None
|
|
2858
2714
|
:type undo: bool | None
|
|
2859
2715
|
"""
|
|
2860
2716
|
|
|
2861
2717
|
def remove_doubles(
|
|
2862
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2863
2718
|
execution_context: int | str | None = None,
|
|
2864
2719
|
undo: bool | None = None,
|
|
2720
|
+
/,
|
|
2865
2721
|
*,
|
|
2866
2722
|
threshold: float | None = 0.0001,
|
|
2867
2723
|
use_unselected: bool | None = False,
|
|
@@ -2869,7 +2725,6 @@ def remove_doubles(
|
|
|
2869
2725
|
):
|
|
2870
2726
|
"""Merge vertices based on their proximity
|
|
2871
2727
|
|
|
2872
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2873
2728
|
:type execution_context: int | str | None
|
|
2874
2729
|
:type undo: bool | None
|
|
2875
2730
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -2881,15 +2736,14 @@ def remove_doubles(
|
|
|
2881
2736
|
"""
|
|
2882
2737
|
|
|
2883
2738
|
def reveal(
|
|
2884
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2885
2739
|
execution_context: int | str | None = None,
|
|
2886
2740
|
undo: bool | None = None,
|
|
2741
|
+
/,
|
|
2887
2742
|
*,
|
|
2888
2743
|
select: bool | None = True,
|
|
2889
2744
|
):
|
|
2890
2745
|
"""Reveal all hidden vertices, edges and faces
|
|
2891
2746
|
|
|
2892
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2893
2747
|
:type execution_context: int | str | None
|
|
2894
2748
|
:type undo: bool | None
|
|
2895
2749
|
:param select: Select
|
|
@@ -2897,9 +2751,9 @@ def reveal(
|
|
|
2897
2751
|
"""
|
|
2898
2752
|
|
|
2899
2753
|
def rip(
|
|
2900
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2901
2754
|
execution_context: int | str | None = None,
|
|
2902
2755
|
undo: bool | None = None,
|
|
2756
|
+
/,
|
|
2903
2757
|
*,
|
|
2904
2758
|
mirror: bool | None = False,
|
|
2905
2759
|
use_proportional_edit: bool | None = False,
|
|
@@ -2913,7 +2767,6 @@ def rip(
|
|
|
2913
2767
|
):
|
|
2914
2768
|
"""Disconnect vertex or edges from connected geometry
|
|
2915
2769
|
|
|
2916
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2917
2770
|
:type execution_context: int | str | None
|
|
2918
2771
|
:type undo: bool | None
|
|
2919
2772
|
:param mirror: Mirror Editing
|
|
@@ -2937,9 +2790,9 @@ def rip(
|
|
|
2937
2790
|
"""
|
|
2938
2791
|
|
|
2939
2792
|
def rip_edge(
|
|
2940
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2941
2793
|
execution_context: int | str | None = None,
|
|
2942
2794
|
undo: bool | None = None,
|
|
2795
|
+
/,
|
|
2943
2796
|
*,
|
|
2944
2797
|
mirror: bool | None = False,
|
|
2945
2798
|
use_proportional_edit: bool | None = False,
|
|
@@ -2952,7 +2805,6 @@ def rip_edge(
|
|
|
2952
2805
|
):
|
|
2953
2806
|
"""Extend vertices along the edge closest to the cursor
|
|
2954
2807
|
|
|
2955
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2956
2808
|
:type execution_context: int | str | None
|
|
2957
2809
|
:type undo: bool | None
|
|
2958
2810
|
:param mirror: Mirror Editing
|
|
@@ -2974,16 +2826,15 @@ def rip_edge(
|
|
|
2974
2826
|
"""
|
|
2975
2827
|
|
|
2976
2828
|
def rip_edge_move(
|
|
2977
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2978
2829
|
execution_context: int | str | None = None,
|
|
2979
2830
|
undo: bool | None = None,
|
|
2831
|
+
/,
|
|
2980
2832
|
*,
|
|
2981
2833
|
MESH_OT_rip_edge: rip_edge | None = None,
|
|
2982
2834
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
2983
2835
|
):
|
|
2984
2836
|
"""Extend vertices and move the result
|
|
2985
2837
|
|
|
2986
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2987
2838
|
:type execution_context: int | str | None
|
|
2988
2839
|
:type undo: bool | None
|
|
2989
2840
|
:param MESH_OT_rip_edge: Extend Vertices, Extend vertices along the edge closest to the cursor
|
|
@@ -2993,16 +2844,15 @@ def rip_edge_move(
|
|
|
2993
2844
|
"""
|
|
2994
2845
|
|
|
2995
2846
|
def rip_move(
|
|
2996
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2997
2847
|
execution_context: int | str | None = None,
|
|
2998
2848
|
undo: bool | None = None,
|
|
2849
|
+
/,
|
|
2999
2850
|
*,
|
|
3000
2851
|
MESH_OT_rip: rip | None = None,
|
|
3001
2852
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
3002
2853
|
):
|
|
3003
2854
|
"""Rip polygons and move the result
|
|
3004
2855
|
|
|
3005
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3006
2856
|
:type execution_context: int | str | None
|
|
3007
2857
|
:type undo: bool | None
|
|
3008
2858
|
:param MESH_OT_rip: Rip, Disconnect vertex or edges from connected geometry
|
|
@@ -3012,9 +2862,9 @@ def rip_move(
|
|
|
3012
2862
|
"""
|
|
3013
2863
|
|
|
3014
2864
|
def screw(
|
|
3015
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3016
2865
|
execution_context: int | str | None = None,
|
|
3017
2866
|
undo: bool | None = None,
|
|
2867
|
+
/,
|
|
3018
2868
|
*,
|
|
3019
2869
|
steps: int | None = 9,
|
|
3020
2870
|
turns: int | None = 1,
|
|
@@ -3023,7 +2873,6 @@ def screw(
|
|
|
3023
2873
|
):
|
|
3024
2874
|
"""Extrude selected vertices in screw-shaped rotation around the cursor in indicated viewport
|
|
3025
2875
|
|
|
3026
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3027
2876
|
:type execution_context: int | str | None
|
|
3028
2877
|
:type undo: bool | None
|
|
3029
2878
|
:param steps: Steps, Steps
|
|
@@ -3037,15 +2886,14 @@ def screw(
|
|
|
3037
2886
|
"""
|
|
3038
2887
|
|
|
3039
2888
|
def select_all(
|
|
3040
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3041
2889
|
execution_context: int | str | None = None,
|
|
3042
2890
|
undo: bool | None = None,
|
|
2891
|
+
/,
|
|
3043
2892
|
*,
|
|
3044
2893
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
3045
2894
|
):
|
|
3046
2895
|
"""(De)select all vertices, edges or faces
|
|
3047
2896
|
|
|
3048
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3049
2897
|
:type execution_context: int | str | None
|
|
3050
2898
|
:type undo: bool | None
|
|
3051
2899
|
:param action: Action, Selection action to execute
|
|
@@ -3065,9 +2913,9 @@ def select_all(
|
|
|
3065
2913
|
"""
|
|
3066
2914
|
|
|
3067
2915
|
def select_axis(
|
|
3068
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3069
2916
|
execution_context: int | str | None = None,
|
|
3070
2917
|
undo: bool | None = None,
|
|
2918
|
+
/,
|
|
3071
2919
|
*,
|
|
3072
2920
|
orientation: bpy.typing.TransformOrientationItems | None = "LOCAL",
|
|
3073
2921
|
sign: typing.Literal["POS", "NEG", "ALIGN"] | None = "POS",
|
|
@@ -3076,7 +2924,6 @@ def select_axis(
|
|
|
3076
2924
|
):
|
|
3077
2925
|
"""Select all data in the mesh on a single axis
|
|
3078
2926
|
|
|
3079
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3080
2927
|
:type execution_context: int | str | None
|
|
3081
2928
|
:type undo: bool | None
|
|
3082
2929
|
:param orientation: Axis Mode, Axis orientation
|
|
@@ -3090,21 +2937,18 @@ def select_axis(
|
|
|
3090
2937
|
"""
|
|
3091
2938
|
|
|
3092
2939
|
def select_by_attribute(
|
|
3093
|
-
|
|
3094
|
-
execution_context: int | str | None = None,
|
|
3095
|
-
undo: bool | None = None,
|
|
2940
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3096
2941
|
):
|
|
3097
2942
|
"""Select elements based on the active boolean attribute
|
|
3098
2943
|
|
|
3099
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3100
2944
|
:type execution_context: int | str | None
|
|
3101
2945
|
:type undo: bool | None
|
|
3102
2946
|
"""
|
|
3103
2947
|
|
|
3104
2948
|
def select_by_pole_count(
|
|
3105
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3106
2949
|
execution_context: int | str | None = None,
|
|
3107
2950
|
undo: bool | None = None,
|
|
2951
|
+
/,
|
|
3108
2952
|
*,
|
|
3109
2953
|
pole_count: int | None = 4,
|
|
3110
2954
|
type: typing.Literal["LESS", "EQUAL", "GREATER", "NOTEQUAL"] | None = "NOTEQUAL",
|
|
@@ -3113,7 +2957,6 @@ def select_by_pole_count(
|
|
|
3113
2957
|
):
|
|
3114
2958
|
"""Select vertices at poles by the number of connected edges. In edge and face mode the geometry connected to the vertices is selected
|
|
3115
2959
|
|
|
3116
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3117
2960
|
:type execution_context: int | str | None
|
|
3118
2961
|
:type undo: bool | None
|
|
3119
2962
|
:param pole_count: Pole Count
|
|
@@ -3127,9 +2970,9 @@ def select_by_pole_count(
|
|
|
3127
2970
|
"""
|
|
3128
2971
|
|
|
3129
2972
|
def select_face_by_sides(
|
|
3130
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3131
2973
|
execution_context: int | str | None = None,
|
|
3132
2974
|
undo: bool | None = None,
|
|
2975
|
+
/,
|
|
3133
2976
|
*,
|
|
3134
2977
|
number: int | None = 4,
|
|
3135
2978
|
type: typing.Literal["LESS", "EQUAL", "GREATER", "NOTEQUAL"] | None = "EQUAL",
|
|
@@ -3137,7 +2980,6 @@ def select_face_by_sides(
|
|
|
3137
2980
|
):
|
|
3138
2981
|
"""Select vertices or faces by the number of face sides
|
|
3139
2982
|
|
|
3140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3141
2983
|
:type execution_context: int | str | None
|
|
3142
2984
|
:type undo: bool | None
|
|
3143
2985
|
:param number: Number of Vertices
|
|
@@ -3149,27 +2991,23 @@ def select_face_by_sides(
|
|
|
3149
2991
|
"""
|
|
3150
2992
|
|
|
3151
2993
|
def select_interior_faces(
|
|
3152
|
-
|
|
3153
|
-
execution_context: int | str | None = None,
|
|
3154
|
-
undo: bool | None = None,
|
|
2994
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3155
2995
|
):
|
|
3156
2996
|
"""Select faces where all edges have more than 2 face users
|
|
3157
2997
|
|
|
3158
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3159
2998
|
:type execution_context: int | str | None
|
|
3160
2999
|
:type undo: bool | None
|
|
3161
3000
|
"""
|
|
3162
3001
|
|
|
3163
3002
|
def select_less(
|
|
3164
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3165
3003
|
execution_context: int | str | None = None,
|
|
3166
3004
|
undo: bool | None = None,
|
|
3005
|
+
/,
|
|
3167
3006
|
*,
|
|
3168
3007
|
use_face_step: bool | None = True,
|
|
3169
3008
|
):
|
|
3170
3009
|
"""Deselect vertices, edges or faces at the boundary of each selection region
|
|
3171
3010
|
|
|
3172
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3173
3011
|
:type execution_context: int | str | None
|
|
3174
3012
|
:type undo: bool | None
|
|
3175
3013
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3177,15 +3015,14 @@ def select_less(
|
|
|
3177
3015
|
"""
|
|
3178
3016
|
|
|
3179
3017
|
def select_linked(
|
|
3180
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3181
3018
|
execution_context: int | str | None = None,
|
|
3182
3019
|
undo: bool | None = None,
|
|
3020
|
+
/,
|
|
3183
3021
|
*,
|
|
3184
3022
|
delimit: set[bpy.typing.MeshDelimitModeItems] | None = {"SEAM"},
|
|
3185
3023
|
):
|
|
3186
3024
|
"""Select all vertices connected to the current selection
|
|
3187
3025
|
|
|
3188
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3189
3026
|
:type execution_context: int | str | None
|
|
3190
3027
|
:type undo: bool | None
|
|
3191
3028
|
:param delimit: Delimit, Delimit selected region
|
|
@@ -3193,9 +3030,9 @@ def select_linked(
|
|
|
3193
3030
|
"""
|
|
3194
3031
|
|
|
3195
3032
|
def select_linked_pick(
|
|
3196
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3197
3033
|
execution_context: int | str | None = None,
|
|
3198
3034
|
undo: bool | None = None,
|
|
3035
|
+
/,
|
|
3199
3036
|
*,
|
|
3200
3037
|
deselect: bool | None = False,
|
|
3201
3038
|
delimit: set[bpy.typing.MeshDelimitModeItems] | None = {"SEAM"},
|
|
@@ -3204,7 +3041,6 @@ def select_linked_pick(
|
|
|
3204
3041
|
):
|
|
3205
3042
|
"""(De)select all vertices linked to the edge under the mouse cursor
|
|
3206
3043
|
|
|
3207
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3208
3044
|
:type execution_context: int | str | None
|
|
3209
3045
|
:type undo: bool | None
|
|
3210
3046
|
:param deselect: Deselect
|
|
@@ -3216,15 +3052,14 @@ def select_linked_pick(
|
|
|
3216
3052
|
"""
|
|
3217
3053
|
|
|
3218
3054
|
def select_loose(
|
|
3219
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3220
3055
|
execution_context: int | str | None = None,
|
|
3221
3056
|
undo: bool | None = None,
|
|
3057
|
+
/,
|
|
3222
3058
|
*,
|
|
3223
3059
|
extend: bool | None = False,
|
|
3224
3060
|
):
|
|
3225
3061
|
"""Select loose geometry based on the selection mode
|
|
3226
3062
|
|
|
3227
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3228
3063
|
:type execution_context: int | str | None
|
|
3229
3064
|
:type undo: bool | None
|
|
3230
3065
|
:param extend: Extend, Extend the selection
|
|
@@ -3232,16 +3067,15 @@ def select_loose(
|
|
|
3232
3067
|
"""
|
|
3233
3068
|
|
|
3234
3069
|
def select_mirror(
|
|
3235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3236
3070
|
execution_context: int | str | None = None,
|
|
3237
3071
|
undo: bool | None = None,
|
|
3072
|
+
/,
|
|
3238
3073
|
*,
|
|
3239
3074
|
axis: set[bpy.typing.AxisFlagXyzItems] | None = {"X"},
|
|
3240
3075
|
extend: bool | None = False,
|
|
3241
3076
|
):
|
|
3242
3077
|
"""Select mesh items at mirrored locations
|
|
3243
3078
|
|
|
3244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3245
3079
|
:type execution_context: int | str | None
|
|
3246
3080
|
:type undo: bool | None
|
|
3247
3081
|
:param axis: Axis
|
|
@@ -3251,9 +3085,9 @@ def select_mirror(
|
|
|
3251
3085
|
"""
|
|
3252
3086
|
|
|
3253
3087
|
def select_mode(
|
|
3254
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3255
3088
|
execution_context: int | str | None = None,
|
|
3256
3089
|
undo: bool | None = None,
|
|
3090
|
+
/,
|
|
3257
3091
|
*,
|
|
3258
3092
|
use_extend: bool | None = False,
|
|
3259
3093
|
use_expand: bool | None = False,
|
|
@@ -3262,7 +3096,6 @@ def select_mode(
|
|
|
3262
3096
|
):
|
|
3263
3097
|
"""Change selection mode
|
|
3264
3098
|
|
|
3265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3266
3099
|
:type execution_context: int | str | None
|
|
3267
3100
|
:type undo: bool | None
|
|
3268
3101
|
:param use_extend: Extend
|
|
@@ -3285,15 +3118,14 @@ def select_mode(
|
|
|
3285
3118
|
"""
|
|
3286
3119
|
|
|
3287
3120
|
def select_more(
|
|
3288
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3289
3121
|
execution_context: int | str | None = None,
|
|
3290
3122
|
undo: bool | None = None,
|
|
3123
|
+
/,
|
|
3291
3124
|
*,
|
|
3292
3125
|
use_face_step: bool | None = True,
|
|
3293
3126
|
):
|
|
3294
3127
|
"""Select more vertices, edges or faces connected to initial selection
|
|
3295
3128
|
|
|
3296
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3297
3129
|
:type execution_context: int | str | None
|
|
3298
3130
|
:type undo: bool | None
|
|
3299
3131
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3301,21 +3133,18 @@ def select_more(
|
|
|
3301
3133
|
"""
|
|
3302
3134
|
|
|
3303
3135
|
def select_next_item(
|
|
3304
|
-
|
|
3305
|
-
execution_context: int | str | None = None,
|
|
3306
|
-
undo: bool | None = None,
|
|
3136
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3307
3137
|
):
|
|
3308
3138
|
"""Select the next element (using selection order)
|
|
3309
3139
|
|
|
3310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3311
3140
|
:type execution_context: int | str | None
|
|
3312
3141
|
:type undo: bool | None
|
|
3313
3142
|
"""
|
|
3314
3143
|
|
|
3315
3144
|
def select_non_manifold(
|
|
3316
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3317
3145
|
execution_context: int | str | None = None,
|
|
3318
3146
|
undo: bool | None = None,
|
|
3147
|
+
/,
|
|
3319
3148
|
*,
|
|
3320
3149
|
extend: bool | None = True,
|
|
3321
3150
|
use_wire: bool | None = True,
|
|
@@ -3326,7 +3155,6 @@ def select_non_manifold(
|
|
|
3326
3155
|
):
|
|
3327
3156
|
"""Select all non-manifold vertices or edges
|
|
3328
3157
|
|
|
3329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3330
3158
|
:type execution_context: int | str | None
|
|
3331
3159
|
:type undo: bool | None
|
|
3332
3160
|
:param extend: Extend, Extend the selection
|
|
@@ -3344,9 +3172,9 @@ def select_non_manifold(
|
|
|
3344
3172
|
"""
|
|
3345
3173
|
|
|
3346
3174
|
def select_nth(
|
|
3347
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3348
3175
|
execution_context: int | str | None = None,
|
|
3349
3176
|
undo: bool | None = None,
|
|
3177
|
+
/,
|
|
3350
3178
|
*,
|
|
3351
3179
|
skip: int | None = 1,
|
|
3352
3180
|
nth: int | None = 1,
|
|
@@ -3354,7 +3182,6 @@ def select_nth(
|
|
|
3354
3182
|
):
|
|
3355
3183
|
"""Deselect every Nth element starting from the active vertex, edge or face
|
|
3356
3184
|
|
|
3357
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3358
3185
|
:type execution_context: int | str | None
|
|
3359
3186
|
:type undo: bool | None
|
|
3360
3187
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
@@ -3366,21 +3193,18 @@ def select_nth(
|
|
|
3366
3193
|
"""
|
|
3367
3194
|
|
|
3368
3195
|
def select_prev_item(
|
|
3369
|
-
|
|
3370
|
-
execution_context: int | str | None = None,
|
|
3371
|
-
undo: bool | None = None,
|
|
3196
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3372
3197
|
):
|
|
3373
3198
|
"""Select the previous element (using selection order)
|
|
3374
3199
|
|
|
3375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3376
3200
|
:type execution_context: int | str | None
|
|
3377
3201
|
:type undo: bool | None
|
|
3378
3202
|
"""
|
|
3379
3203
|
|
|
3380
3204
|
def select_random(
|
|
3381
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3382
3205
|
execution_context: int | str | None = None,
|
|
3383
3206
|
undo: bool | None = None,
|
|
3207
|
+
/,
|
|
3384
3208
|
*,
|
|
3385
3209
|
ratio: float | None = 0.5,
|
|
3386
3210
|
seed: int | None = 0,
|
|
@@ -3388,7 +3212,6 @@ def select_random(
|
|
|
3388
3212
|
):
|
|
3389
3213
|
"""Randomly select vertices
|
|
3390
3214
|
|
|
3391
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3392
3215
|
:type execution_context: int | str | None
|
|
3393
3216
|
:type undo: bool | None
|
|
3394
3217
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -3406,9 +3229,9 @@ def select_random(
|
|
|
3406
3229
|
"""
|
|
3407
3230
|
|
|
3408
3231
|
def select_similar(
|
|
3409
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3410
3232
|
execution_context: int | str | None = None,
|
|
3411
3233
|
undo: bool | None = None,
|
|
3234
|
+
/,
|
|
3412
3235
|
*,
|
|
3413
3236
|
type: typing.Literal[
|
|
3414
3237
|
"VERT_NORMAL",
|
|
@@ -3440,7 +3263,6 @@ def select_similar(
|
|
|
3440
3263
|
):
|
|
3441
3264
|
"""Select similar vertices, edges or faces by property types
|
|
3442
3265
|
|
|
3443
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3444
3266
|
:type execution_context: int | str | None
|
|
3445
3267
|
:type undo: bool | None
|
|
3446
3268
|
:param type: Type
|
|
@@ -3452,27 +3274,23 @@ def select_similar(
|
|
|
3452
3274
|
"""
|
|
3453
3275
|
|
|
3454
3276
|
def select_similar_region(
|
|
3455
|
-
|
|
3456
|
-
execution_context: int | str | None = None,
|
|
3457
|
-
undo: bool | None = None,
|
|
3277
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3458
3278
|
):
|
|
3459
3279
|
"""Select similar face regions to the current selection
|
|
3460
3280
|
|
|
3461
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3462
3281
|
:type execution_context: int | str | None
|
|
3463
3282
|
:type undo: bool | None
|
|
3464
3283
|
"""
|
|
3465
3284
|
|
|
3466
3285
|
def select_ungrouped(
|
|
3467
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3468
3286
|
execution_context: int | str | None = None,
|
|
3469
3287
|
undo: bool | None = None,
|
|
3288
|
+
/,
|
|
3470
3289
|
*,
|
|
3471
3290
|
extend: bool | None = False,
|
|
3472
3291
|
):
|
|
3473
3292
|
"""Select vertices without a group
|
|
3474
3293
|
|
|
3475
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3476
3294
|
:type execution_context: int | str | None
|
|
3477
3295
|
:type undo: bool | None
|
|
3478
3296
|
:param extend: Extend, Extend the selection
|
|
@@ -3480,15 +3298,14 @@ def select_ungrouped(
|
|
|
3480
3298
|
"""
|
|
3481
3299
|
|
|
3482
3300
|
def separate(
|
|
3483
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3484
3301
|
execution_context: int | str | None = None,
|
|
3485
3302
|
undo: bool | None = None,
|
|
3303
|
+
/,
|
|
3486
3304
|
*,
|
|
3487
3305
|
type: typing.Literal["SELECTED", "MATERIAL", "LOOSE"] | None = "SELECTED",
|
|
3488
3306
|
):
|
|
3489
3307
|
"""Separate selected geometry into a new mesh
|
|
3490
3308
|
|
|
3491
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3492
3309
|
:type execution_context: int | str | None
|
|
3493
3310
|
:type undo: bool | None
|
|
3494
3311
|
:param type: Type
|
|
@@ -3496,15 +3313,14 @@ def separate(
|
|
|
3496
3313
|
"""
|
|
3497
3314
|
|
|
3498
3315
|
def set_normals_from_faces(
|
|
3499
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3500
3316
|
execution_context: int | str | None = None,
|
|
3501
3317
|
undo: bool | None = None,
|
|
3318
|
+
/,
|
|
3502
3319
|
*,
|
|
3503
3320
|
keep_sharp: bool | None = False,
|
|
3504
3321
|
):
|
|
3505
3322
|
"""Set the custom normals from the selected faces ones
|
|
3506
3323
|
|
|
3507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3508
3324
|
:type execution_context: int | str | None
|
|
3509
3325
|
:type undo: bool | None
|
|
3510
3326
|
:param keep_sharp: Keep Sharp Edges, Do not set sharp edges to face
|
|
@@ -3512,16 +3328,15 @@ def set_normals_from_faces(
|
|
|
3512
3328
|
"""
|
|
3513
3329
|
|
|
3514
3330
|
def set_sharpness_by_angle(
|
|
3515
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3516
3331
|
execution_context: int | str | None = None,
|
|
3517
3332
|
undo: bool | None = None,
|
|
3333
|
+
/,
|
|
3518
3334
|
*,
|
|
3519
3335
|
angle: float | None = 0.523599,
|
|
3520
3336
|
extend: bool | None = False,
|
|
3521
3337
|
):
|
|
3522
3338
|
"""Set edge sharpness based on the angle between neighboring faces
|
|
3523
3339
|
|
|
3524
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3525
3340
|
:type execution_context: int | str | None
|
|
3526
3341
|
:type undo: bool | None
|
|
3527
3342
|
:param angle: Angle
|
|
@@ -3531,21 +3346,18 @@ def set_sharpness_by_angle(
|
|
|
3531
3346
|
"""
|
|
3532
3347
|
|
|
3533
3348
|
def shape_propagate_to_all(
|
|
3534
|
-
|
|
3535
|
-
execution_context: int | str | None = None,
|
|
3536
|
-
undo: bool | None = None,
|
|
3349
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3537
3350
|
):
|
|
3538
3351
|
"""Apply selected vertex locations to all other shape keys
|
|
3539
3352
|
|
|
3540
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3541
3353
|
:type execution_context: int | str | None
|
|
3542
3354
|
:type undo: bool | None
|
|
3543
3355
|
"""
|
|
3544
3356
|
|
|
3545
3357
|
def shortest_path_pick(
|
|
3546
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3547
3358
|
execution_context: int | str | None = None,
|
|
3548
3359
|
undo: bool | None = None,
|
|
3360
|
+
/,
|
|
3549
3361
|
*,
|
|
3550
3362
|
edge_mode: typing.Literal["SELECT", "SEAM", "SHARP", "CREASE", "BEVEL", "FREESTYLE"]
|
|
3551
3363
|
| None = "SELECT",
|
|
@@ -3559,7 +3371,6 @@ def shortest_path_pick(
|
|
|
3559
3371
|
):
|
|
3560
3372
|
"""Select shortest path between two selections
|
|
3561
3373
|
|
|
3562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3563
3374
|
:type execution_context: int | str | None
|
|
3564
3375
|
:type undo: bool | None
|
|
3565
3376
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3580,9 +3391,9 @@ def shortest_path_pick(
|
|
|
3580
3391
|
"""
|
|
3581
3392
|
|
|
3582
3393
|
def shortest_path_select(
|
|
3583
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3584
3394
|
execution_context: int | str | None = None,
|
|
3585
3395
|
undo: bool | None = None,
|
|
3396
|
+
/,
|
|
3586
3397
|
*,
|
|
3587
3398
|
edge_mode: typing.Literal["SELECT", "SEAM", "SHARP", "CREASE", "BEVEL", "FREESTYLE"]
|
|
3588
3399
|
| None = "SELECT",
|
|
@@ -3595,7 +3406,6 @@ def shortest_path_select(
|
|
|
3595
3406
|
):
|
|
3596
3407
|
"""Selected shortest path between two vertices/edges/faces
|
|
3597
3408
|
|
|
3598
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3599
3409
|
:type execution_context: int | str | None
|
|
3600
3410
|
:type undo: bool | None
|
|
3601
3411
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3615,15 +3425,14 @@ def shortest_path_select(
|
|
|
3615
3425
|
"""
|
|
3616
3426
|
|
|
3617
3427
|
def smooth_normals(
|
|
3618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3619
3428
|
execution_context: int | str | None = None,
|
|
3620
3429
|
undo: bool | None = None,
|
|
3430
|
+
/,
|
|
3621
3431
|
*,
|
|
3622
3432
|
factor: float | None = 0.5,
|
|
3623
3433
|
):
|
|
3624
3434
|
"""Smooth custom normals based on adjacent vertex normals
|
|
3625
3435
|
|
|
3626
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3627
3436
|
:type execution_context: int | str | None
|
|
3628
3437
|
:type undo: bool | None
|
|
3629
3438
|
:param factor: Factor, Specifies weight of smooth vs original normal
|
|
@@ -3631,15 +3440,14 @@ def smooth_normals(
|
|
|
3631
3440
|
"""
|
|
3632
3441
|
|
|
3633
3442
|
def solidify(
|
|
3634
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3635
3443
|
execution_context: int | str | None = None,
|
|
3636
3444
|
undo: bool | None = None,
|
|
3445
|
+
/,
|
|
3637
3446
|
*,
|
|
3638
3447
|
thickness: float | None = 0.01,
|
|
3639
3448
|
):
|
|
3640
3449
|
"""Create a solid skin by extruding, compensating for sharp angles
|
|
3641
3450
|
|
|
3642
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3643
3451
|
:type execution_context: int | str | None
|
|
3644
3452
|
:type undo: bool | None
|
|
3645
3453
|
:param thickness: Thickness
|
|
@@ -3647,9 +3455,9 @@ def solidify(
|
|
|
3647
3455
|
"""
|
|
3648
3456
|
|
|
3649
3457
|
def sort_elements(
|
|
3650
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3651
3458
|
execution_context: int | str | None = None,
|
|
3652
3459
|
undo: bool | None = None,
|
|
3460
|
+
/,
|
|
3653
3461
|
*,
|
|
3654
3462
|
type: typing.Literal[
|
|
3655
3463
|
"VIEW_ZAXIS",
|
|
@@ -3667,7 +3475,6 @@ def sort_elements(
|
|
|
3667
3475
|
):
|
|
3668
3476
|
"""The order of selected vertices/edges/faces is modified, based on a given method
|
|
3669
3477
|
|
|
3670
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3671
3478
|
:type execution_context: int | str | None
|
|
3672
3479
|
:type undo: bool | None
|
|
3673
3480
|
:param type: Type, Type of reordering operation to apply
|
|
@@ -3703,9 +3510,9 @@ def sort_elements(
|
|
|
3703
3510
|
"""
|
|
3704
3511
|
|
|
3705
3512
|
def spin(
|
|
3706
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3707
3513
|
execution_context: int | str | None = None,
|
|
3708
3514
|
undo: bool | None = None,
|
|
3515
|
+
/,
|
|
3709
3516
|
*,
|
|
3710
3517
|
steps: int | None = 12,
|
|
3711
3518
|
dupli: bool | None = False,
|
|
@@ -3717,7 +3524,6 @@ def spin(
|
|
|
3717
3524
|
):
|
|
3718
3525
|
"""Extrude selected vertices in a circle around the cursor in indicated viewport
|
|
3719
3526
|
|
|
3720
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3721
3527
|
:type execution_context: int | str | None
|
|
3722
3528
|
:type undo: bool | None
|
|
3723
3529
|
:param steps: Steps, Steps
|
|
@@ -3736,34 +3542,24 @@ def spin(
|
|
|
3736
3542
|
:type axis: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
3737
3543
|
"""
|
|
3738
3544
|
|
|
3739
|
-
def split(
|
|
3740
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3741
|
-
execution_context: int | str | None = None,
|
|
3742
|
-
undo: bool | None = None,
|
|
3743
|
-
):
|
|
3545
|
+
def split(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3744
3546
|
"""Split off selected geometry from connected unselected geometry
|
|
3745
3547
|
|
|
3746
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3747
3548
|
:type execution_context: int | str | None
|
|
3748
3549
|
:type undo: bool | None
|
|
3749
3550
|
"""
|
|
3750
3551
|
|
|
3751
|
-
def split_normals(
|
|
3752
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3753
|
-
execution_context: int | str | None = None,
|
|
3754
|
-
undo: bool | None = None,
|
|
3755
|
-
):
|
|
3552
|
+
def split_normals(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3756
3553
|
"""Split custom normals of selected vertices
|
|
3757
3554
|
|
|
3758
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3759
3555
|
:type execution_context: int | str | None
|
|
3760
3556
|
:type undo: bool | None
|
|
3761
3557
|
"""
|
|
3762
3558
|
|
|
3763
3559
|
def subdivide(
|
|
3764
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3765
3560
|
execution_context: int | str | None = None,
|
|
3766
3561
|
undo: bool | None = None,
|
|
3562
|
+
/,
|
|
3767
3563
|
*,
|
|
3768
3564
|
number_cuts: int | None = 1,
|
|
3769
3565
|
smoothness: float | None = 0.0,
|
|
@@ -3776,7 +3572,6 @@ def subdivide(
|
|
|
3776
3572
|
):
|
|
3777
3573
|
"""Subdivide selected edges
|
|
3778
3574
|
|
|
3779
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3780
3575
|
:type execution_context: int | str | None
|
|
3781
3576
|
:type undo: bool | None
|
|
3782
3577
|
:param number_cuts: Number of Cuts
|
|
@@ -3796,9 +3591,9 @@ def subdivide(
|
|
|
3796
3591
|
"""
|
|
3797
3592
|
|
|
3798
3593
|
def subdivide_edgering(
|
|
3799
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3800
3594
|
execution_context: int | str | None = None,
|
|
3801
3595
|
undo: bool | None = None,
|
|
3596
|
+
/,
|
|
3802
3597
|
*,
|
|
3803
3598
|
number_cuts: int | None = 10,
|
|
3804
3599
|
interpolation: typing.Literal["LINEAR", "PATH", "SURFACE"] | None = "PATH",
|
|
@@ -3808,7 +3603,6 @@ def subdivide_edgering(
|
|
|
3808
3603
|
):
|
|
3809
3604
|
"""Subdivide perpendicular edges to the selected edge-ring
|
|
3810
3605
|
|
|
3811
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3812
3606
|
:type execution_context: int | str | None
|
|
3813
3607
|
:type undo: bool | None
|
|
3814
3608
|
:param number_cuts: Number of Cuts
|
|
@@ -3824,16 +3618,15 @@ def subdivide_edgering(
|
|
|
3824
3618
|
"""
|
|
3825
3619
|
|
|
3826
3620
|
def symmetrize(
|
|
3827
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3828
3621
|
execution_context: int | str | None = None,
|
|
3829
3622
|
undo: bool | None = None,
|
|
3623
|
+
/,
|
|
3830
3624
|
*,
|
|
3831
3625
|
direction: bpy.typing.SymmetrizeDirectionItems | None = "NEGATIVE_X",
|
|
3832
3626
|
threshold: float | None = 0.0001,
|
|
3833
3627
|
):
|
|
3834
3628
|
"""Enforce symmetry (both form and topological) across an axis
|
|
3835
3629
|
|
|
3836
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3837
3630
|
:type execution_context: int | str | None
|
|
3838
3631
|
:type undo: bool | None
|
|
3839
3632
|
:param direction: Direction, Which sides to copy from and to
|
|
@@ -3843,9 +3636,9 @@ def symmetrize(
|
|
|
3843
3636
|
"""
|
|
3844
3637
|
|
|
3845
3638
|
def symmetry_snap(
|
|
3846
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3847
3639
|
execution_context: int | str | None = None,
|
|
3848
3640
|
undo: bool | None = None,
|
|
3641
|
+
/,
|
|
3849
3642
|
*,
|
|
3850
3643
|
direction: bpy.typing.SymmetrizeDirectionItems | None = "NEGATIVE_X",
|
|
3851
3644
|
threshold: float | None = 0.05,
|
|
@@ -3854,7 +3647,6 @@ def symmetry_snap(
|
|
|
3854
3647
|
):
|
|
3855
3648
|
"""Snap vertex pairs to their mirrored locations
|
|
3856
3649
|
|
|
3857
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3858
3650
|
:type execution_context: int | str | None
|
|
3859
3651
|
:type undo: bool | None
|
|
3860
3652
|
:param direction: Direction, Which sides to copy from and to
|
|
@@ -3868,9 +3660,9 @@ def symmetry_snap(
|
|
|
3868
3660
|
"""
|
|
3869
3661
|
|
|
3870
3662
|
def tris_convert_to_quads(
|
|
3871
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3872
3663
|
execution_context: int | str | None = None,
|
|
3873
3664
|
undo: bool | None = None,
|
|
3665
|
+
/,
|
|
3874
3666
|
*,
|
|
3875
3667
|
face_threshold: float | None = 0.698132,
|
|
3876
3668
|
shape_threshold: float | None = 0.698132,
|
|
@@ -3884,7 +3676,6 @@ def tris_convert_to_quads(
|
|
|
3884
3676
|
):
|
|
3885
3677
|
"""Join triangles into quads
|
|
3886
3678
|
|
|
3887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3888
3679
|
:type execution_context: int | str | None
|
|
3889
3680
|
:type undo: bool | None
|
|
3890
3681
|
:param face_threshold: Max Face Angle, Face angle limit
|
|
@@ -3908,15 +3699,14 @@ def tris_convert_to_quads(
|
|
|
3908
3699
|
"""
|
|
3909
3700
|
|
|
3910
3701
|
def unsubdivide(
|
|
3911
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3912
3702
|
execution_context: int | str | None = None,
|
|
3913
3703
|
undo: bool | None = None,
|
|
3704
|
+
/,
|
|
3914
3705
|
*,
|
|
3915
3706
|
iterations: int | None = 2,
|
|
3916
3707
|
):
|
|
3917
3708
|
"""Un-subdivide selected edges and faces
|
|
3918
3709
|
|
|
3919
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3920
3710
|
:type execution_context: int | str | None
|
|
3921
3711
|
:type undo: bool | None
|
|
3922
3712
|
:param iterations: Iterations, Number of times to un-subdivide
|
|
@@ -3924,91 +3714,70 @@ def unsubdivide(
|
|
|
3924
3714
|
"""
|
|
3925
3715
|
|
|
3926
3716
|
def uv_texture_add(
|
|
3927
|
-
|
|
3928
|
-
execution_context: int | str | None = None,
|
|
3929
|
-
undo: bool | None = None,
|
|
3717
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3930
3718
|
):
|
|
3931
3719
|
"""Add UV map
|
|
3932
3720
|
|
|
3933
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3934
3721
|
:type execution_context: int | str | None
|
|
3935
3722
|
:type undo: bool | None
|
|
3936
3723
|
"""
|
|
3937
3724
|
|
|
3938
3725
|
def uv_texture_remove(
|
|
3939
|
-
|
|
3940
|
-
execution_context: int | str | None = None,
|
|
3941
|
-
undo: bool | None = None,
|
|
3726
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3942
3727
|
):
|
|
3943
3728
|
"""Remove UV map
|
|
3944
3729
|
|
|
3945
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3946
3730
|
:type execution_context: int | str | None
|
|
3947
3731
|
:type undo: bool | None
|
|
3948
3732
|
"""
|
|
3949
3733
|
|
|
3950
|
-
def uvs_reverse(
|
|
3951
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3952
|
-
execution_context: int | str | None = None,
|
|
3953
|
-
undo: bool | None = None,
|
|
3954
|
-
):
|
|
3734
|
+
def uvs_reverse(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3955
3735
|
"""Flip direction of UV coordinates inside faces
|
|
3956
3736
|
|
|
3957
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3958
3737
|
:type execution_context: int | str | None
|
|
3959
3738
|
:type undo: bool | None
|
|
3960
3739
|
"""
|
|
3961
3740
|
|
|
3962
3741
|
def uvs_rotate(
|
|
3963
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3964
3742
|
execution_context: int | str | None = None,
|
|
3965
3743
|
undo: bool | None = None,
|
|
3744
|
+
/,
|
|
3966
3745
|
*,
|
|
3967
3746
|
use_ccw: bool | None = False,
|
|
3968
3747
|
):
|
|
3969
3748
|
"""Rotate UV coordinates inside faces
|
|
3970
3749
|
|
|
3971
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3972
3750
|
:type execution_context: int | str | None
|
|
3973
3751
|
:type undo: bool | None
|
|
3974
3752
|
:param use_ccw: Counter Clockwise
|
|
3975
3753
|
:type use_ccw: bool | None
|
|
3976
3754
|
"""
|
|
3977
3755
|
|
|
3978
|
-
def vert_connect(
|
|
3979
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
3980
|
-
execution_context: int | str | None = None,
|
|
3981
|
-
undo: bool | None = None,
|
|
3982
|
-
):
|
|
3756
|
+
def vert_connect(execution_context: int | str | None = None, undo: bool | None = None):
|
|
3983
3757
|
"""Connect selected vertices of faces, splitting the face
|
|
3984
3758
|
|
|
3985
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3986
3759
|
:type execution_context: int | str | None
|
|
3987
3760
|
:type undo: bool | None
|
|
3988
3761
|
"""
|
|
3989
3762
|
|
|
3990
3763
|
def vert_connect_concave(
|
|
3991
|
-
|
|
3992
|
-
execution_context: int | str | None = None,
|
|
3993
|
-
undo: bool | None = None,
|
|
3764
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
3994
3765
|
):
|
|
3995
3766
|
"""Make all faces convex
|
|
3996
3767
|
|
|
3997
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
3998
3768
|
:type execution_context: int | str | None
|
|
3999
3769
|
:type undo: bool | None
|
|
4000
3770
|
"""
|
|
4001
3771
|
|
|
4002
3772
|
def vert_connect_nonplanar(
|
|
4003
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4004
3773
|
execution_context: int | str | None = None,
|
|
4005
3774
|
undo: bool | None = None,
|
|
3775
|
+
/,
|
|
4006
3776
|
*,
|
|
4007
3777
|
angle_limit: float | None = 0.0872665,
|
|
4008
3778
|
):
|
|
4009
3779
|
"""Split non-planar faces that exceed the angle threshold
|
|
4010
3780
|
|
|
4011
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4012
3781
|
:type execution_context: int | str | None
|
|
4013
3782
|
:type undo: bool | None
|
|
4014
3783
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -4016,21 +3785,18 @@ def vert_connect_nonplanar(
|
|
|
4016
3785
|
"""
|
|
4017
3786
|
|
|
4018
3787
|
def vert_connect_path(
|
|
4019
|
-
|
|
4020
|
-
execution_context: int | str | None = None,
|
|
4021
|
-
undo: bool | None = None,
|
|
3788
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
4022
3789
|
):
|
|
4023
3790
|
"""Connect vertices by their selection order, creating edges, splitting faces
|
|
4024
3791
|
|
|
4025
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4026
3792
|
:type execution_context: int | str | None
|
|
4027
3793
|
:type undo: bool | None
|
|
4028
3794
|
"""
|
|
4029
3795
|
|
|
4030
3796
|
def vertices_smooth(
|
|
4031
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4032
3797
|
execution_context: int | str | None = None,
|
|
4033
3798
|
undo: bool | None = None,
|
|
3799
|
+
/,
|
|
4034
3800
|
*,
|
|
4035
3801
|
factor: float | None = 0.0,
|
|
4036
3802
|
repeat: int | None = 1,
|
|
@@ -4041,7 +3807,6 @@ def vertices_smooth(
|
|
|
4041
3807
|
):
|
|
4042
3808
|
"""Flatten angles of selected vertices
|
|
4043
3809
|
|
|
4044
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4045
3810
|
:type execution_context: int | str | None
|
|
4046
3811
|
:type undo: bool | None
|
|
4047
3812
|
:param factor: Smoothing, Smoothing factor
|
|
@@ -4059,9 +3824,9 @@ def vertices_smooth(
|
|
|
4059
3824
|
"""
|
|
4060
3825
|
|
|
4061
3826
|
def vertices_smooth_laplacian(
|
|
4062
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4063
3827
|
execution_context: int | str | None = None,
|
|
4064
3828
|
undo: bool | None = None,
|
|
3829
|
+
/,
|
|
4065
3830
|
*,
|
|
4066
3831
|
repeat: int | None = 1,
|
|
4067
3832
|
lambda_factor: float | None = 1.0,
|
|
@@ -4073,7 +3838,6 @@ def vertices_smooth_laplacian(
|
|
|
4073
3838
|
):
|
|
4074
3839
|
"""Laplacian smooth of selected vertices
|
|
4075
3840
|
|
|
4076
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4077
3841
|
:type execution_context: int | str | None
|
|
4078
3842
|
:type undo: bool | None
|
|
4079
3843
|
:param repeat: Number of iterations to smooth the mesh
|
|
@@ -4093,9 +3857,9 @@ def vertices_smooth_laplacian(
|
|
|
4093
3857
|
"""
|
|
4094
3858
|
|
|
4095
3859
|
def wireframe(
|
|
4096
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
4097
3860
|
execution_context: int | str | None = None,
|
|
4098
3861
|
undo: bool | None = None,
|
|
3862
|
+
/,
|
|
4099
3863
|
*,
|
|
4100
3864
|
use_boundary: bool | None = True,
|
|
4101
3865
|
use_even_offset: bool | None = True,
|
|
@@ -4108,7 +3872,6 @@ def wireframe(
|
|
|
4108
3872
|
):
|
|
4109
3873
|
"""Create a solid wireframe from faces
|
|
4110
3874
|
|
|
4111
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4112
3875
|
:type execution_context: int | str | None
|
|
4113
3876
|
:type undo: bool | None
|
|
4114
3877
|
:param use_boundary: Boundary, Inset face boundaries
|