fake-bpy-module 20240508__py3-none-any.whl → 20240509__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 +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +16 -10
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +159 -81
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -5,7 +5,9 @@ import bpy.types
|
|
|
5
5
|
GenericType = typing.TypeVar("GenericType")
|
|
6
6
|
|
|
7
7
|
def attribute_set(
|
|
8
|
-
override_context: typing.Optional[
|
|
8
|
+
override_context: typing.Optional[
|
|
9
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
10
|
+
] = None,
|
|
9
11
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
10
12
|
undo: typing.Optional[bool] = None,
|
|
11
13
|
value_float: typing.Optional[typing.Any] = 0.0,
|
|
@@ -18,7 +20,7 @@ def attribute_set(
|
|
|
18
20
|
):
|
|
19
21
|
"""Set values of the active attribute for selected elements
|
|
20
22
|
|
|
21
|
-
:type override_context: typing.Optional[typing.Union[
|
|
23
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
22
24
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
23
25
|
:type undo: typing.Optional[bool]
|
|
24
26
|
:param value_float: Value
|
|
@@ -40,7 +42,9 @@ def attribute_set(
|
|
|
40
42
|
...
|
|
41
43
|
|
|
42
44
|
def average_normals(
|
|
43
|
-
override_context: typing.Optional[
|
|
45
|
+
override_context: typing.Optional[
|
|
46
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
47
|
+
] = None,
|
|
44
48
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
45
49
|
undo: typing.Optional[bool] = None,
|
|
46
50
|
average_type: typing.Optional[typing.Any] = "CUSTOM_NORMAL",
|
|
@@ -49,7 +53,7 @@ def average_normals(
|
|
|
49
53
|
):
|
|
50
54
|
"""Average custom normals of selected vertices
|
|
51
55
|
|
|
52
|
-
:type override_context: typing.Optional[typing.Union[
|
|
56
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
53
57
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
54
58
|
:type undo: typing.Optional[bool]
|
|
55
59
|
:param average_type: Type, Averaging method
|
|
@@ -72,14 +76,16 @@ def average_normals(
|
|
|
72
76
|
...
|
|
73
77
|
|
|
74
78
|
def beautify_fill(
|
|
75
|
-
override_context: typing.Optional[
|
|
79
|
+
override_context: typing.Optional[
|
|
80
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
81
|
+
] = None,
|
|
76
82
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
77
83
|
undo: typing.Optional[bool] = None,
|
|
78
84
|
angle_limit: typing.Optional[typing.Any] = 3.14159,
|
|
79
85
|
):
|
|
80
86
|
"""Rearrange some faces to try to get less degenerated geometry
|
|
81
87
|
|
|
82
|
-
:type override_context: typing.Optional[typing.Union[
|
|
88
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
83
89
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
84
90
|
:type undo: typing.Optional[bool]
|
|
85
91
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -89,7 +95,9 @@ def beautify_fill(
|
|
|
89
95
|
...
|
|
90
96
|
|
|
91
97
|
def bevel(
|
|
92
|
-
override_context: typing.Optional[
|
|
98
|
+
override_context: typing.Optional[
|
|
99
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
100
|
+
] = None,
|
|
93
101
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
94
102
|
undo: typing.Optional[bool] = None,
|
|
95
103
|
offset_type: typing.Optional[typing.Any] = "OFFSET",
|
|
@@ -114,7 +122,7 @@ def bevel(
|
|
|
114
122
|
):
|
|
115
123
|
"""Cut into selected items at an angle to create bevel or chamfer
|
|
116
124
|
|
|
117
|
-
:type override_context: typing.Optional[typing.Union[
|
|
125
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
118
126
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
119
127
|
:type undo: typing.Optional[bool]
|
|
120
128
|
:param offset_type: Width Type, The method for determining the size of the bevel
|
|
@@ -220,7 +228,9 @@ def bevel(
|
|
|
220
228
|
...
|
|
221
229
|
|
|
222
230
|
def bisect(
|
|
223
|
-
override_context: typing.Optional[
|
|
231
|
+
override_context: typing.Optional[
|
|
232
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
233
|
+
] = None,
|
|
224
234
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
225
235
|
undo: typing.Optional[bool] = None,
|
|
226
236
|
plane_co: typing.Optional[typing.Any] = (0.0, 0.0, 0.0),
|
|
@@ -238,7 +248,7 @@ def bisect(
|
|
|
238
248
|
):
|
|
239
249
|
"""Cut geometry along a plane (click-drag to define plane)
|
|
240
250
|
|
|
241
|
-
:type override_context: typing.Optional[typing.Union[
|
|
251
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
242
252
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
243
253
|
:type undo: typing.Optional[bool]
|
|
244
254
|
:param plane_co: Plane Point, A point on the plane
|
|
@@ -270,7 +280,9 @@ def bisect(
|
|
|
270
280
|
...
|
|
271
281
|
|
|
272
282
|
def blend_from_shape(
|
|
273
|
-
override_context: typing.Optional[
|
|
283
|
+
override_context: typing.Optional[
|
|
284
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
285
|
+
] = None,
|
|
274
286
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
275
287
|
undo: typing.Optional[bool] = None,
|
|
276
288
|
shape: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
@@ -279,7 +291,7 @@ def blend_from_shape(
|
|
|
279
291
|
):
|
|
280
292
|
"""Blend in shape from a shape key
|
|
281
293
|
|
|
282
|
-
:type override_context: typing.Optional[typing.Union[
|
|
294
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
283
295
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
284
296
|
:type undo: typing.Optional[bool]
|
|
285
297
|
:param shape: Shape, Shape key to use for blending
|
|
@@ -293,7 +305,9 @@ def blend_from_shape(
|
|
|
293
305
|
...
|
|
294
306
|
|
|
295
307
|
def bridge_edge_loops(
|
|
296
|
-
override_context: typing.Optional[
|
|
308
|
+
override_context: typing.Optional[
|
|
309
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
310
|
+
] = None,
|
|
297
311
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
298
312
|
undo: typing.Optional[bool] = None,
|
|
299
313
|
type: typing.Optional[typing.Any] = "SINGLE",
|
|
@@ -308,7 +322,7 @@ def bridge_edge_loops(
|
|
|
308
322
|
):
|
|
309
323
|
"""Create a bridge of faces between two or more selected edge loops
|
|
310
324
|
|
|
311
|
-
:type override_context: typing.Optional[typing.Union[
|
|
325
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
312
326
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
313
327
|
:type undo: typing.Optional[bool]
|
|
314
328
|
:param type: Connect Loops, Method of bridging multiple loops
|
|
@@ -334,13 +348,15 @@ def bridge_edge_loops(
|
|
|
334
348
|
...
|
|
335
349
|
|
|
336
350
|
def colors_reverse(
|
|
337
|
-
override_context: typing.Optional[
|
|
351
|
+
override_context: typing.Optional[
|
|
352
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
353
|
+
] = None,
|
|
338
354
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
339
355
|
undo: typing.Optional[bool] = None,
|
|
340
356
|
):
|
|
341
357
|
"""Flip direction of face corner color attribute inside faces
|
|
342
358
|
|
|
343
|
-
:type override_context: typing.Optional[typing.Union[
|
|
359
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
344
360
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
345
361
|
:type undo: typing.Optional[bool]
|
|
346
362
|
"""
|
|
@@ -348,14 +364,16 @@ def colors_reverse(
|
|
|
348
364
|
...
|
|
349
365
|
|
|
350
366
|
def colors_rotate(
|
|
351
|
-
override_context: typing.Optional[
|
|
367
|
+
override_context: typing.Optional[
|
|
368
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
369
|
+
] = None,
|
|
352
370
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
353
371
|
undo: typing.Optional[bool] = None,
|
|
354
372
|
use_ccw: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
355
373
|
):
|
|
356
374
|
"""Rotate face corner color attribute inside faces
|
|
357
375
|
|
|
358
|
-
:type override_context: typing.Optional[typing.Union[
|
|
376
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
359
377
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
360
378
|
:type undo: typing.Optional[bool]
|
|
361
379
|
:param use_ccw: Counter Clockwise
|
|
@@ -365,7 +383,9 @@ def colors_rotate(
|
|
|
365
383
|
...
|
|
366
384
|
|
|
367
385
|
def convex_hull(
|
|
368
|
-
override_context: typing.Optional[
|
|
386
|
+
override_context: typing.Optional[
|
|
387
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
388
|
+
] = None,
|
|
369
389
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
370
390
|
undo: typing.Optional[bool] = None,
|
|
371
391
|
delete_unused: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -382,7 +402,7 @@ def convex_hull(
|
|
|
382
402
|
):
|
|
383
403
|
"""Enclose selected vertices in a convex polyhedron
|
|
384
404
|
|
|
385
|
-
:type override_context: typing.Optional[typing.Union[
|
|
405
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
386
406
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
387
407
|
:type undo: typing.Optional[bool]
|
|
388
408
|
:param delete_unused: Delete Unused, Delete selected elements that are not used by the hull
|
|
@@ -412,13 +432,15 @@ def convex_hull(
|
|
|
412
432
|
...
|
|
413
433
|
|
|
414
434
|
def customdata_custom_splitnormals_add(
|
|
415
|
-
override_context: typing.Optional[
|
|
435
|
+
override_context: typing.Optional[
|
|
436
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
437
|
+
] = None,
|
|
416
438
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
417
439
|
undo: typing.Optional[bool] = None,
|
|
418
440
|
):
|
|
419
441
|
"""Add a custom split normals layer, if none exists yet
|
|
420
442
|
|
|
421
|
-
:type override_context: typing.Optional[typing.Union[
|
|
443
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
422
444
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
423
445
|
:type undo: typing.Optional[bool]
|
|
424
446
|
"""
|
|
@@ -426,13 +448,15 @@ def customdata_custom_splitnormals_add(
|
|
|
426
448
|
...
|
|
427
449
|
|
|
428
450
|
def customdata_custom_splitnormals_clear(
|
|
429
|
-
override_context: typing.Optional[
|
|
451
|
+
override_context: typing.Optional[
|
|
452
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
453
|
+
] = None,
|
|
430
454
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
431
455
|
undo: typing.Optional[bool] = None,
|
|
432
456
|
):
|
|
433
457
|
"""Remove the custom split normals layer, if it exists
|
|
434
458
|
|
|
435
|
-
:type override_context: typing.Optional[typing.Union[
|
|
459
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
436
460
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
437
461
|
:type undo: typing.Optional[bool]
|
|
438
462
|
"""
|
|
@@ -440,13 +464,15 @@ def customdata_custom_splitnormals_clear(
|
|
|
440
464
|
...
|
|
441
465
|
|
|
442
466
|
def customdata_mask_clear(
|
|
443
|
-
override_context: typing.Optional[
|
|
467
|
+
override_context: typing.Optional[
|
|
468
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
469
|
+
] = None,
|
|
444
470
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
445
471
|
undo: typing.Optional[bool] = None,
|
|
446
472
|
):
|
|
447
473
|
"""Clear vertex sculpt masking data from the mesh
|
|
448
474
|
|
|
449
|
-
:type override_context: typing.Optional[typing.Union[
|
|
475
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
450
476
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
451
477
|
:type undo: typing.Optional[bool]
|
|
452
478
|
"""
|
|
@@ -454,13 +480,15 @@ def customdata_mask_clear(
|
|
|
454
480
|
...
|
|
455
481
|
|
|
456
482
|
def customdata_skin_add(
|
|
457
|
-
override_context: typing.Optional[
|
|
483
|
+
override_context: typing.Optional[
|
|
484
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
485
|
+
] = None,
|
|
458
486
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
459
487
|
undo: typing.Optional[bool] = None,
|
|
460
488
|
):
|
|
461
489
|
"""Add a vertex skin layer
|
|
462
490
|
|
|
463
|
-
:type override_context: typing.Optional[typing.Union[
|
|
491
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
464
492
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
465
493
|
:type undo: typing.Optional[bool]
|
|
466
494
|
"""
|
|
@@ -468,13 +496,15 @@ def customdata_skin_add(
|
|
|
468
496
|
...
|
|
469
497
|
|
|
470
498
|
def customdata_skin_clear(
|
|
471
|
-
override_context: typing.Optional[
|
|
499
|
+
override_context: typing.Optional[
|
|
500
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
501
|
+
] = None,
|
|
472
502
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
473
503
|
undo: typing.Optional[bool] = None,
|
|
474
504
|
):
|
|
475
505
|
"""Clear vertex skin layer
|
|
476
506
|
|
|
477
|
-
:type override_context: typing.Optional[typing.Union[
|
|
507
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
478
508
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
479
509
|
:type undo: typing.Optional[bool]
|
|
480
510
|
"""
|
|
@@ -482,7 +512,9 @@ def customdata_skin_clear(
|
|
|
482
512
|
...
|
|
483
513
|
|
|
484
514
|
def decimate(
|
|
485
|
-
override_context: typing.Optional[
|
|
515
|
+
override_context: typing.Optional[
|
|
516
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
517
|
+
] = None,
|
|
486
518
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
487
519
|
undo: typing.Optional[bool] = None,
|
|
488
520
|
ratio: typing.Optional[typing.Any] = 1.0,
|
|
@@ -494,7 +526,7 @@ def decimate(
|
|
|
494
526
|
):
|
|
495
527
|
"""Simplify geometry by collapsing edges
|
|
496
528
|
|
|
497
|
-
:type override_context: typing.Optional[typing.Union[
|
|
529
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
498
530
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
499
531
|
:type undo: typing.Optional[bool]
|
|
500
532
|
:param ratio: Ratio
|
|
@@ -514,14 +546,16 @@ def decimate(
|
|
|
514
546
|
...
|
|
515
547
|
|
|
516
548
|
def delete(
|
|
517
|
-
override_context: typing.Optional[
|
|
549
|
+
override_context: typing.Optional[
|
|
550
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
551
|
+
] = None,
|
|
518
552
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
519
553
|
undo: typing.Optional[bool] = None,
|
|
520
554
|
type: typing.Optional[typing.Any] = "VERT",
|
|
521
555
|
):
|
|
522
556
|
"""Delete selected vertices, edges or faces
|
|
523
557
|
|
|
524
|
-
:type override_context: typing.Optional[typing.Union[
|
|
558
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
525
559
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
526
560
|
:type undo: typing.Optional[bool]
|
|
527
561
|
:param type: Type, Method used for deleting mesh data
|
|
@@ -531,14 +565,16 @@ def delete(
|
|
|
531
565
|
...
|
|
532
566
|
|
|
533
567
|
def delete_edgeloop(
|
|
534
|
-
override_context: typing.Optional[
|
|
568
|
+
override_context: typing.Optional[
|
|
569
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
570
|
+
] = None,
|
|
535
571
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
536
572
|
undo: typing.Optional[bool] = None,
|
|
537
573
|
use_face_split: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
538
574
|
):
|
|
539
575
|
"""Delete an edge loop by merging the faces on each side
|
|
540
576
|
|
|
541
|
-
:type override_context: typing.Optional[typing.Union[
|
|
577
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
542
578
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
543
579
|
:type undo: typing.Optional[bool]
|
|
544
580
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -548,7 +584,9 @@ def delete_edgeloop(
|
|
|
548
584
|
...
|
|
549
585
|
|
|
550
586
|
def delete_loose(
|
|
551
|
-
override_context: typing.Optional[
|
|
587
|
+
override_context: typing.Optional[
|
|
588
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
589
|
+
] = None,
|
|
552
590
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
553
591
|
undo: typing.Optional[bool] = None,
|
|
554
592
|
use_verts: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -557,7 +595,7 @@ def delete_loose(
|
|
|
557
595
|
):
|
|
558
596
|
"""Delete loose vertices, edges or faces
|
|
559
597
|
|
|
560
|
-
:type override_context: typing.Optional[typing.Union[
|
|
598
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
561
599
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
562
600
|
:type undo: typing.Optional[bool]
|
|
563
601
|
:param use_verts: Vertices, Remove loose vertices
|
|
@@ -571,14 +609,16 @@ def delete_loose(
|
|
|
571
609
|
...
|
|
572
610
|
|
|
573
611
|
def dissolve_degenerate(
|
|
574
|
-
override_context: typing.Optional[
|
|
612
|
+
override_context: typing.Optional[
|
|
613
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
614
|
+
] = None,
|
|
575
615
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
576
616
|
undo: typing.Optional[bool] = None,
|
|
577
617
|
threshold: typing.Optional[typing.Any] = 0.0001,
|
|
578
618
|
):
|
|
579
619
|
"""Dissolve zero area faces and zero length edges
|
|
580
620
|
|
|
581
|
-
:type override_context: typing.Optional[typing.Union[
|
|
621
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
582
622
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
583
623
|
:type undo: typing.Optional[bool]
|
|
584
624
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -588,7 +628,9 @@ def dissolve_degenerate(
|
|
|
588
628
|
...
|
|
589
629
|
|
|
590
630
|
def dissolve_edges(
|
|
591
|
-
override_context: typing.Optional[
|
|
631
|
+
override_context: typing.Optional[
|
|
632
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
633
|
+
] = None,
|
|
592
634
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
593
635
|
undo: typing.Optional[bool] = None,
|
|
594
636
|
use_verts: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -596,7 +638,7 @@ def dissolve_edges(
|
|
|
596
638
|
):
|
|
597
639
|
"""Dissolve edges, merging faces
|
|
598
640
|
|
|
599
|
-
:type override_context: typing.Optional[typing.Union[
|
|
641
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
600
642
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
601
643
|
:type undo: typing.Optional[bool]
|
|
602
644
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -608,14 +650,16 @@ def dissolve_edges(
|
|
|
608
650
|
...
|
|
609
651
|
|
|
610
652
|
def dissolve_faces(
|
|
611
|
-
override_context: typing.Optional[
|
|
653
|
+
override_context: typing.Optional[
|
|
654
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
655
|
+
] = None,
|
|
612
656
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
613
657
|
undo: typing.Optional[bool] = None,
|
|
614
658
|
use_verts: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
615
659
|
):
|
|
616
660
|
"""Dissolve faces
|
|
617
661
|
|
|
618
|
-
:type override_context: typing.Optional[typing.Union[
|
|
662
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
619
663
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
620
664
|
:type undo: typing.Optional[bool]
|
|
621
665
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -625,7 +669,9 @@ def dissolve_faces(
|
|
|
625
669
|
...
|
|
626
670
|
|
|
627
671
|
def dissolve_limited(
|
|
628
|
-
override_context: typing.Optional[
|
|
672
|
+
override_context: typing.Optional[
|
|
673
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
674
|
+
] = None,
|
|
629
675
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
630
676
|
undo: typing.Optional[bool] = None,
|
|
631
677
|
angle_limit: typing.Optional[typing.Any] = 0.0872665,
|
|
@@ -634,7 +680,7 @@ def dissolve_limited(
|
|
|
634
680
|
):
|
|
635
681
|
"""Dissolve selected edges and vertices, limited by the angle of surrounding geometry
|
|
636
682
|
|
|
637
|
-
:type override_context: typing.Optional[typing.Union[
|
|
683
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
638
684
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
639
685
|
:type undo: typing.Optional[bool]
|
|
640
686
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -648,7 +694,9 @@ def dissolve_limited(
|
|
|
648
694
|
...
|
|
649
695
|
|
|
650
696
|
def dissolve_mode(
|
|
651
|
-
override_context: typing.Optional[
|
|
697
|
+
override_context: typing.Optional[
|
|
698
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
699
|
+
] = None,
|
|
652
700
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
653
701
|
undo: typing.Optional[bool] = None,
|
|
654
702
|
use_verts: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -657,7 +705,7 @@ def dissolve_mode(
|
|
|
657
705
|
):
|
|
658
706
|
"""Dissolve geometry based on the selection mode
|
|
659
707
|
|
|
660
|
-
:type override_context: typing.Optional[typing.Union[
|
|
708
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
661
709
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
662
710
|
:type undo: typing.Optional[bool]
|
|
663
711
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices
|
|
@@ -671,7 +719,9 @@ def dissolve_mode(
|
|
|
671
719
|
...
|
|
672
720
|
|
|
673
721
|
def dissolve_verts(
|
|
674
|
-
override_context: typing.Optional[
|
|
722
|
+
override_context: typing.Optional[
|
|
723
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
724
|
+
] = None,
|
|
675
725
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
676
726
|
undo: typing.Optional[bool] = None,
|
|
677
727
|
use_face_split: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -679,7 +729,7 @@ def dissolve_verts(
|
|
|
679
729
|
):
|
|
680
730
|
"""Dissolve vertices, merge edges and faces
|
|
681
731
|
|
|
682
|
-
:type override_context: typing.Optional[typing.Union[
|
|
732
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
683
733
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
684
734
|
:type undo: typing.Optional[bool]
|
|
685
735
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
@@ -691,14 +741,16 @@ def dissolve_verts(
|
|
|
691
741
|
...
|
|
692
742
|
|
|
693
743
|
def dupli_extrude_cursor(
|
|
694
|
-
override_context: typing.Optional[
|
|
744
|
+
override_context: typing.Optional[
|
|
745
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
746
|
+
] = None,
|
|
695
747
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
696
748
|
undo: typing.Optional[bool] = None,
|
|
697
749
|
rotate_source: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
698
750
|
):
|
|
699
751
|
"""Duplicate and extrude selected vertices, edges or faces towards the mouse cursor
|
|
700
752
|
|
|
701
|
-
:type override_context: typing.Optional[typing.Union[
|
|
753
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
702
754
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
703
755
|
:type undo: typing.Optional[bool]
|
|
704
756
|
:param rotate_source: Rotate Source, Rotate initial selection giving better shape
|
|
@@ -708,14 +760,16 @@ def dupli_extrude_cursor(
|
|
|
708
760
|
...
|
|
709
761
|
|
|
710
762
|
def duplicate(
|
|
711
|
-
override_context: typing.Optional[
|
|
763
|
+
override_context: typing.Optional[
|
|
764
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
765
|
+
] = None,
|
|
712
766
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
713
767
|
undo: typing.Optional[bool] = None,
|
|
714
768
|
mode: typing.Optional[typing.Any] = 1,
|
|
715
769
|
):
|
|
716
770
|
"""Duplicate selected vertices, edges or faces
|
|
717
771
|
|
|
718
|
-
:type override_context: typing.Optional[typing.Union[
|
|
772
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
719
773
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
720
774
|
:type undo: typing.Optional[bool]
|
|
721
775
|
:param mode: Mode
|
|
@@ -725,7 +779,9 @@ def duplicate(
|
|
|
725
779
|
...
|
|
726
780
|
|
|
727
781
|
def duplicate_move(
|
|
728
|
-
override_context: typing.Optional[
|
|
782
|
+
override_context: typing.Optional[
|
|
783
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
784
|
+
] = None,
|
|
729
785
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
730
786
|
undo: typing.Optional[bool] = None,
|
|
731
787
|
MESH_OT_duplicate: typing.Optional[duplicate] = None,
|
|
@@ -733,7 +789,7 @@ def duplicate_move(
|
|
|
733
789
|
):
|
|
734
790
|
"""Duplicate mesh and move
|
|
735
791
|
|
|
736
|
-
:type override_context: typing.Optional[typing.Union[
|
|
792
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
737
793
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
738
794
|
:type undo: typing.Optional[bool]
|
|
739
795
|
:param MESH_OT_duplicate: Duplicate, Duplicate selected vertices, edges or faces
|
|
@@ -745,13 +801,15 @@ def duplicate_move(
|
|
|
745
801
|
...
|
|
746
802
|
|
|
747
803
|
def edge_collapse(
|
|
748
|
-
override_context: typing.Optional[
|
|
804
|
+
override_context: typing.Optional[
|
|
805
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
806
|
+
] = None,
|
|
749
807
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
750
808
|
undo: typing.Optional[bool] = None,
|
|
751
809
|
):
|
|
752
810
|
"""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
|
|
753
811
|
|
|
754
|
-
:type override_context: typing.Optional[typing.Union[
|
|
812
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
755
813
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
756
814
|
:type undo: typing.Optional[bool]
|
|
757
815
|
"""
|
|
@@ -759,13 +817,15 @@ def edge_collapse(
|
|
|
759
817
|
...
|
|
760
818
|
|
|
761
819
|
def edge_face_add(
|
|
762
|
-
override_context: typing.Optional[
|
|
820
|
+
override_context: typing.Optional[
|
|
821
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
822
|
+
] = None,
|
|
763
823
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
764
824
|
undo: typing.Optional[bool] = None,
|
|
765
825
|
):
|
|
766
826
|
"""Add an edge or face to selected
|
|
767
827
|
|
|
768
|
-
:type override_context: typing.Optional[typing.Union[
|
|
828
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
769
829
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
770
830
|
:type undo: typing.Optional[bool]
|
|
771
831
|
"""
|
|
@@ -773,14 +833,16 @@ def edge_face_add(
|
|
|
773
833
|
...
|
|
774
834
|
|
|
775
835
|
def edge_rotate(
|
|
776
|
-
override_context: typing.Optional[
|
|
836
|
+
override_context: typing.Optional[
|
|
837
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
838
|
+
] = None,
|
|
777
839
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
778
840
|
undo: typing.Optional[bool] = None,
|
|
779
841
|
use_ccw: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
780
842
|
):
|
|
781
843
|
"""Rotate selected edge or adjoining faces
|
|
782
844
|
|
|
783
|
-
:type override_context: typing.Optional[typing.Union[
|
|
845
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
784
846
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
785
847
|
:type undo: typing.Optional[bool]
|
|
786
848
|
:param use_ccw: Counter Clockwise
|
|
@@ -790,14 +852,16 @@ def edge_rotate(
|
|
|
790
852
|
...
|
|
791
853
|
|
|
792
854
|
def edge_split(
|
|
793
|
-
override_context: typing.Optional[
|
|
855
|
+
override_context: typing.Optional[
|
|
856
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
857
|
+
] = None,
|
|
794
858
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
795
859
|
undo: typing.Optional[bool] = None,
|
|
796
860
|
type: typing.Optional[typing.Any] = "EDGE",
|
|
797
861
|
):
|
|
798
862
|
"""Split selected edges so that each neighbor face gets its own copy
|
|
799
863
|
|
|
800
|
-
:type override_context: typing.Optional[typing.Union[
|
|
864
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
801
865
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
802
866
|
:type undo: typing.Optional[bool]
|
|
803
867
|
:param type: Type, Method to use for splitting
|
|
@@ -813,7 +877,9 @@ def edge_split(
|
|
|
813
877
|
...
|
|
814
878
|
|
|
815
879
|
def edgering_select(
|
|
816
|
-
override_context: typing.Optional[
|
|
880
|
+
override_context: typing.Optional[
|
|
881
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
882
|
+
] = None,
|
|
817
883
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
818
884
|
undo: typing.Optional[bool] = None,
|
|
819
885
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -823,7 +889,7 @@ def edgering_select(
|
|
|
823
889
|
):
|
|
824
890
|
"""Select an edge ring
|
|
825
891
|
|
|
826
|
-
:type override_context: typing.Optional[typing.Union[
|
|
892
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
827
893
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
828
894
|
:type undo: typing.Optional[bool]
|
|
829
895
|
:param extend: Extend, Extend the selection
|
|
@@ -839,14 +905,16 @@ def edgering_select(
|
|
|
839
905
|
...
|
|
840
906
|
|
|
841
907
|
def edges_select_sharp(
|
|
842
|
-
override_context: typing.Optional[
|
|
908
|
+
override_context: typing.Optional[
|
|
909
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
910
|
+
] = None,
|
|
843
911
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
844
912
|
undo: typing.Optional[bool] = None,
|
|
845
913
|
sharpness: typing.Optional[typing.Any] = 0.523599,
|
|
846
914
|
):
|
|
847
915
|
"""Select all sharp enough edges
|
|
848
916
|
|
|
849
|
-
:type override_context: typing.Optional[typing.Union[
|
|
917
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
850
918
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
851
919
|
:type undo: typing.Optional[bool]
|
|
852
920
|
:param sharpness: Sharpness
|
|
@@ -856,7 +924,9 @@ def edges_select_sharp(
|
|
|
856
924
|
...
|
|
857
925
|
|
|
858
926
|
def extrude_context(
|
|
859
|
-
override_context: typing.Optional[
|
|
927
|
+
override_context: typing.Optional[
|
|
928
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
929
|
+
] = None,
|
|
860
930
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
861
931
|
undo: typing.Optional[bool] = None,
|
|
862
932
|
use_normal_flip: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -865,7 +935,7 @@ def extrude_context(
|
|
|
865
935
|
):
|
|
866
936
|
"""Extrude selection
|
|
867
937
|
|
|
868
|
-
:type override_context: typing.Optional[typing.Union[
|
|
938
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
869
939
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
870
940
|
:type undo: typing.Optional[bool]
|
|
871
941
|
:param use_normal_flip: Flip Normals
|
|
@@ -879,7 +949,9 @@ def extrude_context(
|
|
|
879
949
|
...
|
|
880
950
|
|
|
881
951
|
def extrude_context_move(
|
|
882
|
-
override_context: typing.Optional[
|
|
952
|
+
override_context: typing.Optional[
|
|
953
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
954
|
+
] = None,
|
|
883
955
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
884
956
|
undo: typing.Optional[bool] = None,
|
|
885
957
|
MESH_OT_extrude_context: typing.Optional[extrude_context] = None,
|
|
@@ -887,7 +959,7 @@ def extrude_context_move(
|
|
|
887
959
|
):
|
|
888
960
|
"""Extrude region together along the average normal
|
|
889
961
|
|
|
890
|
-
:type override_context: typing.Optional[typing.Union[
|
|
962
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
891
963
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
892
964
|
:type undo: typing.Optional[bool]
|
|
893
965
|
:param MESH_OT_extrude_context: Extrude Context, Extrude selection
|
|
@@ -899,7 +971,9 @@ def extrude_context_move(
|
|
|
899
971
|
...
|
|
900
972
|
|
|
901
973
|
def extrude_edges_indiv(
|
|
902
|
-
override_context: typing.Optional[
|
|
974
|
+
override_context: typing.Optional[
|
|
975
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
976
|
+
] = None,
|
|
903
977
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
904
978
|
undo: typing.Optional[bool] = None,
|
|
905
979
|
use_normal_flip: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -907,7 +981,7 @@ def extrude_edges_indiv(
|
|
|
907
981
|
):
|
|
908
982
|
"""Extrude individual edges only
|
|
909
983
|
|
|
910
|
-
:type override_context: typing.Optional[typing.Union[
|
|
984
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
911
985
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
912
986
|
:type undo: typing.Optional[bool]
|
|
913
987
|
:param use_normal_flip: Flip Normals
|
|
@@ -919,7 +993,9 @@ def extrude_edges_indiv(
|
|
|
919
993
|
...
|
|
920
994
|
|
|
921
995
|
def extrude_edges_move(
|
|
922
|
-
override_context: typing.Optional[
|
|
996
|
+
override_context: typing.Optional[
|
|
997
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
998
|
+
] = None,
|
|
923
999
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
924
1000
|
undo: typing.Optional[bool] = None,
|
|
925
1001
|
MESH_OT_extrude_edges_indiv: typing.Optional[extrude_edges_indiv] = None,
|
|
@@ -927,7 +1003,7 @@ def extrude_edges_move(
|
|
|
927
1003
|
):
|
|
928
1004
|
"""Extrude edges and move result
|
|
929
1005
|
|
|
930
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1006
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
931
1007
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
932
1008
|
:type undo: typing.Optional[bool]
|
|
933
1009
|
:param MESH_OT_extrude_edges_indiv: Extrude Only Edges, Extrude individual edges only
|
|
@@ -939,14 +1015,16 @@ def extrude_edges_move(
|
|
|
939
1015
|
...
|
|
940
1016
|
|
|
941
1017
|
def extrude_faces_indiv(
|
|
942
|
-
override_context: typing.Optional[
|
|
1018
|
+
override_context: typing.Optional[
|
|
1019
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1020
|
+
] = None,
|
|
943
1021
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
944
1022
|
undo: typing.Optional[bool] = None,
|
|
945
1023
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
946
1024
|
):
|
|
947
1025
|
"""Extrude individual faces only
|
|
948
1026
|
|
|
949
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1027
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
950
1028
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
951
1029
|
:type undo: typing.Optional[bool]
|
|
952
1030
|
:param mirror: Mirror Editing
|
|
@@ -956,7 +1034,9 @@ def extrude_faces_indiv(
|
|
|
956
1034
|
...
|
|
957
1035
|
|
|
958
1036
|
def extrude_faces_move(
|
|
959
|
-
override_context: typing.Optional[
|
|
1037
|
+
override_context: typing.Optional[
|
|
1038
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1039
|
+
] = None,
|
|
960
1040
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
961
1041
|
undo: typing.Optional[bool] = None,
|
|
962
1042
|
MESH_OT_extrude_faces_indiv: typing.Optional[extrude_faces_indiv] = None,
|
|
@@ -964,7 +1044,7 @@ def extrude_faces_move(
|
|
|
964
1044
|
):
|
|
965
1045
|
"""Extrude each individual face separately along local normals
|
|
966
1046
|
|
|
967
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1047
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
968
1048
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
969
1049
|
:type undo: typing.Optional[bool]
|
|
970
1050
|
:param MESH_OT_extrude_faces_indiv: Extrude Individual Faces, Extrude individual faces only
|
|
@@ -976,7 +1056,9 @@ def extrude_faces_move(
|
|
|
976
1056
|
...
|
|
977
1057
|
|
|
978
1058
|
def extrude_manifold(
|
|
979
|
-
override_context: typing.Optional[
|
|
1059
|
+
override_context: typing.Optional[
|
|
1060
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1061
|
+
] = None,
|
|
980
1062
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
981
1063
|
undo: typing.Optional[bool] = None,
|
|
982
1064
|
MESH_OT_extrude_region: typing.Optional[extrude_region] = None,
|
|
@@ -984,7 +1066,7 @@ def extrude_manifold(
|
|
|
984
1066
|
):
|
|
985
1067
|
"""Extrude, dissolves edges whose faces form a flat surface and intersect new edges
|
|
986
1068
|
|
|
987
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1069
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
988
1070
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
989
1071
|
:type undo: typing.Optional[bool]
|
|
990
1072
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -996,7 +1078,9 @@ def extrude_manifold(
|
|
|
996
1078
|
...
|
|
997
1079
|
|
|
998
1080
|
def extrude_region(
|
|
999
|
-
override_context: typing.Optional[
|
|
1081
|
+
override_context: typing.Optional[
|
|
1082
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1083
|
+
] = None,
|
|
1000
1084
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1001
1085
|
undo: typing.Optional[bool] = None,
|
|
1002
1086
|
use_normal_flip: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1005,7 +1089,7 @@ def extrude_region(
|
|
|
1005
1089
|
):
|
|
1006
1090
|
"""Extrude region of faces
|
|
1007
1091
|
|
|
1008
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1092
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1009
1093
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1010
1094
|
:type undo: typing.Optional[bool]
|
|
1011
1095
|
:param use_normal_flip: Flip Normals
|
|
@@ -1019,7 +1103,9 @@ def extrude_region(
|
|
|
1019
1103
|
...
|
|
1020
1104
|
|
|
1021
1105
|
def extrude_region_move(
|
|
1022
|
-
override_context: typing.Optional[
|
|
1106
|
+
override_context: typing.Optional[
|
|
1107
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1108
|
+
] = None,
|
|
1023
1109
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1024
1110
|
undo: typing.Optional[bool] = None,
|
|
1025
1111
|
MESH_OT_extrude_region: typing.Optional[extrude_region] = None,
|
|
@@ -1027,7 +1113,7 @@ def extrude_region_move(
|
|
|
1027
1113
|
):
|
|
1028
1114
|
"""Extrude region and move result
|
|
1029
1115
|
|
|
1030
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1116
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1031
1117
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1032
1118
|
:type undo: typing.Optional[bool]
|
|
1033
1119
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1039,7 +1125,9 @@ def extrude_region_move(
|
|
|
1039
1125
|
...
|
|
1040
1126
|
|
|
1041
1127
|
def extrude_region_shrink_fatten(
|
|
1042
|
-
override_context: typing.Optional[
|
|
1128
|
+
override_context: typing.Optional[
|
|
1129
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1130
|
+
] = None,
|
|
1043
1131
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1044
1132
|
undo: typing.Optional[bool] = None,
|
|
1045
1133
|
MESH_OT_extrude_region: typing.Optional[extrude_region] = None,
|
|
@@ -1047,7 +1135,7 @@ def extrude_region_shrink_fatten(
|
|
|
1047
1135
|
):
|
|
1048
1136
|
"""Extrude region together along local normals
|
|
1049
1137
|
|
|
1050
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1138
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1051
1139
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1052
1140
|
:type undo: typing.Optional[bool]
|
|
1053
1141
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
@@ -1059,7 +1147,9 @@ def extrude_region_shrink_fatten(
|
|
|
1059
1147
|
...
|
|
1060
1148
|
|
|
1061
1149
|
def extrude_repeat(
|
|
1062
|
-
override_context: typing.Optional[
|
|
1150
|
+
override_context: typing.Optional[
|
|
1151
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1152
|
+
] = None,
|
|
1063
1153
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1064
1154
|
undo: typing.Optional[bool] = None,
|
|
1065
1155
|
steps: typing.Optional[typing.Any] = 10,
|
|
@@ -1068,7 +1158,7 @@ def extrude_repeat(
|
|
|
1068
1158
|
):
|
|
1069
1159
|
"""Extrude selected vertices, edges or faces repeatedly
|
|
1070
1160
|
|
|
1071
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1161
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1072
1162
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1073
1163
|
:type undo: typing.Optional[bool]
|
|
1074
1164
|
:param steps: Steps
|
|
@@ -1082,7 +1172,9 @@ def extrude_repeat(
|
|
|
1082
1172
|
...
|
|
1083
1173
|
|
|
1084
1174
|
def extrude_vertices_move(
|
|
1085
|
-
override_context: typing.Optional[
|
|
1175
|
+
override_context: typing.Optional[
|
|
1176
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1177
|
+
] = None,
|
|
1086
1178
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1087
1179
|
undo: typing.Optional[bool] = None,
|
|
1088
1180
|
MESH_OT_extrude_verts_indiv: typing.Optional[extrude_verts_indiv] = None,
|
|
@@ -1090,7 +1182,7 @@ def extrude_vertices_move(
|
|
|
1090
1182
|
):
|
|
1091
1183
|
"""Extrude vertices and move result
|
|
1092
1184
|
|
|
1093
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1185
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1094
1186
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1095
1187
|
:type undo: typing.Optional[bool]
|
|
1096
1188
|
:param MESH_OT_extrude_verts_indiv: Extrude Only Vertices, Extrude individual vertices only
|
|
@@ -1102,14 +1194,16 @@ def extrude_vertices_move(
|
|
|
1102
1194
|
...
|
|
1103
1195
|
|
|
1104
1196
|
def extrude_verts_indiv(
|
|
1105
|
-
override_context: typing.Optional[
|
|
1197
|
+
override_context: typing.Optional[
|
|
1198
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1199
|
+
] = None,
|
|
1106
1200
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1107
1201
|
undo: typing.Optional[bool] = None,
|
|
1108
1202
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1109
1203
|
):
|
|
1110
1204
|
"""Extrude individual vertices only
|
|
1111
1205
|
|
|
1112
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1206
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1113
1207
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1114
1208
|
:type undo: typing.Optional[bool]
|
|
1115
1209
|
:param mirror: Mirror Editing
|
|
@@ -1119,7 +1213,9 @@ def extrude_verts_indiv(
|
|
|
1119
1213
|
...
|
|
1120
1214
|
|
|
1121
1215
|
def face_make_planar(
|
|
1122
|
-
override_context: typing.Optional[
|
|
1216
|
+
override_context: typing.Optional[
|
|
1217
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1218
|
+
] = None,
|
|
1123
1219
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1124
1220
|
undo: typing.Optional[bool] = None,
|
|
1125
1221
|
factor: typing.Optional[typing.Any] = 1.0,
|
|
@@ -1127,7 +1223,7 @@ def face_make_planar(
|
|
|
1127
1223
|
):
|
|
1128
1224
|
"""Flatten selected faces
|
|
1129
1225
|
|
|
1130
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1226
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1131
1227
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1132
1228
|
:type undo: typing.Optional[bool]
|
|
1133
1229
|
:param factor: Factor
|
|
@@ -1139,7 +1235,9 @@ def face_make_planar(
|
|
|
1139
1235
|
...
|
|
1140
1236
|
|
|
1141
1237
|
def face_set_extract(
|
|
1142
|
-
override_context: typing.Optional[
|
|
1238
|
+
override_context: typing.Optional[
|
|
1239
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1240
|
+
] = None,
|
|
1143
1241
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1144
1242
|
undo: typing.Optional[bool] = None,
|
|
1145
1243
|
add_boundary_loop: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -1149,7 +1247,7 @@ def face_set_extract(
|
|
|
1149
1247
|
):
|
|
1150
1248
|
"""Create a new mesh object from the selected Face Set
|
|
1151
1249
|
|
|
1152
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1250
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1153
1251
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1154
1252
|
:type undo: typing.Optional[bool]
|
|
1155
1253
|
:param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
|
|
@@ -1165,13 +1263,15 @@ def face_set_extract(
|
|
|
1165
1263
|
...
|
|
1166
1264
|
|
|
1167
1265
|
def face_split_by_edges(
|
|
1168
|
-
override_context: typing.Optional[
|
|
1266
|
+
override_context: typing.Optional[
|
|
1267
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1268
|
+
] = None,
|
|
1169
1269
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1170
1270
|
undo: typing.Optional[bool] = None,
|
|
1171
1271
|
):
|
|
1172
1272
|
"""Weld loose edges into faces (splitting them into new faces)
|
|
1173
1273
|
|
|
1174
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1274
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1175
1275
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1176
1276
|
:type undo: typing.Optional[bool]
|
|
1177
1277
|
"""
|
|
@@ -1179,7 +1279,9 @@ def face_split_by_edges(
|
|
|
1179
1279
|
...
|
|
1180
1280
|
|
|
1181
1281
|
def faces_mirror_uv(
|
|
1182
|
-
override_context: typing.Optional[
|
|
1282
|
+
override_context: typing.Optional[
|
|
1283
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1284
|
+
] = None,
|
|
1183
1285
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1184
1286
|
undo: typing.Optional[bool] = None,
|
|
1185
1287
|
direction: typing.Optional[typing.Any] = "POSITIVE",
|
|
@@ -1187,7 +1289,7 @@ def faces_mirror_uv(
|
|
|
1187
1289
|
):
|
|
1188
1290
|
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh
|
|
1189
1291
|
|
|
1190
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1292
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1191
1293
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1192
1294
|
:type undo: typing.Optional[bool]
|
|
1193
1295
|
:param direction: Axis Direction
|
|
@@ -1199,14 +1301,16 @@ def faces_mirror_uv(
|
|
|
1199
1301
|
...
|
|
1200
1302
|
|
|
1201
1303
|
def faces_select_linked_flat(
|
|
1202
|
-
override_context: typing.Optional[
|
|
1304
|
+
override_context: typing.Optional[
|
|
1305
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1306
|
+
] = None,
|
|
1203
1307
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1204
1308
|
undo: typing.Optional[bool] = None,
|
|
1205
1309
|
sharpness: typing.Optional[typing.Any] = 0.0174533,
|
|
1206
1310
|
):
|
|
1207
1311
|
"""Select linked faces by angle
|
|
1208
1312
|
|
|
1209
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1313
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1210
1314
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1211
1315
|
:type undo: typing.Optional[bool]
|
|
1212
1316
|
:param sharpness: Sharpness
|
|
@@ -1216,13 +1320,15 @@ def faces_select_linked_flat(
|
|
|
1216
1320
|
...
|
|
1217
1321
|
|
|
1218
1322
|
def faces_shade_flat(
|
|
1219
|
-
override_context: typing.Optional[
|
|
1323
|
+
override_context: typing.Optional[
|
|
1324
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1325
|
+
] = None,
|
|
1220
1326
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1221
1327
|
undo: typing.Optional[bool] = None,
|
|
1222
1328
|
):
|
|
1223
1329
|
"""Display faces flat
|
|
1224
1330
|
|
|
1225
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1331
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1226
1332
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1227
1333
|
:type undo: typing.Optional[bool]
|
|
1228
1334
|
"""
|
|
@@ -1230,13 +1336,15 @@ def faces_shade_flat(
|
|
|
1230
1336
|
...
|
|
1231
1337
|
|
|
1232
1338
|
def faces_shade_smooth(
|
|
1233
|
-
override_context: typing.Optional[
|
|
1339
|
+
override_context: typing.Optional[
|
|
1340
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1341
|
+
] = None,
|
|
1234
1342
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1235
1343
|
undo: typing.Optional[bool] = None,
|
|
1236
1344
|
):
|
|
1237
1345
|
"""Display faces smooth (using vertex normals)
|
|
1238
1346
|
|
|
1239
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1347
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1240
1348
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1241
1349
|
:type undo: typing.Optional[bool]
|
|
1242
1350
|
"""
|
|
@@ -1244,14 +1352,16 @@ def faces_shade_smooth(
|
|
|
1244
1352
|
...
|
|
1245
1353
|
|
|
1246
1354
|
def fill(
|
|
1247
|
-
override_context: typing.Optional[
|
|
1355
|
+
override_context: typing.Optional[
|
|
1356
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1357
|
+
] = None,
|
|
1248
1358
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1249
1359
|
undo: typing.Optional[bool] = None,
|
|
1250
1360
|
use_beauty: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1251
1361
|
):
|
|
1252
1362
|
"""Fill a selected edge loop with faces
|
|
1253
1363
|
|
|
1254
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1364
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1255
1365
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1256
1366
|
:type undo: typing.Optional[bool]
|
|
1257
1367
|
:param use_beauty: Beauty, Use best triangulation division
|
|
@@ -1261,7 +1371,9 @@ def fill(
|
|
|
1261
1371
|
...
|
|
1262
1372
|
|
|
1263
1373
|
def fill_grid(
|
|
1264
|
-
override_context: typing.Optional[
|
|
1374
|
+
override_context: typing.Optional[
|
|
1375
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1376
|
+
] = None,
|
|
1265
1377
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1266
1378
|
undo: typing.Optional[bool] = None,
|
|
1267
1379
|
span: typing.Optional[typing.Any] = 1,
|
|
@@ -1270,7 +1382,7 @@ def fill_grid(
|
|
|
1270
1382
|
):
|
|
1271
1383
|
"""Fill grid from two loops
|
|
1272
1384
|
|
|
1273
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1385
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1274
1386
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1275
1387
|
:type undo: typing.Optional[bool]
|
|
1276
1388
|
:param span: Span, Number of grid columns
|
|
@@ -1284,14 +1396,16 @@ def fill_grid(
|
|
|
1284
1396
|
...
|
|
1285
1397
|
|
|
1286
1398
|
def fill_holes(
|
|
1287
|
-
override_context: typing.Optional[
|
|
1399
|
+
override_context: typing.Optional[
|
|
1400
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1401
|
+
] = None,
|
|
1288
1402
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1289
1403
|
undo: typing.Optional[bool] = None,
|
|
1290
1404
|
sides: typing.Optional[typing.Any] = 4,
|
|
1291
1405
|
):
|
|
1292
1406
|
"""Fill in holes (boundary edge loops)
|
|
1293
1407
|
|
|
1294
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1408
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1295
1409
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1296
1410
|
:type undo: typing.Optional[bool]
|
|
1297
1411
|
:param sides: Sides, Number of sides in hole required to fill (zero fills all holes)
|
|
@@ -1301,14 +1415,16 @@ def fill_holes(
|
|
|
1301
1415
|
...
|
|
1302
1416
|
|
|
1303
1417
|
def flip_normals(
|
|
1304
|
-
override_context: typing.Optional[
|
|
1418
|
+
override_context: typing.Optional[
|
|
1419
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1420
|
+
] = None,
|
|
1305
1421
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1306
1422
|
undo: typing.Optional[bool] = None,
|
|
1307
1423
|
only_clnors: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1308
1424
|
):
|
|
1309
1425
|
"""Flip the direction of selected faces' normals (and of their vertices)
|
|
1310
1426
|
|
|
1311
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1427
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1312
1428
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1313
1429
|
:type undo: typing.Optional[bool]
|
|
1314
1430
|
:param only_clnors: Custom Normals Only, Only flip the custom loop normals of the selected elements
|
|
@@ -1318,13 +1434,15 @@ def flip_normals(
|
|
|
1318
1434
|
...
|
|
1319
1435
|
|
|
1320
1436
|
def flip_quad_tessellation(
|
|
1321
|
-
override_context: typing.Optional[
|
|
1437
|
+
override_context: typing.Optional[
|
|
1438
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1439
|
+
] = None,
|
|
1322
1440
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1323
1441
|
undo: typing.Optional[bool] = None,
|
|
1324
1442
|
):
|
|
1325
1443
|
"""Flips the tessellation of selected quads
|
|
1326
1444
|
|
|
1327
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1445
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1328
1446
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1329
1447
|
:type undo: typing.Optional[bool]
|
|
1330
1448
|
"""
|
|
@@ -1332,14 +1450,16 @@ def flip_quad_tessellation(
|
|
|
1332
1450
|
...
|
|
1333
1451
|
|
|
1334
1452
|
def hide(
|
|
1335
|
-
override_context: typing.Optional[
|
|
1453
|
+
override_context: typing.Optional[
|
|
1454
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1455
|
+
] = None,
|
|
1336
1456
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1337
1457
|
undo: typing.Optional[bool] = None,
|
|
1338
1458
|
unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1339
1459
|
):
|
|
1340
1460
|
"""Hide (un)selected vertices, edges or faces
|
|
1341
1461
|
|
|
1342
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1462
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1343
1463
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1344
1464
|
:type undo: typing.Optional[bool]
|
|
1345
1465
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -1349,7 +1469,9 @@ def hide(
|
|
|
1349
1469
|
...
|
|
1350
1470
|
|
|
1351
1471
|
def inset(
|
|
1352
|
-
override_context: typing.Optional[
|
|
1472
|
+
override_context: typing.Optional[
|
|
1473
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1474
|
+
] = None,
|
|
1353
1475
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1354
1476
|
undo: typing.Optional[bool] = None,
|
|
1355
1477
|
use_boundary: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -1366,7 +1488,7 @@ def inset(
|
|
|
1366
1488
|
):
|
|
1367
1489
|
"""Inset new faces into selected faces
|
|
1368
1490
|
|
|
1369
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1491
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1370
1492
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1371
1493
|
:type undo: typing.Optional[bool]
|
|
1372
1494
|
:param use_boundary: Boundary, Inset face boundaries
|
|
@@ -1396,7 +1518,9 @@ def inset(
|
|
|
1396
1518
|
...
|
|
1397
1519
|
|
|
1398
1520
|
def intersect(
|
|
1399
|
-
override_context: typing.Optional[
|
|
1521
|
+
override_context: typing.Optional[
|
|
1522
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1523
|
+
] = None,
|
|
1400
1524
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1401
1525
|
undo: typing.Optional[bool] = None,
|
|
1402
1526
|
mode: typing.Optional[typing.Any] = "SELECT_UNSELECT",
|
|
@@ -1406,7 +1530,7 @@ def intersect(
|
|
|
1406
1530
|
):
|
|
1407
1531
|
"""Cut an intersection into faces
|
|
1408
1532
|
|
|
1409
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1533
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1410
1534
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1411
1535
|
:type undo: typing.Optional[bool]
|
|
1412
1536
|
:param mode: Source
|
|
@@ -1443,7 +1567,9 @@ def intersect(
|
|
|
1443
1567
|
...
|
|
1444
1568
|
|
|
1445
1569
|
def intersect_boolean(
|
|
1446
|
-
override_context: typing.Optional[
|
|
1570
|
+
override_context: typing.Optional[
|
|
1571
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1572
|
+
] = None,
|
|
1447
1573
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1448
1574
|
undo: typing.Optional[bool] = None,
|
|
1449
1575
|
operation: typing.Optional[typing.Any] = "DIFFERENCE",
|
|
@@ -1454,7 +1580,7 @@ def intersect_boolean(
|
|
|
1454
1580
|
):
|
|
1455
1581
|
"""Cut solid geometry from selected to unselected
|
|
1456
1582
|
|
|
1457
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1583
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1458
1584
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1459
1585
|
:type undo: typing.Optional[bool]
|
|
1460
1586
|
:param operation: Boolean Operation, Which boolean operation to apply
|
|
@@ -1478,14 +1604,16 @@ def intersect_boolean(
|
|
|
1478
1604
|
...
|
|
1479
1605
|
|
|
1480
1606
|
def knife_project(
|
|
1481
|
-
override_context: typing.Optional[
|
|
1607
|
+
override_context: typing.Optional[
|
|
1608
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1609
|
+
] = None,
|
|
1482
1610
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1483
1611
|
undo: typing.Optional[bool] = None,
|
|
1484
1612
|
cut_through: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1485
1613
|
):
|
|
1486
1614
|
"""Use other objects outlines and boundaries to project knife cuts
|
|
1487
1615
|
|
|
1488
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1616
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1489
1617
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1490
1618
|
:type undo: typing.Optional[bool]
|
|
1491
1619
|
:param cut_through: Cut Through, Cut through all faces, not just visible ones
|
|
@@ -1495,7 +1623,9 @@ def knife_project(
|
|
|
1495
1623
|
...
|
|
1496
1624
|
|
|
1497
1625
|
def knife_tool(
|
|
1498
|
-
override_context: typing.Optional[
|
|
1626
|
+
override_context: typing.Optional[
|
|
1627
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1628
|
+
] = None,
|
|
1499
1629
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1500
1630
|
undo: typing.Optional[bool] = None,
|
|
1501
1631
|
use_occlude_geometry: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -1508,7 +1638,7 @@ def knife_tool(
|
|
|
1508
1638
|
):
|
|
1509
1639
|
"""Cut new topology
|
|
1510
1640
|
|
|
1511
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1641
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1512
1642
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1513
1643
|
:type undo: typing.Optional[bool]
|
|
1514
1644
|
:param use_occlude_geometry: Occlude Geometry, Only cut the front most geometry
|
|
@@ -1551,14 +1681,16 @@ def knife_tool(
|
|
|
1551
1681
|
...
|
|
1552
1682
|
|
|
1553
1683
|
def loop_multi_select(
|
|
1554
|
-
override_context: typing.Optional[
|
|
1684
|
+
override_context: typing.Optional[
|
|
1685
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1686
|
+
] = None,
|
|
1555
1687
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1556
1688
|
undo: typing.Optional[bool] = None,
|
|
1557
1689
|
ring: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1558
1690
|
):
|
|
1559
1691
|
"""Select a loop of connected edges by connection type
|
|
1560
1692
|
|
|
1561
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1693
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1562
1694
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1563
1695
|
:type undo: typing.Optional[bool]
|
|
1564
1696
|
:param ring: Ring
|
|
@@ -1568,7 +1700,9 @@ def loop_multi_select(
|
|
|
1568
1700
|
...
|
|
1569
1701
|
|
|
1570
1702
|
def loop_select(
|
|
1571
|
-
override_context: typing.Optional[
|
|
1703
|
+
override_context: typing.Optional[
|
|
1704
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1705
|
+
] = None,
|
|
1572
1706
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1573
1707
|
undo: typing.Optional[bool] = None,
|
|
1574
1708
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1578,7 +1712,7 @@ def loop_select(
|
|
|
1578
1712
|
):
|
|
1579
1713
|
"""Select a loop of connected edges
|
|
1580
1714
|
|
|
1581
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1715
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1582
1716
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1583
1717
|
:type undo: typing.Optional[bool]
|
|
1584
1718
|
:param extend: Extend Select, Extend the selection
|
|
@@ -1594,14 +1728,16 @@ def loop_select(
|
|
|
1594
1728
|
...
|
|
1595
1729
|
|
|
1596
1730
|
def loop_to_region(
|
|
1597
|
-
override_context: typing.Optional[
|
|
1731
|
+
override_context: typing.Optional[
|
|
1732
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1733
|
+
] = None,
|
|
1598
1734
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1599
1735
|
undo: typing.Optional[bool] = None,
|
|
1600
1736
|
select_bigger: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1601
1737
|
):
|
|
1602
1738
|
"""Select region of faces inside of a selected loop of edges
|
|
1603
1739
|
|
|
1604
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1740
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1605
1741
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1606
1742
|
:type undo: typing.Optional[bool]
|
|
1607
1743
|
:param select_bigger: Select Bigger, Select bigger regions instead of smaller ones
|
|
@@ -1611,7 +1747,9 @@ def loop_to_region(
|
|
|
1611
1747
|
...
|
|
1612
1748
|
|
|
1613
1749
|
def loopcut(
|
|
1614
|
-
override_context: typing.Optional[
|
|
1750
|
+
override_context: typing.Optional[
|
|
1751
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1752
|
+
] = None,
|
|
1615
1753
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1616
1754
|
undo: typing.Optional[bool] = None,
|
|
1617
1755
|
number_cuts: typing.Optional[typing.Any] = 1,
|
|
@@ -1625,7 +1763,7 @@ def loopcut(
|
|
|
1625
1763
|
):
|
|
1626
1764
|
"""Add a new loop between existing loops
|
|
1627
1765
|
|
|
1628
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1766
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1629
1767
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1630
1768
|
:type undo: typing.Optional[bool]
|
|
1631
1769
|
:param number_cuts: Number of Cuts
|
|
@@ -1644,7 +1782,9 @@ def loopcut(
|
|
|
1644
1782
|
...
|
|
1645
1783
|
|
|
1646
1784
|
def loopcut_slide(
|
|
1647
|
-
override_context: typing.Optional[
|
|
1785
|
+
override_context: typing.Optional[
|
|
1786
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1787
|
+
] = None,
|
|
1648
1788
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1649
1789
|
undo: typing.Optional[bool] = None,
|
|
1650
1790
|
MESH_OT_loopcut: typing.Optional[loopcut] = None,
|
|
@@ -1652,7 +1792,7 @@ def loopcut_slide(
|
|
|
1652
1792
|
):
|
|
1653
1793
|
"""Cut mesh loop and slide it
|
|
1654
1794
|
|
|
1655
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1795
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1656
1796
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1657
1797
|
:type undo: typing.Optional[bool]
|
|
1658
1798
|
:param MESH_OT_loopcut: Loop Cut, Add a new loop between existing loops
|
|
@@ -1664,14 +1804,16 @@ def loopcut_slide(
|
|
|
1664
1804
|
...
|
|
1665
1805
|
|
|
1666
1806
|
def mark_freestyle_edge(
|
|
1667
|
-
override_context: typing.Optional[
|
|
1807
|
+
override_context: typing.Optional[
|
|
1808
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1809
|
+
] = None,
|
|
1668
1810
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1669
1811
|
undo: typing.Optional[bool] = None,
|
|
1670
1812
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1671
1813
|
):
|
|
1672
1814
|
"""(Un)mark selected edges as Freestyle feature edges
|
|
1673
1815
|
|
|
1674
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1816
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1675
1817
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1676
1818
|
:type undo: typing.Optional[bool]
|
|
1677
1819
|
:param clear: Clear
|
|
@@ -1681,14 +1823,16 @@ def mark_freestyle_edge(
|
|
|
1681
1823
|
...
|
|
1682
1824
|
|
|
1683
1825
|
def mark_freestyle_face(
|
|
1684
|
-
override_context: typing.Optional[
|
|
1826
|
+
override_context: typing.Optional[
|
|
1827
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1828
|
+
] = None,
|
|
1685
1829
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1686
1830
|
undo: typing.Optional[bool] = None,
|
|
1687
1831
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1688
1832
|
):
|
|
1689
1833
|
"""(Un)mark selected faces for exclusion from Freestyle feature edge detection
|
|
1690
1834
|
|
|
1691
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1835
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1692
1836
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1693
1837
|
:type undo: typing.Optional[bool]
|
|
1694
1838
|
:param clear: Clear
|
|
@@ -1698,14 +1842,16 @@ def mark_freestyle_face(
|
|
|
1698
1842
|
...
|
|
1699
1843
|
|
|
1700
1844
|
def mark_seam(
|
|
1701
|
-
override_context: typing.Optional[
|
|
1845
|
+
override_context: typing.Optional[
|
|
1846
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1847
|
+
] = None,
|
|
1702
1848
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1703
1849
|
undo: typing.Optional[bool] = None,
|
|
1704
1850
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1705
1851
|
):
|
|
1706
1852
|
"""(Un)mark selected edges as a seam
|
|
1707
1853
|
|
|
1708
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1854
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1709
1855
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1710
1856
|
:type undo: typing.Optional[bool]
|
|
1711
1857
|
:param clear: Clear
|
|
@@ -1715,7 +1861,9 @@ def mark_seam(
|
|
|
1715
1861
|
...
|
|
1716
1862
|
|
|
1717
1863
|
def mark_sharp(
|
|
1718
|
-
override_context: typing.Optional[
|
|
1864
|
+
override_context: typing.Optional[
|
|
1865
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1866
|
+
] = None,
|
|
1719
1867
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1720
1868
|
undo: typing.Optional[bool] = None,
|
|
1721
1869
|
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1723,7 +1871,7 @@ def mark_sharp(
|
|
|
1723
1871
|
):
|
|
1724
1872
|
"""(Un)mark selected edges as sharp
|
|
1725
1873
|
|
|
1726
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1874
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1727
1875
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1728
1876
|
:type undo: typing.Optional[bool]
|
|
1729
1877
|
:param clear: Clear
|
|
@@ -1735,7 +1883,9 @@ def mark_sharp(
|
|
|
1735
1883
|
...
|
|
1736
1884
|
|
|
1737
1885
|
def merge(
|
|
1738
|
-
override_context: typing.Optional[
|
|
1886
|
+
override_context: typing.Optional[
|
|
1887
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1888
|
+
] = None,
|
|
1739
1889
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1740
1890
|
undo: typing.Optional[bool] = None,
|
|
1741
1891
|
type: typing.Optional[typing.Any] = "CENTER",
|
|
@@ -1743,7 +1893,7 @@ def merge(
|
|
|
1743
1893
|
):
|
|
1744
1894
|
"""Merge selected vertices
|
|
1745
1895
|
|
|
1746
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1896
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1747
1897
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1748
1898
|
:type undo: typing.Optional[bool]
|
|
1749
1899
|
:param type: Type, Merge method to use
|
|
@@ -1755,13 +1905,15 @@ def merge(
|
|
|
1755
1905
|
...
|
|
1756
1906
|
|
|
1757
1907
|
def merge_normals(
|
|
1758
|
-
override_context: typing.Optional[
|
|
1908
|
+
override_context: typing.Optional[
|
|
1909
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1910
|
+
] = None,
|
|
1759
1911
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1760
1912
|
undo: typing.Optional[bool] = None,
|
|
1761
1913
|
):
|
|
1762
1914
|
"""Merge custom normals of selected vertices
|
|
1763
1915
|
|
|
1764
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1916
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1765
1917
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1766
1918
|
:type undo: typing.Optional[bool]
|
|
1767
1919
|
"""
|
|
@@ -1769,7 +1921,9 @@ def merge_normals(
|
|
|
1769
1921
|
...
|
|
1770
1922
|
|
|
1771
1923
|
def mod_weighted_strength(
|
|
1772
|
-
override_context: typing.Optional[
|
|
1924
|
+
override_context: typing.Optional[
|
|
1925
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1926
|
+
] = None,
|
|
1773
1927
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1774
1928
|
undo: typing.Optional[bool] = None,
|
|
1775
1929
|
set: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -1777,7 +1931,7 @@ def mod_weighted_strength(
|
|
|
1777
1931
|
):
|
|
1778
1932
|
"""Set/Get strength of face (used in Weighted Normal modifier)
|
|
1779
1933
|
|
|
1780
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1934
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1781
1935
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1782
1936
|
:type undo: typing.Optional[bool]
|
|
1783
1937
|
:param set: Set Value, Set value of faces
|
|
@@ -1789,14 +1943,16 @@ def mod_weighted_strength(
|
|
|
1789
1943
|
...
|
|
1790
1944
|
|
|
1791
1945
|
def normals_make_consistent(
|
|
1792
|
-
override_context: typing.Optional[
|
|
1946
|
+
override_context: typing.Optional[
|
|
1947
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1948
|
+
] = None,
|
|
1793
1949
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1794
1950
|
undo: typing.Optional[bool] = None,
|
|
1795
1951
|
inside: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1796
1952
|
):
|
|
1797
1953
|
"""Make face and vertex normals point either outside or inside the mesh
|
|
1798
1954
|
|
|
1799
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1955
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1800
1956
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1801
1957
|
:type undo: typing.Optional[bool]
|
|
1802
1958
|
:param inside: Inside
|
|
@@ -1806,7 +1962,9 @@ def normals_make_consistent(
|
|
|
1806
1962
|
...
|
|
1807
1963
|
|
|
1808
1964
|
def normals_tools(
|
|
1809
|
-
override_context: typing.Optional[
|
|
1965
|
+
override_context: typing.Optional[
|
|
1966
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1967
|
+
] = None,
|
|
1810
1968
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1811
1969
|
undo: typing.Optional[bool] = None,
|
|
1812
1970
|
mode: typing.Optional[typing.Any] = "COPY",
|
|
@@ -1814,7 +1972,7 @@ def normals_tools(
|
|
|
1814
1972
|
):
|
|
1815
1973
|
"""Custom normals tools using Normal Vector of UI
|
|
1816
1974
|
|
|
1817
|
-
:type override_context: typing.Optional[typing.Union[
|
|
1975
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1818
1976
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1819
1977
|
:type undo: typing.Optional[bool]
|
|
1820
1978
|
:param mode: Mode, Mode of tools taking input from interface
|
|
@@ -1841,14 +1999,16 @@ def normals_tools(
|
|
|
1841
1999
|
...
|
|
1842
2000
|
|
|
1843
2001
|
def offset_edge_loops(
|
|
1844
|
-
override_context: typing.Optional[
|
|
2002
|
+
override_context: typing.Optional[
|
|
2003
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2004
|
+
] = None,
|
|
1845
2005
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1846
2006
|
undo: typing.Optional[bool] = None,
|
|
1847
2007
|
use_cap_endpoint: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1848
2008
|
):
|
|
1849
2009
|
"""Create offset edge loop from the current selection
|
|
1850
2010
|
|
|
1851
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2011
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1852
2012
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1853
2013
|
:type undo: typing.Optional[bool]
|
|
1854
2014
|
:param use_cap_endpoint: Cap Endpoint, Extend loop around end-points
|
|
@@ -1858,7 +2018,9 @@ def offset_edge_loops(
|
|
|
1858
2018
|
...
|
|
1859
2019
|
|
|
1860
2020
|
def offset_edge_loops_slide(
|
|
1861
|
-
override_context: typing.Optional[
|
|
2021
|
+
override_context: typing.Optional[
|
|
2022
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2023
|
+
] = None,
|
|
1862
2024
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1863
2025
|
undo: typing.Optional[bool] = None,
|
|
1864
2026
|
MESH_OT_offset_edge_loops: typing.Optional[offset_edge_loops] = None,
|
|
@@ -1866,7 +2028,7 @@ def offset_edge_loops_slide(
|
|
|
1866
2028
|
):
|
|
1867
2029
|
"""Offset edge loop slide
|
|
1868
2030
|
|
|
1869
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2031
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1870
2032
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1871
2033
|
:type undo: typing.Optional[bool]
|
|
1872
2034
|
:param MESH_OT_offset_edge_loops: Offset Edge Loop, Create offset edge loop from the current selection
|
|
@@ -1878,7 +2040,9 @@ def offset_edge_loops_slide(
|
|
|
1878
2040
|
...
|
|
1879
2041
|
|
|
1880
2042
|
def paint_mask_extract(
|
|
1881
|
-
override_context: typing.Optional[
|
|
2043
|
+
override_context: typing.Optional[
|
|
2044
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2045
|
+
] = None,
|
|
1882
2046
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1883
2047
|
undo: typing.Optional[bool] = None,
|
|
1884
2048
|
mask_threshold: typing.Optional[typing.Any] = 0.5,
|
|
@@ -1889,7 +2053,7 @@ def paint_mask_extract(
|
|
|
1889
2053
|
):
|
|
1890
2054
|
"""Create a new mesh object from the current paint mask
|
|
1891
2055
|
|
|
1892
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2056
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1893
2057
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1894
2058
|
:type undo: typing.Optional[bool]
|
|
1895
2059
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1907,7 +2071,9 @@ def paint_mask_extract(
|
|
|
1907
2071
|
...
|
|
1908
2072
|
|
|
1909
2073
|
def paint_mask_slice(
|
|
1910
|
-
override_context: typing.Optional[
|
|
2074
|
+
override_context: typing.Optional[
|
|
2075
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2076
|
+
] = None,
|
|
1911
2077
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1912
2078
|
undo: typing.Optional[bool] = None,
|
|
1913
2079
|
mask_threshold: typing.Optional[typing.Any] = 0.5,
|
|
@@ -1916,7 +2082,7 @@ def paint_mask_slice(
|
|
|
1916
2082
|
):
|
|
1917
2083
|
"""Slices the paint mask from the mesh
|
|
1918
2084
|
|
|
1919
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2085
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1920
2086
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1921
2087
|
:type undo: typing.Optional[bool]
|
|
1922
2088
|
:param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
|
|
@@ -1930,7 +2096,9 @@ def paint_mask_slice(
|
|
|
1930
2096
|
...
|
|
1931
2097
|
|
|
1932
2098
|
def point_normals(
|
|
1933
|
-
override_context: typing.Optional[
|
|
2099
|
+
override_context: typing.Optional[
|
|
2100
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2101
|
+
] = None,
|
|
1934
2102
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1935
2103
|
undo: typing.Optional[bool] = None,
|
|
1936
2104
|
mode: typing.Optional[typing.Any] = "COORDINATES",
|
|
@@ -1942,7 +2110,7 @@ def point_normals(
|
|
|
1942
2110
|
):
|
|
1943
2111
|
"""Point selected custom normals to specified Target
|
|
1944
2112
|
|
|
1945
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2113
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1946
2114
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1947
2115
|
:type undo: typing.Optional[bool]
|
|
1948
2116
|
:param mode: Mode, How to define coordinates to point custom normals to
|
|
@@ -1968,7 +2136,9 @@ def point_normals(
|
|
|
1968
2136
|
...
|
|
1969
2137
|
|
|
1970
2138
|
def poke(
|
|
1971
|
-
override_context: typing.Optional[
|
|
2139
|
+
override_context: typing.Optional[
|
|
2140
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2141
|
+
] = None,
|
|
1972
2142
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1973
2143
|
undo: typing.Optional[bool] = None,
|
|
1974
2144
|
offset: typing.Optional[typing.Any] = 0.0,
|
|
@@ -1977,7 +2147,7 @@ def poke(
|
|
|
1977
2147
|
):
|
|
1978
2148
|
"""Split a face into a fan
|
|
1979
2149
|
|
|
1980
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2150
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1981
2151
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1982
2152
|
:type undo: typing.Optional[bool]
|
|
1983
2153
|
:param offset: Poke Offset, Poke Offset
|
|
@@ -2000,7 +2170,9 @@ def poke(
|
|
|
2000
2170
|
...
|
|
2001
2171
|
|
|
2002
2172
|
def polybuild_delete_at_cursor(
|
|
2003
|
-
override_context: typing.Optional[
|
|
2173
|
+
override_context: typing.Optional[
|
|
2174
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2175
|
+
] = None,
|
|
2004
2176
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2005
2177
|
undo: typing.Optional[bool] = None,
|
|
2006
2178
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2014,7 +2186,7 @@ def polybuild_delete_at_cursor(
|
|
|
2014
2186
|
):
|
|
2015
2187
|
"""Undocumented, consider contributing.
|
|
2016
2188
|
|
|
2017
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2189
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2018
2190
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2019
2191
|
:type undo: typing.Optional[bool]
|
|
2020
2192
|
:param mirror: Mirror Editing
|
|
@@ -2038,13 +2210,15 @@ def polybuild_delete_at_cursor(
|
|
|
2038
2210
|
...
|
|
2039
2211
|
|
|
2040
2212
|
def polybuild_dissolve_at_cursor(
|
|
2041
|
-
override_context: typing.Optional[
|
|
2213
|
+
override_context: typing.Optional[
|
|
2214
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2215
|
+
] = None,
|
|
2042
2216
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2043
2217
|
undo: typing.Optional[bool] = None,
|
|
2044
2218
|
):
|
|
2045
2219
|
"""Undocumented, consider contributing.
|
|
2046
2220
|
|
|
2047
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2221
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2048
2222
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2049
2223
|
:type undo: typing.Optional[bool]
|
|
2050
2224
|
"""
|
|
@@ -2052,7 +2226,9 @@ def polybuild_dissolve_at_cursor(
|
|
|
2052
2226
|
...
|
|
2053
2227
|
|
|
2054
2228
|
def polybuild_extrude_at_cursor_move(
|
|
2055
|
-
override_context: typing.Optional[
|
|
2229
|
+
override_context: typing.Optional[
|
|
2230
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2231
|
+
] = None,
|
|
2056
2232
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2057
2233
|
undo: typing.Optional[bool] = None,
|
|
2058
2234
|
MESH_OT_polybuild_transform_at_cursor: typing.Optional[
|
|
@@ -2063,7 +2239,7 @@ def polybuild_extrude_at_cursor_move(
|
|
|
2063
2239
|
):
|
|
2064
2240
|
"""Undocumented, consider contributing.
|
|
2065
2241
|
|
|
2066
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2242
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2067
2243
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2068
2244
|
:type undo: typing.Optional[bool]
|
|
2069
2245
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2077,7 +2253,9 @@ def polybuild_extrude_at_cursor_move(
|
|
|
2077
2253
|
...
|
|
2078
2254
|
|
|
2079
2255
|
def polybuild_face_at_cursor(
|
|
2080
|
-
override_context: typing.Optional[
|
|
2256
|
+
override_context: typing.Optional[
|
|
2257
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2258
|
+
] = None,
|
|
2081
2259
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2082
2260
|
undo: typing.Optional[bool] = None,
|
|
2083
2261
|
create_quads: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -2092,7 +2270,7 @@ def polybuild_face_at_cursor(
|
|
|
2092
2270
|
):
|
|
2093
2271
|
"""Undocumented, consider contributing.
|
|
2094
2272
|
|
|
2095
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2273
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2096
2274
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2097
2275
|
:type undo: typing.Optional[bool]
|
|
2098
2276
|
:param create_quads: Create Quads, Automatically split edges in triangles to maintain quad topology
|
|
@@ -2118,7 +2296,9 @@ def polybuild_face_at_cursor(
|
|
|
2118
2296
|
...
|
|
2119
2297
|
|
|
2120
2298
|
def polybuild_face_at_cursor_move(
|
|
2121
|
-
override_context: typing.Optional[
|
|
2299
|
+
override_context: typing.Optional[
|
|
2300
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2301
|
+
] = None,
|
|
2122
2302
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2123
2303
|
undo: typing.Optional[bool] = None,
|
|
2124
2304
|
MESH_OT_polybuild_face_at_cursor: typing.Optional[polybuild_face_at_cursor] = None,
|
|
@@ -2126,7 +2306,7 @@ def polybuild_face_at_cursor_move(
|
|
|
2126
2306
|
):
|
|
2127
2307
|
"""Undocumented, consider contributing.
|
|
2128
2308
|
|
|
2129
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2309
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2130
2310
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2131
2311
|
:type undo: typing.Optional[bool]
|
|
2132
2312
|
:param MESH_OT_polybuild_face_at_cursor: Poly Build Face at Cursor
|
|
@@ -2138,7 +2318,9 @@ def polybuild_face_at_cursor_move(
|
|
|
2138
2318
|
...
|
|
2139
2319
|
|
|
2140
2320
|
def polybuild_split_at_cursor(
|
|
2141
|
-
override_context: typing.Optional[
|
|
2321
|
+
override_context: typing.Optional[
|
|
2322
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2323
|
+
] = None,
|
|
2142
2324
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2143
2325
|
undo: typing.Optional[bool] = None,
|
|
2144
2326
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2152,7 +2334,7 @@ def polybuild_split_at_cursor(
|
|
|
2152
2334
|
):
|
|
2153
2335
|
"""Undocumented, consider contributing.
|
|
2154
2336
|
|
|
2155
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2337
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2156
2338
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2157
2339
|
:type undo: typing.Optional[bool]
|
|
2158
2340
|
:param mirror: Mirror Editing
|
|
@@ -2176,7 +2358,9 @@ def polybuild_split_at_cursor(
|
|
|
2176
2358
|
...
|
|
2177
2359
|
|
|
2178
2360
|
def polybuild_split_at_cursor_move(
|
|
2179
|
-
override_context: typing.Optional[
|
|
2361
|
+
override_context: typing.Optional[
|
|
2362
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2363
|
+
] = None,
|
|
2180
2364
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2181
2365
|
undo: typing.Optional[bool] = None,
|
|
2182
2366
|
MESH_OT_polybuild_split_at_cursor: typing.Optional[
|
|
@@ -2186,7 +2370,7 @@ def polybuild_split_at_cursor_move(
|
|
|
2186
2370
|
):
|
|
2187
2371
|
"""Undocumented, consider contributing.
|
|
2188
2372
|
|
|
2189
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2373
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2190
2374
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2191
2375
|
:type undo: typing.Optional[bool]
|
|
2192
2376
|
:param MESH_OT_polybuild_split_at_cursor: Poly Build Split at Cursor
|
|
@@ -2198,7 +2382,9 @@ def polybuild_split_at_cursor_move(
|
|
|
2198
2382
|
...
|
|
2199
2383
|
|
|
2200
2384
|
def polybuild_transform_at_cursor(
|
|
2201
|
-
override_context: typing.Optional[
|
|
2385
|
+
override_context: typing.Optional[
|
|
2386
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2387
|
+
] = None,
|
|
2202
2388
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2203
2389
|
undo: typing.Optional[bool] = None,
|
|
2204
2390
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2212,7 +2398,7 @@ def polybuild_transform_at_cursor(
|
|
|
2212
2398
|
):
|
|
2213
2399
|
"""Undocumented, consider contributing.
|
|
2214
2400
|
|
|
2215
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2401
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2216
2402
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2217
2403
|
:type undo: typing.Optional[bool]
|
|
2218
2404
|
:param mirror: Mirror Editing
|
|
@@ -2236,7 +2422,9 @@ def polybuild_transform_at_cursor(
|
|
|
2236
2422
|
...
|
|
2237
2423
|
|
|
2238
2424
|
def polybuild_transform_at_cursor_move(
|
|
2239
|
-
override_context: typing.Optional[
|
|
2425
|
+
override_context: typing.Optional[
|
|
2426
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2427
|
+
] = None,
|
|
2240
2428
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2241
2429
|
undo: typing.Optional[bool] = None,
|
|
2242
2430
|
MESH_OT_polybuild_transform_at_cursor: typing.Optional[
|
|
@@ -2246,7 +2434,7 @@ def polybuild_transform_at_cursor_move(
|
|
|
2246
2434
|
):
|
|
2247
2435
|
"""Undocumented, consider contributing.
|
|
2248
2436
|
|
|
2249
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2437
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2250
2438
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2251
2439
|
:type undo: typing.Optional[bool]
|
|
2252
2440
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
@@ -2258,7 +2446,9 @@ def polybuild_transform_at_cursor_move(
|
|
|
2258
2446
|
...
|
|
2259
2447
|
|
|
2260
2448
|
def primitive_circle_add(
|
|
2261
|
-
override_context: typing.Optional[
|
|
2449
|
+
override_context: typing.Optional[
|
|
2450
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2451
|
+
] = None,
|
|
2262
2452
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2263
2453
|
undo: typing.Optional[bool] = None,
|
|
2264
2454
|
vertices: typing.Optional[typing.Any] = 32,
|
|
@@ -2273,7 +2463,7 @@ def primitive_circle_add(
|
|
|
2273
2463
|
):
|
|
2274
2464
|
"""Construct a circle mesh
|
|
2275
2465
|
|
|
2276
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2466
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2277
2467
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2278
2468
|
:type undo: typing.Optional[bool]
|
|
2279
2469
|
:param vertices: Vertices
|
|
@@ -2317,7 +2507,9 @@ def primitive_circle_add(
|
|
|
2317
2507
|
...
|
|
2318
2508
|
|
|
2319
2509
|
def primitive_cone_add(
|
|
2320
|
-
override_context: typing.Optional[
|
|
2510
|
+
override_context: typing.Optional[
|
|
2511
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2512
|
+
] = None,
|
|
2321
2513
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2322
2514
|
undo: typing.Optional[bool] = None,
|
|
2323
2515
|
vertices: typing.Optional[typing.Any] = 32,
|
|
@@ -2334,7 +2526,7 @@ def primitive_cone_add(
|
|
|
2334
2526
|
):
|
|
2335
2527
|
"""Construct a conic mesh
|
|
2336
2528
|
|
|
2337
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2529
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2338
2530
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2339
2531
|
:type undo: typing.Optional[bool]
|
|
2340
2532
|
:param vertices: Vertices
|
|
@@ -2382,7 +2574,9 @@ def primitive_cone_add(
|
|
|
2382
2574
|
...
|
|
2383
2575
|
|
|
2384
2576
|
def primitive_cube_add(
|
|
2385
|
-
override_context: typing.Optional[
|
|
2577
|
+
override_context: typing.Optional[
|
|
2578
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2579
|
+
] = None,
|
|
2386
2580
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2387
2581
|
undo: typing.Optional[bool] = None,
|
|
2388
2582
|
size: typing.Optional[typing.Any] = 2.0,
|
|
@@ -2395,7 +2589,7 @@ def primitive_cube_add(
|
|
|
2395
2589
|
):
|
|
2396
2590
|
"""Construct a cube mesh that consists of six square faces
|
|
2397
2591
|
|
|
2398
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2592
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2399
2593
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2400
2594
|
:type undo: typing.Optional[bool]
|
|
2401
2595
|
:param size: Size
|
|
@@ -2426,7 +2620,9 @@ def primitive_cube_add(
|
|
|
2426
2620
|
...
|
|
2427
2621
|
|
|
2428
2622
|
def primitive_cube_add_gizmo(
|
|
2429
|
-
override_context: typing.Optional[
|
|
2623
|
+
override_context: typing.Optional[
|
|
2624
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2625
|
+
] = None,
|
|
2430
2626
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2431
2627
|
undo: typing.Optional[bool] = None,
|
|
2432
2628
|
calc_uvs: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -2444,7 +2640,7 @@ def primitive_cube_add_gizmo(
|
|
|
2444
2640
|
):
|
|
2445
2641
|
"""Construct a cube mesh
|
|
2446
2642
|
|
|
2447
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2643
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2448
2644
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2449
2645
|
:type undo: typing.Optional[bool]
|
|
2450
2646
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
@@ -2475,7 +2671,9 @@ def primitive_cube_add_gizmo(
|
|
|
2475
2671
|
...
|
|
2476
2672
|
|
|
2477
2673
|
def primitive_cylinder_add(
|
|
2478
|
-
override_context: typing.Optional[
|
|
2674
|
+
override_context: typing.Optional[
|
|
2675
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2676
|
+
] = None,
|
|
2479
2677
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2480
2678
|
undo: typing.Optional[bool] = None,
|
|
2481
2679
|
vertices: typing.Optional[typing.Any] = 32,
|
|
@@ -2491,7 +2689,7 @@ def primitive_cylinder_add(
|
|
|
2491
2689
|
):
|
|
2492
2690
|
"""Construct a cylinder mesh
|
|
2493
2691
|
|
|
2494
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2692
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2495
2693
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2496
2694
|
:type undo: typing.Optional[bool]
|
|
2497
2695
|
:param vertices: Vertices
|
|
@@ -2537,7 +2735,9 @@ def primitive_cylinder_add(
|
|
|
2537
2735
|
...
|
|
2538
2736
|
|
|
2539
2737
|
def primitive_grid_add(
|
|
2540
|
-
override_context: typing.Optional[
|
|
2738
|
+
override_context: typing.Optional[
|
|
2739
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2740
|
+
] = None,
|
|
2541
2741
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2542
2742
|
undo: typing.Optional[bool] = None,
|
|
2543
2743
|
x_subdivisions: typing.Optional[typing.Any] = 10,
|
|
@@ -2552,7 +2752,7 @@ def primitive_grid_add(
|
|
|
2552
2752
|
):
|
|
2553
2753
|
"""Construct a subdivided plane mesh
|
|
2554
2754
|
|
|
2555
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2755
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2556
2756
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2557
2757
|
:type undo: typing.Optional[bool]
|
|
2558
2758
|
:param x_subdivisions: X Subdivisions
|
|
@@ -2587,7 +2787,9 @@ def primitive_grid_add(
|
|
|
2587
2787
|
...
|
|
2588
2788
|
|
|
2589
2789
|
def primitive_ico_sphere_add(
|
|
2590
|
-
override_context: typing.Optional[
|
|
2790
|
+
override_context: typing.Optional[
|
|
2791
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2792
|
+
] = None,
|
|
2591
2793
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2592
2794
|
undo: typing.Optional[bool] = None,
|
|
2593
2795
|
subdivisions: typing.Optional[typing.Any] = 2,
|
|
@@ -2601,7 +2803,7 @@ def primitive_ico_sphere_add(
|
|
|
2601
2803
|
):
|
|
2602
2804
|
"""Construct a spherical mesh that consists of equally sized triangles
|
|
2603
2805
|
|
|
2604
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2806
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2605
2807
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2606
2808
|
:type undo: typing.Optional[bool]
|
|
2607
2809
|
:param subdivisions: Subdivisions
|
|
@@ -2634,7 +2836,9 @@ def primitive_ico_sphere_add(
|
|
|
2634
2836
|
...
|
|
2635
2837
|
|
|
2636
2838
|
def primitive_monkey_add(
|
|
2637
|
-
override_context: typing.Optional[
|
|
2839
|
+
override_context: typing.Optional[
|
|
2840
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2841
|
+
] = None,
|
|
2638
2842
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2639
2843
|
undo: typing.Optional[bool] = None,
|
|
2640
2844
|
size: typing.Optional[typing.Any] = 2.0,
|
|
@@ -2647,7 +2851,7 @@ def primitive_monkey_add(
|
|
|
2647
2851
|
):
|
|
2648
2852
|
"""Construct a Suzanne mesh
|
|
2649
2853
|
|
|
2650
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2854
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2651
2855
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2652
2856
|
:type undo: typing.Optional[bool]
|
|
2653
2857
|
:param size: Size
|
|
@@ -2678,7 +2882,9 @@ def primitive_monkey_add(
|
|
|
2678
2882
|
...
|
|
2679
2883
|
|
|
2680
2884
|
def primitive_plane_add(
|
|
2681
|
-
override_context: typing.Optional[
|
|
2885
|
+
override_context: typing.Optional[
|
|
2886
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2887
|
+
] = None,
|
|
2682
2888
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2683
2889
|
undo: typing.Optional[bool] = None,
|
|
2684
2890
|
size: typing.Optional[typing.Any] = 2.0,
|
|
@@ -2691,7 +2897,7 @@ def primitive_plane_add(
|
|
|
2691
2897
|
):
|
|
2692
2898
|
"""Construct a filled planar mesh with 4 vertices
|
|
2693
2899
|
|
|
2694
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2900
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2695
2901
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2696
2902
|
:type undo: typing.Optional[bool]
|
|
2697
2903
|
:param size: Size
|
|
@@ -2722,7 +2928,9 @@ def primitive_plane_add(
|
|
|
2722
2928
|
...
|
|
2723
2929
|
|
|
2724
2930
|
def primitive_torus_add(
|
|
2725
|
-
override_context: typing.Optional[
|
|
2931
|
+
override_context: typing.Optional[
|
|
2932
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2933
|
+
] = None,
|
|
2726
2934
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2727
2935
|
undo: typing.Optional[bool] = None,
|
|
2728
2936
|
align: typing.Optional[typing.Any] = "WORLD",
|
|
@@ -2739,7 +2947,7 @@ def primitive_torus_add(
|
|
|
2739
2947
|
):
|
|
2740
2948
|
"""Construct a torus mesh
|
|
2741
2949
|
|
|
2742
|
-
:type override_context: typing.Optional[typing.Union[
|
|
2950
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2743
2951
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2744
2952
|
:type undo: typing.Optional[bool]
|
|
2745
2953
|
:param align: Align
|
|
@@ -2784,7 +2992,9 @@ def primitive_torus_add(
|
|
|
2784
2992
|
...
|
|
2785
2993
|
|
|
2786
2994
|
def primitive_uv_sphere_add(
|
|
2787
|
-
override_context: typing.Optional[
|
|
2995
|
+
override_context: typing.Optional[
|
|
2996
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
2997
|
+
] = None,
|
|
2788
2998
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2789
2999
|
undo: typing.Optional[bool] = None,
|
|
2790
3000
|
segments: typing.Optional[typing.Any] = 32,
|
|
@@ -2799,7 +3009,7 @@ def primitive_uv_sphere_add(
|
|
|
2799
3009
|
):
|
|
2800
3010
|
"""Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
|
|
2801
3011
|
|
|
2802
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3012
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2803
3013
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2804
3014
|
:type undo: typing.Optional[bool]
|
|
2805
3015
|
:param segments: Segments
|
|
@@ -2834,7 +3044,9 @@ def primitive_uv_sphere_add(
|
|
|
2834
3044
|
...
|
|
2835
3045
|
|
|
2836
3046
|
def quads_convert_to_tris(
|
|
2837
|
-
override_context: typing.Optional[
|
|
3047
|
+
override_context: typing.Optional[
|
|
3048
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3049
|
+
] = None,
|
|
2838
3050
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2839
3051
|
undo: typing.Optional[bool] = None,
|
|
2840
3052
|
quad_method: typing.Optional[typing.Union[str, int]] = "BEAUTY",
|
|
@@ -2842,7 +3054,7 @@ def quads_convert_to_tris(
|
|
|
2842
3054
|
):
|
|
2843
3055
|
"""Triangulate selected faces
|
|
2844
3056
|
|
|
2845
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3057
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2846
3058
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2847
3059
|
:type undo: typing.Optional[bool]
|
|
2848
3060
|
:param quad_method: Quad Method, Method for splitting the quads into triangles
|
|
@@ -2854,13 +3066,15 @@ def quads_convert_to_tris(
|
|
|
2854
3066
|
...
|
|
2855
3067
|
|
|
2856
3068
|
def region_to_loop(
|
|
2857
|
-
override_context: typing.Optional[
|
|
3069
|
+
override_context: typing.Optional[
|
|
3070
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3071
|
+
] = None,
|
|
2858
3072
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2859
3073
|
undo: typing.Optional[bool] = None,
|
|
2860
3074
|
):
|
|
2861
3075
|
"""Select boundary edges around the selected faces
|
|
2862
3076
|
|
|
2863
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3077
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2864
3078
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2865
3079
|
:type undo: typing.Optional[bool]
|
|
2866
3080
|
"""
|
|
@@ -2868,7 +3082,9 @@ def region_to_loop(
|
|
|
2868
3082
|
...
|
|
2869
3083
|
|
|
2870
3084
|
def remove_doubles(
|
|
2871
|
-
override_context: typing.Optional[
|
|
3085
|
+
override_context: typing.Optional[
|
|
3086
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3087
|
+
] = None,
|
|
2872
3088
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2873
3089
|
undo: typing.Optional[bool] = None,
|
|
2874
3090
|
threshold: typing.Optional[typing.Any] = 0.0001,
|
|
@@ -2879,7 +3095,7 @@ def remove_doubles(
|
|
|
2879
3095
|
):
|
|
2880
3096
|
"""Merge vertices based on their proximity
|
|
2881
3097
|
|
|
2882
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3098
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2883
3099
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2884
3100
|
:type undo: typing.Optional[bool]
|
|
2885
3101
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
@@ -2893,14 +3109,16 @@ def remove_doubles(
|
|
|
2893
3109
|
...
|
|
2894
3110
|
|
|
2895
3111
|
def reveal(
|
|
2896
|
-
override_context: typing.Optional[
|
|
3112
|
+
override_context: typing.Optional[
|
|
3113
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3114
|
+
] = None,
|
|
2897
3115
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2898
3116
|
undo: typing.Optional[bool] = None,
|
|
2899
3117
|
select: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
2900
3118
|
):
|
|
2901
3119
|
"""Reveal all hidden vertices, edges and faces
|
|
2902
3120
|
|
|
2903
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3121
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2904
3122
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2905
3123
|
:type undo: typing.Optional[bool]
|
|
2906
3124
|
:param select: Select
|
|
@@ -2910,7 +3128,9 @@ def reveal(
|
|
|
2910
3128
|
...
|
|
2911
3129
|
|
|
2912
3130
|
def rip(
|
|
2913
|
-
override_context: typing.Optional[
|
|
3131
|
+
override_context: typing.Optional[
|
|
3132
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3133
|
+
] = None,
|
|
2914
3134
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2915
3135
|
undo: typing.Optional[bool] = None,
|
|
2916
3136
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2925,7 +3145,7 @@ def rip(
|
|
|
2925
3145
|
):
|
|
2926
3146
|
"""Disconnect vertex or edges from connected geometry
|
|
2927
3147
|
|
|
2928
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3148
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2929
3149
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2930
3150
|
:type undo: typing.Optional[bool]
|
|
2931
3151
|
:param mirror: Mirror Editing
|
|
@@ -2951,7 +3171,9 @@ def rip(
|
|
|
2951
3171
|
...
|
|
2952
3172
|
|
|
2953
3173
|
def rip_edge(
|
|
2954
|
-
override_context: typing.Optional[
|
|
3174
|
+
override_context: typing.Optional[
|
|
3175
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3176
|
+
] = None,
|
|
2955
3177
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2956
3178
|
undo: typing.Optional[bool] = None,
|
|
2957
3179
|
mirror: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -2965,7 +3187,7 @@ def rip_edge(
|
|
|
2965
3187
|
):
|
|
2966
3188
|
"""Extend vertices along the edge closest to the cursor
|
|
2967
3189
|
|
|
2968
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3190
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
2969
3191
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
2970
3192
|
:type undo: typing.Optional[bool]
|
|
2971
3193
|
:param mirror: Mirror Editing
|
|
@@ -2989,7 +3211,9 @@ def rip_edge(
|
|
|
2989
3211
|
...
|
|
2990
3212
|
|
|
2991
3213
|
def rip_edge_move(
|
|
2992
|
-
override_context: typing.Optional[
|
|
3214
|
+
override_context: typing.Optional[
|
|
3215
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3216
|
+
] = None,
|
|
2993
3217
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
2994
3218
|
undo: typing.Optional[bool] = None,
|
|
2995
3219
|
MESH_OT_rip_edge: typing.Optional[rip_edge] = None,
|
|
@@ -2997,7 +3221,7 @@ def rip_edge_move(
|
|
|
2997
3221
|
):
|
|
2998
3222
|
"""Extend vertices and move the result
|
|
2999
3223
|
|
|
3000
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3224
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3001
3225
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3002
3226
|
:type undo: typing.Optional[bool]
|
|
3003
3227
|
:param MESH_OT_rip_edge: Extend Vertices, Extend vertices along the edge closest to the cursor
|
|
@@ -3009,7 +3233,9 @@ def rip_edge_move(
|
|
|
3009
3233
|
...
|
|
3010
3234
|
|
|
3011
3235
|
def rip_move(
|
|
3012
|
-
override_context: typing.Optional[
|
|
3236
|
+
override_context: typing.Optional[
|
|
3237
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3238
|
+
] = None,
|
|
3013
3239
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3014
3240
|
undo: typing.Optional[bool] = None,
|
|
3015
3241
|
MESH_OT_rip: typing.Optional[rip] = None,
|
|
@@ -3017,7 +3243,7 @@ def rip_move(
|
|
|
3017
3243
|
):
|
|
3018
3244
|
"""Rip polygons and move the result
|
|
3019
3245
|
|
|
3020
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3246
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3021
3247
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3022
3248
|
:type undo: typing.Optional[bool]
|
|
3023
3249
|
:param MESH_OT_rip: Rip, Disconnect vertex or edges from connected geometry
|
|
@@ -3029,7 +3255,9 @@ def rip_move(
|
|
|
3029
3255
|
...
|
|
3030
3256
|
|
|
3031
3257
|
def screw(
|
|
3032
|
-
override_context: typing.Optional[
|
|
3258
|
+
override_context: typing.Optional[
|
|
3259
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3260
|
+
] = None,
|
|
3033
3261
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3034
3262
|
undo: typing.Optional[bool] = None,
|
|
3035
3263
|
steps: typing.Optional[typing.Any] = 9,
|
|
@@ -3039,7 +3267,7 @@ def screw(
|
|
|
3039
3267
|
):
|
|
3040
3268
|
"""Extrude selected vertices in screw-shaped rotation around the cursor in indicated viewport
|
|
3041
3269
|
|
|
3042
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3270
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3043
3271
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3044
3272
|
:type undo: typing.Optional[bool]
|
|
3045
3273
|
:param steps: Steps, Steps
|
|
@@ -3055,14 +3283,16 @@ def screw(
|
|
|
3055
3283
|
...
|
|
3056
3284
|
|
|
3057
3285
|
def select_all(
|
|
3058
|
-
override_context: typing.Optional[
|
|
3286
|
+
override_context: typing.Optional[
|
|
3287
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3288
|
+
] = None,
|
|
3059
3289
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3060
3290
|
undo: typing.Optional[bool] = None,
|
|
3061
3291
|
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
3062
3292
|
):
|
|
3063
3293
|
"""(De)select all vertices, edges or faces
|
|
3064
3294
|
|
|
3065
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3295
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3066
3296
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3067
3297
|
:type undo: typing.Optional[bool]
|
|
3068
3298
|
:param action: Action, Selection action to execute
|
|
@@ -3084,7 +3314,9 @@ def select_all(
|
|
|
3084
3314
|
...
|
|
3085
3315
|
|
|
3086
3316
|
def select_axis(
|
|
3087
|
-
override_context: typing.Optional[
|
|
3317
|
+
override_context: typing.Optional[
|
|
3318
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3319
|
+
] = None,
|
|
3088
3320
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3089
3321
|
undo: typing.Optional[bool] = None,
|
|
3090
3322
|
orientation: typing.Optional[typing.Union[str, int]] = "LOCAL",
|
|
@@ -3094,7 +3326,7 @@ def select_axis(
|
|
|
3094
3326
|
):
|
|
3095
3327
|
"""Select all data in the mesh on a single axis
|
|
3096
3328
|
|
|
3097
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3329
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3098
3330
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3099
3331
|
:type undo: typing.Optional[bool]
|
|
3100
3332
|
:param orientation: Axis Mode, Axis orientation
|
|
@@ -3110,13 +3342,15 @@ def select_axis(
|
|
|
3110
3342
|
...
|
|
3111
3343
|
|
|
3112
3344
|
def select_by_attribute(
|
|
3113
|
-
override_context: typing.Optional[
|
|
3345
|
+
override_context: typing.Optional[
|
|
3346
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3347
|
+
] = None,
|
|
3114
3348
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3115
3349
|
undo: typing.Optional[bool] = None,
|
|
3116
3350
|
):
|
|
3117
3351
|
"""Select elements based on the active boolean attribute
|
|
3118
3352
|
|
|
3119
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3353
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3120
3354
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3121
3355
|
:type undo: typing.Optional[bool]
|
|
3122
3356
|
"""
|
|
@@ -3124,7 +3358,9 @@ def select_by_attribute(
|
|
|
3124
3358
|
...
|
|
3125
3359
|
|
|
3126
3360
|
def select_face_by_sides(
|
|
3127
|
-
override_context: typing.Optional[
|
|
3361
|
+
override_context: typing.Optional[
|
|
3362
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3363
|
+
] = None,
|
|
3128
3364
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3129
3365
|
undo: typing.Optional[bool] = None,
|
|
3130
3366
|
number: typing.Optional[typing.Any] = 4,
|
|
@@ -3133,7 +3369,7 @@ def select_face_by_sides(
|
|
|
3133
3369
|
):
|
|
3134
3370
|
"""Select vertices or faces by the number of face sides
|
|
3135
3371
|
|
|
3136
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3372
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3137
3373
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3138
3374
|
:type undo: typing.Optional[bool]
|
|
3139
3375
|
:param number: Number of Vertices
|
|
@@ -3147,13 +3383,15 @@ def select_face_by_sides(
|
|
|
3147
3383
|
...
|
|
3148
3384
|
|
|
3149
3385
|
def select_interior_faces(
|
|
3150
|
-
override_context: typing.Optional[
|
|
3386
|
+
override_context: typing.Optional[
|
|
3387
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3388
|
+
] = None,
|
|
3151
3389
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3152
3390
|
undo: typing.Optional[bool] = None,
|
|
3153
3391
|
):
|
|
3154
3392
|
"""Select faces where all edges have more than 2 face users
|
|
3155
3393
|
|
|
3156
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3394
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3157
3395
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3158
3396
|
:type undo: typing.Optional[bool]
|
|
3159
3397
|
"""
|
|
@@ -3161,14 +3399,16 @@ def select_interior_faces(
|
|
|
3161
3399
|
...
|
|
3162
3400
|
|
|
3163
3401
|
def select_less(
|
|
3164
|
-
override_context: typing.Optional[
|
|
3402
|
+
override_context: typing.Optional[
|
|
3403
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3404
|
+
] = None,
|
|
3165
3405
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3166
3406
|
undo: typing.Optional[bool] = None,
|
|
3167
3407
|
use_face_step: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
3168
3408
|
):
|
|
3169
3409
|
"""Deselect vertices, edges or faces at the boundary of each selection region
|
|
3170
3410
|
|
|
3171
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3411
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3172
3412
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3173
3413
|
:type undo: typing.Optional[bool]
|
|
3174
3414
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3178,14 +3418,16 @@ def select_less(
|
|
|
3178
3418
|
...
|
|
3179
3419
|
|
|
3180
3420
|
def select_linked(
|
|
3181
|
-
override_context: typing.Optional[
|
|
3421
|
+
override_context: typing.Optional[
|
|
3422
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3423
|
+
] = None,
|
|
3182
3424
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3183
3425
|
undo: typing.Optional[bool] = None,
|
|
3184
3426
|
delimit: typing.Optional[typing.Any] = {'"SEAM"'},
|
|
3185
3427
|
):
|
|
3186
3428
|
"""Select all vertices connected to the current selection
|
|
3187
3429
|
|
|
3188
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3430
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3189
3431
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3190
3432
|
:type undo: typing.Optional[bool]
|
|
3191
3433
|
:param delimit: Delimit, Delimit selected region
|
|
@@ -3195,7 +3437,9 @@ def select_linked(
|
|
|
3195
3437
|
...
|
|
3196
3438
|
|
|
3197
3439
|
def select_linked_pick(
|
|
3198
|
-
override_context: typing.Optional[
|
|
3440
|
+
override_context: typing.Optional[
|
|
3441
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3442
|
+
] = None,
|
|
3199
3443
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3200
3444
|
undo: typing.Optional[bool] = None,
|
|
3201
3445
|
deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -3205,7 +3449,7 @@ def select_linked_pick(
|
|
|
3205
3449
|
):
|
|
3206
3450
|
"""(De)select all vertices linked to the edge under the mouse cursor
|
|
3207
3451
|
|
|
3208
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3452
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3209
3453
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3210
3454
|
:type undo: typing.Optional[bool]
|
|
3211
3455
|
:param deselect: Deselect
|
|
@@ -3219,14 +3463,16 @@ def select_linked_pick(
|
|
|
3219
3463
|
...
|
|
3220
3464
|
|
|
3221
3465
|
def select_loose(
|
|
3222
|
-
override_context: typing.Optional[
|
|
3466
|
+
override_context: typing.Optional[
|
|
3467
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3468
|
+
] = None,
|
|
3223
3469
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3224
3470
|
undo: typing.Optional[bool] = None,
|
|
3225
3471
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3226
3472
|
):
|
|
3227
3473
|
"""Select loose geometry based on the selection mode
|
|
3228
3474
|
|
|
3229
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3475
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3230
3476
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3231
3477
|
:type undo: typing.Optional[bool]
|
|
3232
3478
|
:param extend: Extend, Extend the selection
|
|
@@ -3236,7 +3482,9 @@ def select_loose(
|
|
|
3236
3482
|
...
|
|
3237
3483
|
|
|
3238
3484
|
def select_mirror(
|
|
3239
|
-
override_context: typing.Optional[
|
|
3485
|
+
override_context: typing.Optional[
|
|
3486
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3487
|
+
] = None,
|
|
3240
3488
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3241
3489
|
undo: typing.Optional[bool] = None,
|
|
3242
3490
|
axis: typing.Optional[typing.Any] = {'"X"'},
|
|
@@ -3244,7 +3492,7 @@ def select_mirror(
|
|
|
3244
3492
|
):
|
|
3245
3493
|
"""Select mesh items at mirrored locations
|
|
3246
3494
|
|
|
3247
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3495
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3248
3496
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3249
3497
|
:type undo: typing.Optional[bool]
|
|
3250
3498
|
:param axis: Axis
|
|
@@ -3256,7 +3504,9 @@ def select_mirror(
|
|
|
3256
3504
|
...
|
|
3257
3505
|
|
|
3258
3506
|
def select_mode(
|
|
3259
|
-
override_context: typing.Optional[
|
|
3507
|
+
override_context: typing.Optional[
|
|
3508
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3509
|
+
] = None,
|
|
3260
3510
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3261
3511
|
undo: typing.Optional[bool] = None,
|
|
3262
3512
|
use_extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -3266,7 +3516,7 @@ def select_mode(
|
|
|
3266
3516
|
):
|
|
3267
3517
|
"""Change selection mode
|
|
3268
3518
|
|
|
3269
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3519
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3270
3520
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3271
3521
|
:type undo: typing.Optional[bool]
|
|
3272
3522
|
:param use_extend: Extend
|
|
@@ -3291,14 +3541,16 @@ def select_mode(
|
|
|
3291
3541
|
...
|
|
3292
3542
|
|
|
3293
3543
|
def select_more(
|
|
3294
|
-
override_context: typing.Optional[
|
|
3544
|
+
override_context: typing.Optional[
|
|
3545
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3546
|
+
] = None,
|
|
3295
3547
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3296
3548
|
undo: typing.Optional[bool] = None,
|
|
3297
3549
|
use_face_step: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
3298
3550
|
):
|
|
3299
3551
|
"""Select more vertices, edges or faces connected to initial selection
|
|
3300
3552
|
|
|
3301
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3553
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3302
3554
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3303
3555
|
:type undo: typing.Optional[bool]
|
|
3304
3556
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
@@ -3308,13 +3560,15 @@ def select_more(
|
|
|
3308
3560
|
...
|
|
3309
3561
|
|
|
3310
3562
|
def select_next_item(
|
|
3311
|
-
override_context: typing.Optional[
|
|
3563
|
+
override_context: typing.Optional[
|
|
3564
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3565
|
+
] = None,
|
|
3312
3566
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3313
3567
|
undo: typing.Optional[bool] = None,
|
|
3314
3568
|
):
|
|
3315
3569
|
"""Select the next element (using selection order)
|
|
3316
3570
|
|
|
3317
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3571
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3318
3572
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3319
3573
|
:type undo: typing.Optional[bool]
|
|
3320
3574
|
"""
|
|
@@ -3322,7 +3576,9 @@ def select_next_item(
|
|
|
3322
3576
|
...
|
|
3323
3577
|
|
|
3324
3578
|
def select_non_manifold(
|
|
3325
|
-
override_context: typing.Optional[
|
|
3579
|
+
override_context: typing.Optional[
|
|
3580
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3581
|
+
] = None,
|
|
3326
3582
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3327
3583
|
undo: typing.Optional[bool] = None,
|
|
3328
3584
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -3334,7 +3590,7 @@ def select_non_manifold(
|
|
|
3334
3590
|
):
|
|
3335
3591
|
"""Select all non-manifold vertices or edges
|
|
3336
3592
|
|
|
3337
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3593
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3338
3594
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3339
3595
|
:type undo: typing.Optional[bool]
|
|
3340
3596
|
:param extend: Extend, Extend the selection
|
|
@@ -3354,7 +3610,9 @@ def select_non_manifold(
|
|
|
3354
3610
|
...
|
|
3355
3611
|
|
|
3356
3612
|
def select_nth(
|
|
3357
|
-
override_context: typing.Optional[
|
|
3613
|
+
override_context: typing.Optional[
|
|
3614
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3615
|
+
] = None,
|
|
3358
3616
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3359
3617
|
undo: typing.Optional[bool] = None,
|
|
3360
3618
|
skip: typing.Optional[typing.Any] = 1,
|
|
@@ -3363,7 +3621,7 @@ def select_nth(
|
|
|
3363
3621
|
):
|
|
3364
3622
|
"""Deselect every Nth element starting from the active vertex, edge or face
|
|
3365
3623
|
|
|
3366
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3624
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3367
3625
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3368
3626
|
:type undo: typing.Optional[bool]
|
|
3369
3627
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
@@ -3377,13 +3635,15 @@ def select_nth(
|
|
|
3377
3635
|
...
|
|
3378
3636
|
|
|
3379
3637
|
def select_prev_item(
|
|
3380
|
-
override_context: typing.Optional[
|
|
3638
|
+
override_context: typing.Optional[
|
|
3639
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3640
|
+
] = None,
|
|
3381
3641
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3382
3642
|
undo: typing.Optional[bool] = None,
|
|
3383
3643
|
):
|
|
3384
3644
|
"""Select the previous element (using selection order)
|
|
3385
3645
|
|
|
3386
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3646
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3387
3647
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3388
3648
|
:type undo: typing.Optional[bool]
|
|
3389
3649
|
"""
|
|
@@ -3391,7 +3651,9 @@ def select_prev_item(
|
|
|
3391
3651
|
...
|
|
3392
3652
|
|
|
3393
3653
|
def select_random(
|
|
3394
|
-
override_context: typing.Optional[
|
|
3654
|
+
override_context: typing.Optional[
|
|
3655
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3656
|
+
] = None,
|
|
3395
3657
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3396
3658
|
undo: typing.Optional[bool] = None,
|
|
3397
3659
|
ratio: typing.Optional[typing.Any] = 0.5,
|
|
@@ -3400,7 +3662,7 @@ def select_random(
|
|
|
3400
3662
|
):
|
|
3401
3663
|
"""Randomly select vertices
|
|
3402
3664
|
|
|
3403
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3665
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3404
3666
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3405
3667
|
:type undo: typing.Optional[bool]
|
|
3406
3668
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -3420,7 +3682,9 @@ def select_random(
|
|
|
3420
3682
|
...
|
|
3421
3683
|
|
|
3422
3684
|
def select_similar(
|
|
3423
|
-
override_context: typing.Optional[
|
|
3685
|
+
override_context: typing.Optional[
|
|
3686
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3687
|
+
] = None,
|
|
3424
3688
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3425
3689
|
undo: typing.Optional[bool] = None,
|
|
3426
3690
|
type: typing.Optional[typing.Any] = "VERT_NORMAL",
|
|
@@ -3429,7 +3693,7 @@ def select_similar(
|
|
|
3429
3693
|
):
|
|
3430
3694
|
"""Select similar vertices, edges or faces by property types
|
|
3431
3695
|
|
|
3432
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3696
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3433
3697
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3434
3698
|
:type undo: typing.Optional[bool]
|
|
3435
3699
|
:param type: Type
|
|
@@ -3443,13 +3707,15 @@ def select_similar(
|
|
|
3443
3707
|
...
|
|
3444
3708
|
|
|
3445
3709
|
def select_similar_region(
|
|
3446
|
-
override_context: typing.Optional[
|
|
3710
|
+
override_context: typing.Optional[
|
|
3711
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3712
|
+
] = None,
|
|
3447
3713
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3448
3714
|
undo: typing.Optional[bool] = None,
|
|
3449
3715
|
):
|
|
3450
3716
|
"""Select similar face regions to the current selection
|
|
3451
3717
|
|
|
3452
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3718
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3453
3719
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3454
3720
|
:type undo: typing.Optional[bool]
|
|
3455
3721
|
"""
|
|
@@ -3457,14 +3723,16 @@ def select_similar_region(
|
|
|
3457
3723
|
...
|
|
3458
3724
|
|
|
3459
3725
|
def select_ungrouped(
|
|
3460
|
-
override_context: typing.Optional[
|
|
3726
|
+
override_context: typing.Optional[
|
|
3727
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3728
|
+
] = None,
|
|
3461
3729
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3462
3730
|
undo: typing.Optional[bool] = None,
|
|
3463
3731
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3464
3732
|
):
|
|
3465
3733
|
"""Select vertices without a group
|
|
3466
3734
|
|
|
3467
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3735
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3468
3736
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3469
3737
|
:type undo: typing.Optional[bool]
|
|
3470
3738
|
:param extend: Extend, Extend the selection
|
|
@@ -3474,14 +3742,16 @@ def select_ungrouped(
|
|
|
3474
3742
|
...
|
|
3475
3743
|
|
|
3476
3744
|
def separate(
|
|
3477
|
-
override_context: typing.Optional[
|
|
3745
|
+
override_context: typing.Optional[
|
|
3746
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3747
|
+
] = None,
|
|
3478
3748
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3479
3749
|
undo: typing.Optional[bool] = None,
|
|
3480
3750
|
type: typing.Optional[typing.Any] = "SELECTED",
|
|
3481
3751
|
):
|
|
3482
3752
|
"""Separate selected geometry into a new mesh
|
|
3483
3753
|
|
|
3484
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3754
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3485
3755
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3486
3756
|
:type undo: typing.Optional[bool]
|
|
3487
3757
|
:param type: Type
|
|
@@ -3491,14 +3761,16 @@ def separate(
|
|
|
3491
3761
|
...
|
|
3492
3762
|
|
|
3493
3763
|
def set_normals_from_faces(
|
|
3494
|
-
override_context: typing.Optional[
|
|
3764
|
+
override_context: typing.Optional[
|
|
3765
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3766
|
+
] = None,
|
|
3495
3767
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3496
3768
|
undo: typing.Optional[bool] = None,
|
|
3497
3769
|
keep_sharp: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3498
3770
|
):
|
|
3499
3771
|
"""Set the custom normals from the selected faces ones
|
|
3500
3772
|
|
|
3501
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3773
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3502
3774
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3503
3775
|
:type undo: typing.Optional[bool]
|
|
3504
3776
|
:param keep_sharp: Keep Sharp Edges, Do not set sharp edges to face
|
|
@@ -3508,7 +3780,9 @@ def set_normals_from_faces(
|
|
|
3508
3780
|
...
|
|
3509
3781
|
|
|
3510
3782
|
def set_sharpness_by_angle(
|
|
3511
|
-
override_context: typing.Optional[
|
|
3783
|
+
override_context: typing.Optional[
|
|
3784
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3785
|
+
] = None,
|
|
3512
3786
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3513
3787
|
undo: typing.Optional[bool] = None,
|
|
3514
3788
|
angle: typing.Optional[typing.Any] = 0.523599,
|
|
@@ -3516,7 +3790,7 @@ def set_sharpness_by_angle(
|
|
|
3516
3790
|
):
|
|
3517
3791
|
"""Set edge sharpness based on the angle between neighboring faces
|
|
3518
3792
|
|
|
3519
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3793
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3520
3794
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3521
3795
|
:type undo: typing.Optional[bool]
|
|
3522
3796
|
:param angle: Angle
|
|
@@ -3528,13 +3802,15 @@ def set_sharpness_by_angle(
|
|
|
3528
3802
|
...
|
|
3529
3803
|
|
|
3530
3804
|
def shape_propagate_to_all(
|
|
3531
|
-
override_context: typing.Optional[
|
|
3805
|
+
override_context: typing.Optional[
|
|
3806
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3807
|
+
] = None,
|
|
3532
3808
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3533
3809
|
undo: typing.Optional[bool] = None,
|
|
3534
3810
|
):
|
|
3535
3811
|
"""Apply selected vertex locations to all other shape keys
|
|
3536
3812
|
|
|
3537
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3813
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3538
3814
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3539
3815
|
:type undo: typing.Optional[bool]
|
|
3540
3816
|
"""
|
|
@@ -3542,7 +3818,9 @@ def shape_propagate_to_all(
|
|
|
3542
3818
|
...
|
|
3543
3819
|
|
|
3544
3820
|
def shortest_path_pick(
|
|
3545
|
-
override_context: typing.Optional[
|
|
3821
|
+
override_context: typing.Optional[
|
|
3822
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3823
|
+
] = None,
|
|
3546
3824
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3547
3825
|
undo: typing.Optional[bool] = None,
|
|
3548
3826
|
edge_mode: typing.Optional[typing.Any] = "SELECT",
|
|
@@ -3556,7 +3834,7 @@ def shortest_path_pick(
|
|
|
3556
3834
|
):
|
|
3557
3835
|
"""Select shortest path between two selections
|
|
3558
3836
|
|
|
3559
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3837
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3560
3838
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3561
3839
|
:type undo: typing.Optional[bool]
|
|
3562
3840
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3579,7 +3857,9 @@ def shortest_path_pick(
|
|
|
3579
3857
|
...
|
|
3580
3858
|
|
|
3581
3859
|
def shortest_path_select(
|
|
3582
|
-
override_context: typing.Optional[
|
|
3860
|
+
override_context: typing.Optional[
|
|
3861
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3862
|
+
] = None,
|
|
3583
3863
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3584
3864
|
undo: typing.Optional[bool] = None,
|
|
3585
3865
|
edge_mode: typing.Optional[typing.Any] = "SELECT",
|
|
@@ -3592,7 +3872,7 @@ def shortest_path_select(
|
|
|
3592
3872
|
):
|
|
3593
3873
|
"""Selected shortest path between two vertices/edges/faces
|
|
3594
3874
|
|
|
3595
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3875
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3596
3876
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3597
3877
|
:type undo: typing.Optional[bool]
|
|
3598
3878
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
@@ -3614,14 +3894,16 @@ def shortest_path_select(
|
|
|
3614
3894
|
...
|
|
3615
3895
|
|
|
3616
3896
|
def smooth_normals(
|
|
3617
|
-
override_context: typing.Optional[
|
|
3897
|
+
override_context: typing.Optional[
|
|
3898
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3899
|
+
] = None,
|
|
3618
3900
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3619
3901
|
undo: typing.Optional[bool] = None,
|
|
3620
3902
|
factor: typing.Optional[typing.Any] = 0.5,
|
|
3621
3903
|
):
|
|
3622
3904
|
"""Smooth custom normals based on adjacent vertex normals
|
|
3623
3905
|
|
|
3624
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3906
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3625
3907
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3626
3908
|
:type undo: typing.Optional[bool]
|
|
3627
3909
|
:param factor: Factor, Specifies weight of smooth vs original normal
|
|
@@ -3631,14 +3913,16 @@ def smooth_normals(
|
|
|
3631
3913
|
...
|
|
3632
3914
|
|
|
3633
3915
|
def solidify(
|
|
3634
|
-
override_context: typing.Optional[
|
|
3916
|
+
override_context: typing.Optional[
|
|
3917
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3918
|
+
] = None,
|
|
3635
3919
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3636
3920
|
undo: typing.Optional[bool] = None,
|
|
3637
3921
|
thickness: typing.Optional[typing.Any] = 0.01,
|
|
3638
3922
|
):
|
|
3639
3923
|
"""Create a solid skin by extruding, compensating for sharp angles
|
|
3640
3924
|
|
|
3641
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3925
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3642
3926
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3643
3927
|
:type undo: typing.Optional[bool]
|
|
3644
3928
|
:param thickness: Thickness
|
|
@@ -3648,7 +3932,9 @@ def solidify(
|
|
|
3648
3932
|
...
|
|
3649
3933
|
|
|
3650
3934
|
def sort_elements(
|
|
3651
|
-
override_context: typing.Optional[
|
|
3935
|
+
override_context: typing.Optional[
|
|
3936
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3937
|
+
] = None,
|
|
3652
3938
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3653
3939
|
undo: typing.Optional[bool] = None,
|
|
3654
3940
|
type: typing.Optional[typing.Any] = "VIEW_ZAXIS",
|
|
@@ -3658,7 +3944,7 @@ def sort_elements(
|
|
|
3658
3944
|
):
|
|
3659
3945
|
"""The order of selected vertices/edges/faces is modified, based on a given method
|
|
3660
3946
|
|
|
3661
|
-
:type override_context: typing.Optional[typing.Union[
|
|
3947
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3662
3948
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3663
3949
|
:type undo: typing.Optional[bool]
|
|
3664
3950
|
:param type: Type, Type of reordering operation to apply
|
|
@@ -3696,7 +3982,9 @@ def sort_elements(
|
|
|
3696
3982
|
...
|
|
3697
3983
|
|
|
3698
3984
|
def spin(
|
|
3699
|
-
override_context: typing.Optional[
|
|
3985
|
+
override_context: typing.Optional[
|
|
3986
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
3987
|
+
] = None,
|
|
3700
3988
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3701
3989
|
undo: typing.Optional[bool] = None,
|
|
3702
3990
|
steps: typing.Optional[typing.Any] = 12,
|
|
@@ -3709,7 +3997,7 @@ def spin(
|
|
|
3709
3997
|
):
|
|
3710
3998
|
"""Extrude selected vertices in a circle around the cursor in indicated viewport
|
|
3711
3999
|
|
|
3712
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4000
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3713
4001
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3714
4002
|
:type undo: typing.Optional[bool]
|
|
3715
4003
|
:param steps: Steps, Steps
|
|
@@ -3731,13 +4019,15 @@ def spin(
|
|
|
3731
4019
|
...
|
|
3732
4020
|
|
|
3733
4021
|
def split(
|
|
3734
|
-
override_context: typing.Optional[
|
|
4022
|
+
override_context: typing.Optional[
|
|
4023
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4024
|
+
] = None,
|
|
3735
4025
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3736
4026
|
undo: typing.Optional[bool] = None,
|
|
3737
4027
|
):
|
|
3738
4028
|
"""Split off selected geometry from connected unselected geometry
|
|
3739
4029
|
|
|
3740
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4030
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3741
4031
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3742
4032
|
:type undo: typing.Optional[bool]
|
|
3743
4033
|
"""
|
|
@@ -3745,13 +4035,15 @@ def split(
|
|
|
3745
4035
|
...
|
|
3746
4036
|
|
|
3747
4037
|
def split_normals(
|
|
3748
|
-
override_context: typing.Optional[
|
|
4038
|
+
override_context: typing.Optional[
|
|
4039
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4040
|
+
] = None,
|
|
3749
4041
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3750
4042
|
undo: typing.Optional[bool] = None,
|
|
3751
4043
|
):
|
|
3752
4044
|
"""Split custom normals of selected vertices
|
|
3753
4045
|
|
|
3754
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4046
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3755
4047
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3756
4048
|
:type undo: typing.Optional[bool]
|
|
3757
4049
|
"""
|
|
@@ -3759,7 +4051,9 @@ def split_normals(
|
|
|
3759
4051
|
...
|
|
3760
4052
|
|
|
3761
4053
|
def subdivide(
|
|
3762
|
-
override_context: typing.Optional[
|
|
4054
|
+
override_context: typing.Optional[
|
|
4055
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4056
|
+
] = None,
|
|
3763
4057
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3764
4058
|
undo: typing.Optional[bool] = None,
|
|
3765
4059
|
number_cuts: typing.Optional[typing.Any] = 1,
|
|
@@ -3772,7 +4066,7 @@ def subdivide(
|
|
|
3772
4066
|
):
|
|
3773
4067
|
"""Subdivide selected edges
|
|
3774
4068
|
|
|
3775
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4069
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3776
4070
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3777
4071
|
:type undo: typing.Optional[bool]
|
|
3778
4072
|
:param number_cuts: Number of Cuts
|
|
@@ -3794,7 +4088,9 @@ def subdivide(
|
|
|
3794
4088
|
...
|
|
3795
4089
|
|
|
3796
4090
|
def subdivide_edgering(
|
|
3797
|
-
override_context: typing.Optional[
|
|
4091
|
+
override_context: typing.Optional[
|
|
4092
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4093
|
+
] = None,
|
|
3798
4094
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3799
4095
|
undo: typing.Optional[bool] = None,
|
|
3800
4096
|
number_cuts: typing.Optional[typing.Any] = 10,
|
|
@@ -3805,7 +4101,7 @@ def subdivide_edgering(
|
|
|
3805
4101
|
):
|
|
3806
4102
|
"""Subdivide perpendicular edges to the selected edge-ring
|
|
3807
4103
|
|
|
3808
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4104
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3809
4105
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3810
4106
|
:type undo: typing.Optional[bool]
|
|
3811
4107
|
:param number_cuts: Number of Cuts
|
|
@@ -3823,7 +4119,9 @@ def subdivide_edgering(
|
|
|
3823
4119
|
...
|
|
3824
4120
|
|
|
3825
4121
|
def symmetrize(
|
|
3826
|
-
override_context: typing.Optional[
|
|
4122
|
+
override_context: typing.Optional[
|
|
4123
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4124
|
+
] = None,
|
|
3827
4125
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3828
4126
|
undo: typing.Optional[bool] = None,
|
|
3829
4127
|
direction: typing.Optional[typing.Union[str, int]] = "NEGATIVE_X",
|
|
@@ -3831,7 +4129,7 @@ def symmetrize(
|
|
|
3831
4129
|
):
|
|
3832
4130
|
"""Enforce symmetry (both form and topological) across an axis
|
|
3833
4131
|
|
|
3834
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4132
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3835
4133
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3836
4134
|
:type undo: typing.Optional[bool]
|
|
3837
4135
|
:param direction: Direction, Which sides to copy from and to
|
|
@@ -3843,7 +4141,9 @@ def symmetrize(
|
|
|
3843
4141
|
...
|
|
3844
4142
|
|
|
3845
4143
|
def symmetry_snap(
|
|
3846
|
-
override_context: typing.Optional[
|
|
4144
|
+
override_context: typing.Optional[
|
|
4145
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4146
|
+
] = None,
|
|
3847
4147
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3848
4148
|
undo: typing.Optional[bool] = None,
|
|
3849
4149
|
direction: typing.Optional[typing.Union[str, int]] = "NEGATIVE_X",
|
|
@@ -3853,7 +4153,7 @@ def symmetry_snap(
|
|
|
3853
4153
|
):
|
|
3854
4154
|
"""Snap vertex pairs to their mirrored locations
|
|
3855
4155
|
|
|
3856
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4156
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3857
4157
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3858
4158
|
:type undo: typing.Optional[bool]
|
|
3859
4159
|
:param direction: Direction, Which sides to copy from and to
|
|
@@ -3869,7 +4169,9 @@ def symmetry_snap(
|
|
|
3869
4169
|
...
|
|
3870
4170
|
|
|
3871
4171
|
def tris_convert_to_quads(
|
|
3872
|
-
override_context: typing.Optional[
|
|
4172
|
+
override_context: typing.Optional[
|
|
4173
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4174
|
+
] = None,
|
|
3873
4175
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3874
4176
|
undo: typing.Optional[bool] = None,
|
|
3875
4177
|
face_threshold: typing.Optional[typing.Any] = 0.698132,
|
|
@@ -3882,7 +4184,7 @@ def tris_convert_to_quads(
|
|
|
3882
4184
|
):
|
|
3883
4185
|
"""Join triangles into quads
|
|
3884
4186
|
|
|
3885
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4187
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3886
4188
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3887
4189
|
:type undo: typing.Optional[bool]
|
|
3888
4190
|
:param face_threshold: Max Face Angle, Face angle limit
|
|
@@ -3904,14 +4206,16 @@ def tris_convert_to_quads(
|
|
|
3904
4206
|
...
|
|
3905
4207
|
|
|
3906
4208
|
def unsubdivide(
|
|
3907
|
-
override_context: typing.Optional[
|
|
4209
|
+
override_context: typing.Optional[
|
|
4210
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4211
|
+
] = None,
|
|
3908
4212
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3909
4213
|
undo: typing.Optional[bool] = None,
|
|
3910
4214
|
iterations: typing.Optional[typing.Any] = 2,
|
|
3911
4215
|
):
|
|
3912
4216
|
"""Un-subdivide selected edges and faces
|
|
3913
4217
|
|
|
3914
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4218
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3915
4219
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3916
4220
|
:type undo: typing.Optional[bool]
|
|
3917
4221
|
:param iterations: Iterations, Number of times to un-subdivide
|
|
@@ -3921,13 +4225,15 @@ def unsubdivide(
|
|
|
3921
4225
|
...
|
|
3922
4226
|
|
|
3923
4227
|
def uv_texture_add(
|
|
3924
|
-
override_context: typing.Optional[
|
|
4228
|
+
override_context: typing.Optional[
|
|
4229
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4230
|
+
] = None,
|
|
3925
4231
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3926
4232
|
undo: typing.Optional[bool] = None,
|
|
3927
4233
|
):
|
|
3928
4234
|
"""Add UV map
|
|
3929
4235
|
|
|
3930
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4236
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3931
4237
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3932
4238
|
:type undo: typing.Optional[bool]
|
|
3933
4239
|
"""
|
|
@@ -3935,13 +4241,15 @@ def uv_texture_add(
|
|
|
3935
4241
|
...
|
|
3936
4242
|
|
|
3937
4243
|
def uv_texture_remove(
|
|
3938
|
-
override_context: typing.Optional[
|
|
4244
|
+
override_context: typing.Optional[
|
|
4245
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4246
|
+
] = None,
|
|
3939
4247
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3940
4248
|
undo: typing.Optional[bool] = None,
|
|
3941
4249
|
):
|
|
3942
4250
|
"""Remove UV map
|
|
3943
4251
|
|
|
3944
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4252
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3945
4253
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3946
4254
|
:type undo: typing.Optional[bool]
|
|
3947
4255
|
"""
|
|
@@ -3949,13 +4257,15 @@ def uv_texture_remove(
|
|
|
3949
4257
|
...
|
|
3950
4258
|
|
|
3951
4259
|
def uvs_reverse(
|
|
3952
|
-
override_context: typing.Optional[
|
|
4260
|
+
override_context: typing.Optional[
|
|
4261
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4262
|
+
] = None,
|
|
3953
4263
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3954
4264
|
undo: typing.Optional[bool] = None,
|
|
3955
4265
|
):
|
|
3956
4266
|
"""Flip direction of UV coordinates inside faces
|
|
3957
4267
|
|
|
3958
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4268
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3959
4269
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3960
4270
|
:type undo: typing.Optional[bool]
|
|
3961
4271
|
"""
|
|
@@ -3963,14 +4273,16 @@ def uvs_reverse(
|
|
|
3963
4273
|
...
|
|
3964
4274
|
|
|
3965
4275
|
def uvs_rotate(
|
|
3966
|
-
override_context: typing.Optional[
|
|
4276
|
+
override_context: typing.Optional[
|
|
4277
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4278
|
+
] = None,
|
|
3967
4279
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3968
4280
|
undo: typing.Optional[bool] = None,
|
|
3969
4281
|
use_ccw: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
3970
4282
|
):
|
|
3971
4283
|
"""Rotate UV coordinates inside faces
|
|
3972
4284
|
|
|
3973
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4285
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3974
4286
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3975
4287
|
:type undo: typing.Optional[bool]
|
|
3976
4288
|
:param use_ccw: Counter Clockwise
|
|
@@ -3980,13 +4292,15 @@ def uvs_rotate(
|
|
|
3980
4292
|
...
|
|
3981
4293
|
|
|
3982
4294
|
def vert_connect(
|
|
3983
|
-
override_context: typing.Optional[
|
|
4295
|
+
override_context: typing.Optional[
|
|
4296
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4297
|
+
] = None,
|
|
3984
4298
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3985
4299
|
undo: typing.Optional[bool] = None,
|
|
3986
4300
|
):
|
|
3987
4301
|
"""Connect selected vertices of faces, splitting the face
|
|
3988
4302
|
|
|
3989
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4303
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
3990
4304
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
3991
4305
|
:type undo: typing.Optional[bool]
|
|
3992
4306
|
"""
|
|
@@ -3994,13 +4308,15 @@ def vert_connect(
|
|
|
3994
4308
|
...
|
|
3995
4309
|
|
|
3996
4310
|
def vert_connect_concave(
|
|
3997
|
-
override_context: typing.Optional[
|
|
4311
|
+
override_context: typing.Optional[
|
|
4312
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4313
|
+
] = None,
|
|
3998
4314
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
3999
4315
|
undo: typing.Optional[bool] = None,
|
|
4000
4316
|
):
|
|
4001
4317
|
"""Make all faces convex
|
|
4002
4318
|
|
|
4003
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4319
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4004
4320
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4005
4321
|
:type undo: typing.Optional[bool]
|
|
4006
4322
|
"""
|
|
@@ -4008,14 +4324,16 @@ def vert_connect_concave(
|
|
|
4008
4324
|
...
|
|
4009
4325
|
|
|
4010
4326
|
def vert_connect_nonplanar(
|
|
4011
|
-
override_context: typing.Optional[
|
|
4327
|
+
override_context: typing.Optional[
|
|
4328
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4329
|
+
] = None,
|
|
4012
4330
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4013
4331
|
undo: typing.Optional[bool] = None,
|
|
4014
4332
|
angle_limit: typing.Optional[typing.Any] = 0.0872665,
|
|
4015
4333
|
):
|
|
4016
4334
|
"""Split non-planar faces that exceed the angle threshold
|
|
4017
4335
|
|
|
4018
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4336
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4019
4337
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4020
4338
|
:type undo: typing.Optional[bool]
|
|
4021
4339
|
:param angle_limit: Max Angle, Angle limit
|
|
@@ -4025,13 +4343,15 @@ def vert_connect_nonplanar(
|
|
|
4025
4343
|
...
|
|
4026
4344
|
|
|
4027
4345
|
def vert_connect_path(
|
|
4028
|
-
override_context: typing.Optional[
|
|
4346
|
+
override_context: typing.Optional[
|
|
4347
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4348
|
+
] = None,
|
|
4029
4349
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4030
4350
|
undo: typing.Optional[bool] = None,
|
|
4031
4351
|
):
|
|
4032
4352
|
"""Connect vertices by their selection order, creating edges, splitting faces
|
|
4033
4353
|
|
|
4034
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4354
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4035
4355
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4036
4356
|
:type undo: typing.Optional[bool]
|
|
4037
4357
|
"""
|
|
@@ -4039,7 +4359,9 @@ def vert_connect_path(
|
|
|
4039
4359
|
...
|
|
4040
4360
|
|
|
4041
4361
|
def vertices_smooth(
|
|
4042
|
-
override_context: typing.Optional[
|
|
4362
|
+
override_context: typing.Optional[
|
|
4363
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4364
|
+
] = None,
|
|
4043
4365
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4044
4366
|
undo: typing.Optional[bool] = None,
|
|
4045
4367
|
factor: typing.Optional[typing.Any] = 0.0,
|
|
@@ -4051,7 +4373,7 @@ def vertices_smooth(
|
|
|
4051
4373
|
):
|
|
4052
4374
|
"""Flatten angles of selected vertices
|
|
4053
4375
|
|
|
4054
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4376
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4055
4377
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4056
4378
|
:type undo: typing.Optional[bool]
|
|
4057
4379
|
:param factor: Smoothing, Smoothing factor
|
|
@@ -4071,7 +4393,9 @@ def vertices_smooth(
|
|
|
4071
4393
|
...
|
|
4072
4394
|
|
|
4073
4395
|
def vertices_smooth_laplacian(
|
|
4074
|
-
override_context: typing.Optional[
|
|
4396
|
+
override_context: typing.Optional[
|
|
4397
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4398
|
+
] = None,
|
|
4075
4399
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4076
4400
|
undo: typing.Optional[bool] = None,
|
|
4077
4401
|
repeat: typing.Optional[typing.Any] = 1,
|
|
@@ -4084,7 +4408,7 @@ def vertices_smooth_laplacian(
|
|
|
4084
4408
|
):
|
|
4085
4409
|
"""Laplacian smooth of selected vertices
|
|
4086
4410
|
|
|
4087
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4411
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4088
4412
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4089
4413
|
:type undo: typing.Optional[bool]
|
|
4090
4414
|
:param repeat: Number of iterations to smooth the mesh
|
|
@@ -4106,7 +4430,9 @@ def vertices_smooth_laplacian(
|
|
|
4106
4430
|
...
|
|
4107
4431
|
|
|
4108
4432
|
def wireframe(
|
|
4109
|
-
override_context: typing.Optional[
|
|
4433
|
+
override_context: typing.Optional[
|
|
4434
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
4435
|
+
] = None,
|
|
4110
4436
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
4111
4437
|
undo: typing.Optional[bool] = None,
|
|
4112
4438
|
use_boundary: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -4120,7 +4446,7 @@ def wireframe(
|
|
|
4120
4446
|
):
|
|
4121
4447
|
"""Create a solid wireframe from faces
|
|
4122
4448
|
|
|
4123
|
-
:type override_context: typing.Optional[typing.Union[
|
|
4449
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
4124
4450
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
4125
4451
|
:type undo: typing.Optional[bool]
|
|
4126
4452
|
:param use_boundary: Boundary, Inset face boundaries
|