fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -21,22 +21,13 @@ def attribute_set(
|
|
|
21
21
|
) -> None:
|
|
22
22
|
"""Set values of the active attribute for selected elements
|
|
23
23
|
|
|
24
|
-
:type execution_context: int | str | None
|
|
25
|
-
:type undo: bool | None
|
|
26
24
|
:param value_float: Value
|
|
27
|
-
:type value_float: float | None
|
|
28
25
|
:param value_float_vector_2d: Value
|
|
29
|
-
:type value_float_vector_2d: collections.abc.Iterable[float] | None
|
|
30
26
|
:param value_float_vector_3d: Value
|
|
31
|
-
:type value_float_vector_3d: collections.abc.Iterable[float] | None
|
|
32
27
|
:param value_int: Value
|
|
33
|
-
:type value_int: int | None
|
|
34
28
|
:param value_int_vector_2d: Value
|
|
35
|
-
:type value_int_vector_2d: collections.abc.Iterable[int] | None
|
|
36
29
|
:param value_color: Value
|
|
37
|
-
:type value_color: collections.abc.Iterable[float] | None
|
|
38
30
|
:param value_bool: Value
|
|
39
|
-
:type value_bool: bool | None
|
|
40
31
|
"""
|
|
41
32
|
|
|
42
33
|
def average_normals(
|
|
@@ -51,8 +42,6 @@ def average_normals(
|
|
|
51
42
|
) -> None:
|
|
52
43
|
"""Average custom normals of selected vertices
|
|
53
44
|
|
|
54
|
-
:type execution_context: int | str | None
|
|
55
|
-
:type undo: bool | None
|
|
56
45
|
:param average_type: Type, Averaging method
|
|
57
46
|
|
|
58
47
|
CUSTOM_NORMAL
|
|
@@ -63,11 +52,8 @@ def average_normals(
|
|
|
63
52
|
|
|
64
53
|
CORNER_ANGLE
|
|
65
54
|
Corner Angle -- Set all vertex normals by corner angle.
|
|
66
|
-
:type average_type: typing.Literal['CUSTOM_NORMAL','FACE_AREA','CORNER_ANGLE'] | None
|
|
67
55
|
:param weight: Weight, Weight applied per face
|
|
68
|
-
:type weight: int | None
|
|
69
56
|
:param threshold: Threshold, Threshold value for different weights to be considered equal
|
|
70
|
-
:type threshold: float | None
|
|
71
57
|
"""
|
|
72
58
|
|
|
73
59
|
def beautify_fill(
|
|
@@ -79,10 +65,7 @@ def beautify_fill(
|
|
|
79
65
|
) -> None:
|
|
80
66
|
"""Rearrange some faces to try to get less degenerated geometry
|
|
81
67
|
|
|
82
|
-
:type execution_context: int | str | None
|
|
83
|
-
:type undo: bool | None
|
|
84
68
|
:param angle_limit: Max Angle, Angle limit
|
|
85
|
-
:type angle_limit: float | None
|
|
86
69
|
"""
|
|
87
70
|
|
|
88
71
|
def bevel(
|
|
@@ -114,8 +97,6 @@ def bevel(
|
|
|
114
97
|
) -> None:
|
|
115
98
|
"""Cut into selected items at an angle to create bevel or chamfer
|
|
116
99
|
|
|
117
|
-
:type execution_context: int | str | None
|
|
118
|
-
:type undo: bool | None
|
|
119
100
|
:param offset_type: Width Type, The method for determining the size of the bevel
|
|
120
101
|
|
|
121
102
|
OFFSET
|
|
@@ -132,9 +113,7 @@ def bevel(
|
|
|
132
113
|
|
|
133
114
|
ABSOLUTE
|
|
134
115
|
Absolute -- Amount is absolute distance along adjacent edge.
|
|
135
|
-
:type offset_type: typing.Literal['OFFSET','WIDTH','DEPTH','PERCENT','ABSOLUTE'] | None
|
|
136
116
|
:param offset: Width, Bevel amount
|
|
137
|
-
:type offset: float | None
|
|
138
117
|
:param profile_type: Profile Type, The type of shape used to rebuild a beveled section
|
|
139
118
|
|
|
140
119
|
SUPERELLIPSE
|
|
@@ -142,13 +121,9 @@ def bevel(
|
|
|
142
121
|
|
|
143
122
|
CUSTOM
|
|
144
123
|
Custom -- The profile can be any arbitrary path between its endpoints.
|
|
145
|
-
:type profile_type: typing.Literal['SUPERELLIPSE','CUSTOM'] | None
|
|
146
124
|
:param offset_pct: Width Percent, Bevel amount for percentage method
|
|
147
|
-
:type offset_pct: float | None
|
|
148
125
|
:param segments: Segments, Segments for curved edge
|
|
149
|
-
:type segments: int | None
|
|
150
126
|
:param profile: Profile, Controls profile shape (0.5 = round)
|
|
151
|
-
:type profile: float | None
|
|
152
127
|
:param affect: Affect, Affect edges or vertices
|
|
153
128
|
|
|
154
129
|
VERTICES
|
|
@@ -156,19 +131,12 @@ def bevel(
|
|
|
156
131
|
|
|
157
132
|
EDGES
|
|
158
133
|
Edges -- Affect only edges.
|
|
159
|
-
:type affect: typing.Literal['VERTICES','EDGES'] | None
|
|
160
134
|
:param clamp_overlap: Clamp Overlap, Do not allow beveled edges/vertices to overlap each other
|
|
161
|
-
:type clamp_overlap: bool | None
|
|
162
135
|
:param loop_slide: Loop Slide, Prefer sliding along edges to even widths
|
|
163
|
-
:
|
|
164
|
-
:param
|
|
165
|
-
:type mark_seam: bool | None
|
|
166
|
-
:param mark_sharp: Mark Sharp, Mark beveled edges as sharp
|
|
167
|
-
:type mark_sharp: bool | None
|
|
136
|
+
:param mark_seam: Mark Seams, Preserve seams along beveled edges
|
|
137
|
+
:param mark_sharp: Mark Sharp, Preserve sharp edges along beveled edges
|
|
168
138
|
:param material: Material Index, Material for bevel faces (-1 means use adjacent faces)
|
|
169
|
-
:type material: int | None
|
|
170
139
|
:param harden_normals: Harden Normals, Match normals of new faces to adjacent faces
|
|
171
|
-
:type harden_normals: bool | None
|
|
172
140
|
:param face_strength_mode: Face Strength Mode, Whether to set face strength, and which faces to set face strength on
|
|
173
141
|
|
|
174
142
|
NONE
|
|
@@ -182,7 +150,6 @@ def bevel(
|
|
|
182
150
|
|
|
183
151
|
ALL
|
|
184
152
|
All -- Set face strength on all faces.
|
|
185
|
-
:type face_strength_mode: typing.Literal['NONE','NEW','AFFECTED','ALL'] | None
|
|
186
153
|
:param miter_outer: Outer Miter, Pattern to use for outside of miters
|
|
187
154
|
|
|
188
155
|
SHARP
|
|
@@ -193,7 +160,6 @@ def bevel(
|
|
|
193
160
|
|
|
194
161
|
ARC
|
|
195
162
|
Arc -- Outside of miter is arc.
|
|
196
|
-
:type miter_outer: typing.Literal['SHARP','PATCH','ARC'] | None
|
|
197
163
|
:param miter_inner: Inner Miter, Pattern to use for inside of miters
|
|
198
164
|
|
|
199
165
|
SHARP
|
|
@@ -201,19 +167,15 @@ def bevel(
|
|
|
201
167
|
|
|
202
168
|
ARC
|
|
203
169
|
Arc -- Inside of miter is arc.
|
|
204
|
-
:type miter_inner: typing.Literal['SHARP','ARC'] | None
|
|
205
170
|
:param spread: Spread, Amount to spread arcs for arc inner miters
|
|
206
|
-
:type spread: float | None
|
|
207
171
|
:param vmesh_method: Vertex Mesh Method, The method to use to create meshes at intersections
|
|
208
172
|
|
|
209
173
|
ADJ
|
|
210
174
|
Grid Fill -- Default patterned fill.
|
|
211
175
|
|
|
212
176
|
CUTOFF
|
|
213
|
-
Cutoff -- A cutoff at each
|
|
214
|
-
:type vmesh_method: typing.Literal['ADJ','CUTOFF'] | None
|
|
177
|
+
Cutoff -- A cutoff at each profiles end before the intersection.
|
|
215
178
|
:param release_confirm: Confirm on Release
|
|
216
|
-
:type release_confirm: bool | None
|
|
217
179
|
"""
|
|
218
180
|
|
|
219
181
|
def bisect(
|
|
@@ -244,32 +206,18 @@ def bisect(
|
|
|
244
206
|
) -> None:
|
|
245
207
|
"""Cut geometry along a plane (click-drag to define plane)
|
|
246
208
|
|
|
247
|
-
:type execution_context: int | str | None
|
|
248
|
-
:type undo: bool | None
|
|
249
209
|
:param plane_co: Plane Point, A point on the plane
|
|
250
|
-
:type plane_co: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
251
210
|
:param plane_no: Plane Normal, The direction the plane points
|
|
252
|
-
:type plane_no: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
253
211
|
:param use_fill: Fill, Fill in the cut
|
|
254
|
-
:type use_fill: bool | None
|
|
255
212
|
:param clear_inner: Clear Inner, Remove geometry behind the plane
|
|
256
|
-
:type clear_inner: bool | None
|
|
257
213
|
:param clear_outer: Clear Outer, Remove geometry in front of the plane
|
|
258
|
-
:type clear_outer: bool | None
|
|
259
214
|
:param threshold: Axis Threshold, Preserves the existing geometry along the cut plane
|
|
260
|
-
:type threshold: float | None
|
|
261
215
|
:param xstart: X Start
|
|
262
|
-
:type xstart: int | None
|
|
263
216
|
:param xend: X End
|
|
264
|
-
:type xend: int | None
|
|
265
217
|
:param ystart: Y Start
|
|
266
|
-
:type ystart: int | None
|
|
267
218
|
:param yend: Y End
|
|
268
|
-
:type yend: int | None
|
|
269
219
|
:param flip: Flip
|
|
270
|
-
:type flip: bool | None
|
|
271
220
|
:param cursor: Cursor, Mouse cursor style to use during the modal operator
|
|
272
|
-
:type cursor: int | None
|
|
273
221
|
"""
|
|
274
222
|
|
|
275
223
|
def blend_from_shape(
|
|
@@ -283,14 +231,9 @@ def blend_from_shape(
|
|
|
283
231
|
) -> None:
|
|
284
232
|
"""Blend in shape from a shape key
|
|
285
233
|
|
|
286
|
-
:type execution_context: int | str | None
|
|
287
|
-
:type undo: bool | None
|
|
288
234
|
:param shape: Shape, Shape key to use for blending
|
|
289
|
-
:type shape: str | None
|
|
290
235
|
:param blend: Blend, Blending factor
|
|
291
|
-
:type blend: float | None
|
|
292
236
|
:param add: Add, Add rather than blend between shapes
|
|
293
|
-
:type add: bool | None
|
|
294
237
|
"""
|
|
295
238
|
|
|
296
239
|
def bridge_edge_loops(
|
|
@@ -311,36 +254,23 @@ def bridge_edge_loops(
|
|
|
311
254
|
) -> None:
|
|
312
255
|
"""Create a bridge of faces between two or more selected edge loops
|
|
313
256
|
|
|
314
|
-
:type execution_context: int | str | None
|
|
315
|
-
:type undo: bool | None
|
|
316
257
|
:param type: Connect Loops, Method of bridging multiple loops
|
|
317
|
-
:type type: typing.Literal['SINGLE','CLOSED','PAIRS'] | None
|
|
318
258
|
:param use_merge: Merge, Merge rather than creating faces
|
|
319
|
-
:type use_merge: bool | None
|
|
320
259
|
:param merge_factor: Merge Factor
|
|
321
|
-
:type merge_factor: float | None
|
|
322
260
|
:param twist_offset: Twist, Twist offset for closed loops
|
|
323
|
-
:type twist_offset: int | None
|
|
324
261
|
:param number_cuts: Number of Cuts
|
|
325
|
-
:type number_cuts: int | None
|
|
326
262
|
:param interpolation: Interpolation, Interpolation method
|
|
327
|
-
:type interpolation: typing.Literal['LINEAR','PATH','SURFACE'] | None
|
|
328
263
|
:param smoothness: Smoothness, Smoothness factor
|
|
329
|
-
:type smoothness: float | None
|
|
330
264
|
:param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
|
|
331
|
-
:type profile_shape_factor: float | None
|
|
332
265
|
:param profile_shape: Profile Shape, Shape of the profile
|
|
333
|
-
:type profile_shape: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
334
266
|
"""
|
|
335
267
|
|
|
336
268
|
def colors_reverse(
|
|
337
|
-
execution_context: int | str | None = None,
|
|
269
|
+
execution_context: int | str | None = None,
|
|
270
|
+
undo: bool | None = None,
|
|
271
|
+
/,
|
|
338
272
|
) -> None:
|
|
339
|
-
"""Flip direction of face corner color attribute inside faces
|
|
340
|
-
|
|
341
|
-
:type execution_context: int | str | None
|
|
342
|
-
:type undo: bool | None
|
|
343
|
-
"""
|
|
273
|
+
"""Flip direction of face corner color attribute inside faces"""
|
|
344
274
|
|
|
345
275
|
def colors_rotate(
|
|
346
276
|
execution_context: int | str | None = None,
|
|
@@ -351,10 +281,7 @@ def colors_rotate(
|
|
|
351
281
|
) -> None:
|
|
352
282
|
"""Rotate face corner color attribute inside faces
|
|
353
283
|
|
|
354
|
-
:type execution_context: int | str | None
|
|
355
|
-
:type undo: bool | None
|
|
356
284
|
:param use_ccw: Counter Clockwise
|
|
357
|
-
:type use_ccw: bool | None
|
|
358
285
|
"""
|
|
359
286
|
|
|
360
287
|
def convex_hull(
|
|
@@ -378,80 +305,55 @@ def convex_hull(
|
|
|
378
305
|
) -> None:
|
|
379
306
|
"""Enclose selected vertices in a convex polyhedron
|
|
380
307
|
|
|
381
|
-
:type execution_context: int | str | None
|
|
382
|
-
:type undo: bool | None
|
|
383
308
|
:param delete_unused: Delete Unused, Delete selected elements that are not used by the hull
|
|
384
|
-
:type delete_unused: bool | None
|
|
385
309
|
:param use_existing_faces: Use Existing Faces, Skip hull triangles that are covered by a pre-existing face
|
|
386
|
-
:type use_existing_faces: bool | None
|
|
387
310
|
:param make_holes: Make Holes, Delete selected faces that are used by the hull
|
|
388
|
-
:type make_holes: bool | None
|
|
389
311
|
:param join_triangles: Join Triangles, Merge adjacent triangles into quads
|
|
390
|
-
:type join_triangles: bool | None
|
|
391
312
|
:param face_threshold: Max Face Angle, Face angle limit
|
|
392
|
-
:type face_threshold: float | None
|
|
393
313
|
:param shape_threshold: Max Shape Angle, Shape angle limit
|
|
394
|
-
:type shape_threshold: float | None
|
|
395
314
|
:param topology_influence: Topology Influence, How much to prioritize regular grids of quads as well as quads that touch existing quads
|
|
396
|
-
:type topology_influence: float | None
|
|
397
315
|
:param uvs: Compare UVs
|
|
398
|
-
:type uvs: bool | None
|
|
399
316
|
:param vcols: Compare Color Attributes
|
|
400
|
-
:type vcols: bool | None
|
|
401
317
|
:param seam: Compare Seam
|
|
402
|
-
:type seam: bool | None
|
|
403
318
|
:param sharp: Compare Sharp
|
|
404
|
-
:type sharp: bool | None
|
|
405
319
|
:param materials: Compare Materials
|
|
406
|
-
:type materials: bool | None
|
|
407
320
|
:param deselect_joined: Deselect Joined, Only select remaining triangles that were not merged
|
|
408
|
-
:type deselect_joined: bool | None
|
|
409
321
|
"""
|
|
410
322
|
|
|
411
323
|
def customdata_custom_splitnormals_add(
|
|
412
|
-
execution_context: int | str | None = None,
|
|
324
|
+
execution_context: int | str | None = None,
|
|
325
|
+
undo: bool | None = None,
|
|
326
|
+
/,
|
|
413
327
|
) -> None:
|
|
414
|
-
"""Add a custom
|
|
415
|
-
|
|
416
|
-
:type execution_context: int | str | None
|
|
417
|
-
:type undo: bool | None
|
|
418
|
-
"""
|
|
328
|
+
"""Add a custom normals layer, if none exists yet"""
|
|
419
329
|
|
|
420
330
|
def customdata_custom_splitnormals_clear(
|
|
421
|
-
execution_context: int | str | None = None,
|
|
331
|
+
execution_context: int | str | None = None,
|
|
332
|
+
undo: bool | None = None,
|
|
333
|
+
/,
|
|
422
334
|
) -> None:
|
|
423
|
-
"""Remove the custom
|
|
424
|
-
|
|
425
|
-
:type execution_context: int | str | None
|
|
426
|
-
:type undo: bool | None
|
|
427
|
-
"""
|
|
335
|
+
"""Remove the custom normals layer, if it exists"""
|
|
428
336
|
|
|
429
337
|
def customdata_mask_clear(
|
|
430
|
-
execution_context: int | str | None = None,
|
|
338
|
+
execution_context: int | str | None = None,
|
|
339
|
+
undo: bool | None = None,
|
|
340
|
+
/,
|
|
431
341
|
) -> None:
|
|
432
|
-
"""Clear vertex sculpt masking data from the mesh
|
|
433
|
-
|
|
434
|
-
:type execution_context: int | str | None
|
|
435
|
-
:type undo: bool | None
|
|
436
|
-
"""
|
|
342
|
+
"""Clear vertex sculpt masking data from the mesh"""
|
|
437
343
|
|
|
438
344
|
def customdata_skin_add(
|
|
439
|
-
execution_context: int | str | None = None,
|
|
345
|
+
execution_context: int | str | None = None,
|
|
346
|
+
undo: bool | None = None,
|
|
347
|
+
/,
|
|
440
348
|
) -> None:
|
|
441
|
-
"""Add a vertex skin layer
|
|
442
|
-
|
|
443
|
-
:type execution_context: int | str | None
|
|
444
|
-
:type undo: bool | None
|
|
445
|
-
"""
|
|
349
|
+
"""Add a vertex skin layer"""
|
|
446
350
|
|
|
447
351
|
def customdata_skin_clear(
|
|
448
|
-
execution_context: int | str | None = None,
|
|
352
|
+
execution_context: int | str | None = None,
|
|
353
|
+
undo: bool | None = None,
|
|
354
|
+
/,
|
|
449
355
|
) -> None:
|
|
450
|
-
"""Clear vertex skin layer
|
|
451
|
-
|
|
452
|
-
:type execution_context: int | str | None
|
|
453
|
-
:type undo: bool | None
|
|
454
|
-
"""
|
|
356
|
+
"""Clear vertex skin layer"""
|
|
455
357
|
|
|
456
358
|
def decimate(
|
|
457
359
|
execution_context: int | str | None = None,
|
|
@@ -467,20 +369,12 @@ def decimate(
|
|
|
467
369
|
) -> None:
|
|
468
370
|
"""Simplify geometry by collapsing edges
|
|
469
371
|
|
|
470
|
-
:type execution_context: int | str | None
|
|
471
|
-
:type undo: bool | None
|
|
472
372
|
:param ratio: Ratio
|
|
473
|
-
:type ratio: float | None
|
|
474
373
|
:param use_vertex_group: Vertex Group, Use active vertex group as an influence
|
|
475
|
-
:type use_vertex_group: bool | None
|
|
476
374
|
:param vertex_group_factor: Weight, Vertex group strength
|
|
477
|
-
:type vertex_group_factor: float | None
|
|
478
375
|
:param invert_vertex_group: Invert, Invert vertex group influence
|
|
479
|
-
:type invert_vertex_group: bool | None
|
|
480
376
|
:param use_symmetry: Symmetry, Maintain symmetry on an axis
|
|
481
|
-
:type use_symmetry: bool | None
|
|
482
377
|
:param symmetry_axis: Axis, Axis of symmetry
|
|
483
|
-
:type symmetry_axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
484
378
|
"""
|
|
485
379
|
|
|
486
380
|
def delete(
|
|
@@ -493,10 +387,7 @@ def delete(
|
|
|
493
387
|
) -> None:
|
|
494
388
|
"""Delete selected vertices, edges or faces
|
|
495
389
|
|
|
496
|
-
:type execution_context: int | str | None
|
|
497
|
-
:type undo: bool | None
|
|
498
390
|
:param type: Type, Method used for deleting mesh data
|
|
499
|
-
:type type: typing.Literal['VERT','EDGE','FACE','EDGE_FACE','ONLY_FACE'] | None
|
|
500
391
|
"""
|
|
501
392
|
|
|
502
393
|
def delete_edgeloop(
|
|
@@ -508,10 +399,7 @@ def delete_edgeloop(
|
|
|
508
399
|
) -> None:
|
|
509
400
|
"""Delete an edge loop by merging the faces on each side
|
|
510
401
|
|
|
511
|
-
:type execution_context: int | str | None
|
|
512
|
-
:type undo: bool | None
|
|
513
402
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
514
|
-
:type use_face_split: bool | None
|
|
515
403
|
"""
|
|
516
404
|
|
|
517
405
|
def delete_loose(
|
|
@@ -525,14 +413,9 @@ def delete_loose(
|
|
|
525
413
|
) -> None:
|
|
526
414
|
"""Delete loose vertices, edges or faces
|
|
527
415
|
|
|
528
|
-
:type execution_context: int | str | None
|
|
529
|
-
:type undo: bool | None
|
|
530
416
|
:param use_verts: Vertices, Remove loose vertices
|
|
531
|
-
:type use_verts: bool | None
|
|
532
417
|
:param use_edges: Edges, Remove loose edges
|
|
533
|
-
:type use_edges: bool | None
|
|
534
418
|
:param use_faces: Faces, Remove loose faces
|
|
535
|
-
:type use_faces: bool | None
|
|
536
419
|
"""
|
|
537
420
|
|
|
538
421
|
def dissolve_degenerate(
|
|
@@ -544,10 +427,7 @@ def dissolve_degenerate(
|
|
|
544
427
|
) -> None:
|
|
545
428
|
"""Dissolve zero area faces and zero length edges
|
|
546
429
|
|
|
547
|
-
:type execution_context: int | str | None
|
|
548
|
-
:type undo: bool | None
|
|
549
430
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
550
|
-
:type threshold: float | None
|
|
551
431
|
"""
|
|
552
432
|
|
|
553
433
|
def dissolve_edges(
|
|
@@ -556,19 +436,14 @@ def dissolve_edges(
|
|
|
556
436
|
/,
|
|
557
437
|
*,
|
|
558
438
|
use_verts: bool | None = True,
|
|
559
|
-
angle_threshold: float | None =
|
|
439
|
+
angle_threshold: float | None = 3.14159,
|
|
560
440
|
use_face_split: bool | None = False,
|
|
561
441
|
) -> None:
|
|
562
442
|
"""Dissolve edges, merging faces
|
|
563
443
|
|
|
564
|
-
:type execution_context: int | str | None
|
|
565
|
-
:type undo: bool | None
|
|
566
444
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices which connect to only two edges
|
|
567
|
-
:type use_verts: bool | None
|
|
568
445
|
:param angle_threshold: Angle Threshold, Remaining vertices which separate edge pairs are preserved if their edge angle exceeds this threshold.
|
|
569
|
-
:type angle_threshold: float | None
|
|
570
446
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
571
|
-
:type use_face_split: bool | None
|
|
572
447
|
"""
|
|
573
448
|
|
|
574
449
|
def dissolve_faces(
|
|
@@ -580,10 +455,7 @@ def dissolve_faces(
|
|
|
580
455
|
) -> None:
|
|
581
456
|
"""Dissolve faces
|
|
582
457
|
|
|
583
|
-
:type execution_context: int | str | None
|
|
584
|
-
:type undo: bool | None
|
|
585
458
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices which connect to only two edges
|
|
586
|
-
:type use_verts: bool | None
|
|
587
459
|
"""
|
|
588
460
|
|
|
589
461
|
def dissolve_limited(
|
|
@@ -597,14 +469,9 @@ def dissolve_limited(
|
|
|
597
469
|
) -> None:
|
|
598
470
|
"""Dissolve selected edges and vertices, limited by the angle of surrounding geometry
|
|
599
471
|
|
|
600
|
-
:type execution_context: int | str | None
|
|
601
|
-
:type undo: bool | None
|
|
602
472
|
:param angle_limit: Max Angle, Angle limit
|
|
603
|
-
:type angle_limit: float | None
|
|
604
473
|
:param use_dissolve_boundaries: All Boundaries, Dissolve all vertices in between face boundaries
|
|
605
|
-
:type use_dissolve_boundaries: bool | None
|
|
606
474
|
:param delimit: Delimit, Delimit dissolve operation
|
|
607
|
-
:type delimit: set[bpy.stub_internal.rna_enums.MeshDelimitModeItems] | None
|
|
608
475
|
"""
|
|
609
476
|
|
|
610
477
|
def dissolve_mode(
|
|
@@ -613,22 +480,16 @@ def dissolve_mode(
|
|
|
613
480
|
/,
|
|
614
481
|
*,
|
|
615
482
|
use_verts: bool | None = False,
|
|
616
|
-
angle_threshold: float | None =
|
|
483
|
+
angle_threshold: float | None = 3.14159,
|
|
617
484
|
use_face_split: bool | None = False,
|
|
618
485
|
use_boundary_tear: bool | None = False,
|
|
619
486
|
) -> None:
|
|
620
487
|
"""Dissolve geometry based on the selection mode
|
|
621
488
|
|
|
622
|
-
:type execution_context: int | str | None
|
|
623
|
-
:type undo: bool | None
|
|
624
489
|
:param use_verts: Dissolve Vertices, Dissolve remaining vertices which connect to only two edges
|
|
625
|
-
:type use_verts: bool | None
|
|
626
490
|
:param angle_threshold: Angle Threshold, Remaining vertices which separate edge pairs are preserved if their edge angle exceeds this threshold.
|
|
627
|
-
:type angle_threshold: float | None
|
|
628
491
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
629
|
-
:type use_face_split: bool | None
|
|
630
492
|
:param use_boundary_tear: Tear Boundary, Split off face corners instead of merging faces
|
|
631
|
-
:type use_boundary_tear: bool | None
|
|
632
493
|
"""
|
|
633
494
|
|
|
634
495
|
def dissolve_verts(
|
|
@@ -641,12 +502,8 @@ def dissolve_verts(
|
|
|
641
502
|
) -> None:
|
|
642
503
|
"""Dissolve vertices, merge edges and faces
|
|
643
504
|
|
|
644
|
-
:type execution_context: int | str | None
|
|
645
|
-
:type undo: bool | None
|
|
646
505
|
:param use_face_split: Face Split, Split off face corners to maintain surrounding geometry
|
|
647
|
-
:type use_face_split: bool | None
|
|
648
506
|
:param use_boundary_tear: Tear Boundary, Split off face corners instead of merging faces
|
|
649
|
-
:type use_boundary_tear: bool | None
|
|
650
507
|
"""
|
|
651
508
|
|
|
652
509
|
def dupli_extrude_cursor(
|
|
@@ -658,10 +515,7 @@ def dupli_extrude_cursor(
|
|
|
658
515
|
) -> None:
|
|
659
516
|
"""Duplicate and extrude selected vertices, edges or faces towards the mouse cursor
|
|
660
517
|
|
|
661
|
-
:type execution_context: int | str | None
|
|
662
|
-
:type undo: bool | None
|
|
663
518
|
:param rotate_source: Rotate Source, Rotate initial selection giving better shape
|
|
664
|
-
:type rotate_source: bool | None
|
|
665
519
|
"""
|
|
666
520
|
|
|
667
521
|
def duplicate(
|
|
@@ -673,10 +527,7 @@ def duplicate(
|
|
|
673
527
|
) -> None:
|
|
674
528
|
"""Duplicate selected vertices, edges or faces
|
|
675
529
|
|
|
676
|
-
:type execution_context: int | str | None
|
|
677
|
-
:type undo: bool | None
|
|
678
530
|
:param mode: Mode
|
|
679
|
-
:type mode: int | None
|
|
680
531
|
"""
|
|
681
532
|
|
|
682
533
|
def duplicate_move(
|
|
@@ -689,31 +540,23 @@ def duplicate_move(
|
|
|
689
540
|
) -> None:
|
|
690
541
|
"""Duplicate mesh and move
|
|
691
542
|
|
|
692
|
-
:type execution_context: int | str | None
|
|
693
|
-
:type undo: bool | None
|
|
694
543
|
:param MESH_OT_duplicate: Duplicate, Duplicate selected vertices, edges or faces
|
|
695
|
-
:type MESH_OT_duplicate: duplicate | None
|
|
696
544
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
697
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
698
545
|
"""
|
|
699
546
|
|
|
700
547
|
def edge_collapse(
|
|
701
|
-
execution_context: int | str | None = None,
|
|
548
|
+
execution_context: int | str | None = None,
|
|
549
|
+
undo: bool | None = None,
|
|
550
|
+
/,
|
|
702
551
|
) -> None:
|
|
703
|
-
"""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
|
|
704
|
-
|
|
705
|
-
:type execution_context: int | str | None
|
|
706
|
-
:type undo: bool | None
|
|
707
|
-
"""
|
|
552
|
+
"""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"""
|
|
708
553
|
|
|
709
554
|
def edge_face_add(
|
|
710
|
-
execution_context: int | str | None = None,
|
|
555
|
+
execution_context: int | str | None = None,
|
|
556
|
+
undo: bool | None = None,
|
|
557
|
+
/,
|
|
711
558
|
) -> None:
|
|
712
|
-
"""Add an edge or face to selected
|
|
713
|
-
|
|
714
|
-
:type execution_context: int | str | None
|
|
715
|
-
:type undo: bool | None
|
|
716
|
-
"""
|
|
559
|
+
"""Add an edge or face to selected"""
|
|
717
560
|
|
|
718
561
|
def edge_rotate(
|
|
719
562
|
execution_context: int | str | None = None,
|
|
@@ -724,10 +567,7 @@ def edge_rotate(
|
|
|
724
567
|
) -> None:
|
|
725
568
|
"""Rotate selected edge or adjoining faces
|
|
726
569
|
|
|
727
|
-
:type execution_context: int | str | None
|
|
728
|
-
:type undo: bool | None
|
|
729
570
|
:param use_ccw: Counter Clockwise
|
|
730
|
-
:type use_ccw: bool | None
|
|
731
571
|
"""
|
|
732
572
|
|
|
733
573
|
def edge_split(
|
|
@@ -739,8 +579,6 @@ def edge_split(
|
|
|
739
579
|
) -> None:
|
|
740
580
|
"""Split selected edges so that each neighbor face gets its own copy
|
|
741
581
|
|
|
742
|
-
:type execution_context: int | str | None
|
|
743
|
-
:type undo: bool | None
|
|
744
582
|
:param type: Type, Method to use for splitting
|
|
745
583
|
|
|
746
584
|
EDGE
|
|
@@ -748,7 +586,6 @@ def edge_split(
|
|
|
748
586
|
|
|
749
587
|
VERT
|
|
750
588
|
Faces & Edges by Vertices -- Split faces and edges connected to selected vertices.
|
|
751
|
-
:type type: typing.Literal['EDGE','VERT'] | None
|
|
752
589
|
"""
|
|
753
590
|
|
|
754
591
|
def edgering_select(
|
|
@@ -763,16 +600,10 @@ def edgering_select(
|
|
|
763
600
|
) -> None:
|
|
764
601
|
"""Select an edge ring
|
|
765
602
|
|
|
766
|
-
:type execution_context: int | str | None
|
|
767
|
-
:type undo: bool | None
|
|
768
603
|
:param extend: Extend, Extend the selection
|
|
769
|
-
:type extend: bool | None
|
|
770
604
|
:param deselect: Deselect, Remove from the selection
|
|
771
|
-
:type deselect: bool | None
|
|
772
605
|
:param toggle: Toggle Select, Toggle the selection
|
|
773
|
-
:type toggle: bool | None
|
|
774
606
|
:param ring: Select Ring, Select ring
|
|
775
|
-
:type ring: bool | None
|
|
776
607
|
"""
|
|
777
608
|
|
|
778
609
|
def edges_select_sharp(
|
|
@@ -784,10 +615,7 @@ def edges_select_sharp(
|
|
|
784
615
|
) -> None:
|
|
785
616
|
"""Select all sharp enough edges
|
|
786
617
|
|
|
787
|
-
:type execution_context: int | str | None
|
|
788
|
-
:type undo: bool | None
|
|
789
618
|
:param sharpness: Sharpness
|
|
790
|
-
:type sharpness: float | None
|
|
791
619
|
"""
|
|
792
620
|
|
|
793
621
|
def extrude_context(
|
|
@@ -801,14 +629,9 @@ def extrude_context(
|
|
|
801
629
|
) -> None:
|
|
802
630
|
"""Extrude selection
|
|
803
631
|
|
|
804
|
-
:type execution_context: int | str | None
|
|
805
|
-
:type undo: bool | None
|
|
806
632
|
:param use_normal_flip: Flip Normals
|
|
807
|
-
:type use_normal_flip: bool | None
|
|
808
633
|
:param use_dissolve_ortho_edges: Dissolve Orthogonal Edges
|
|
809
|
-
:type use_dissolve_ortho_edges: bool | None
|
|
810
634
|
:param mirror: Mirror Editing
|
|
811
|
-
:type mirror: bool | None
|
|
812
635
|
"""
|
|
813
636
|
|
|
814
637
|
def extrude_context_move(
|
|
@@ -821,12 +644,8 @@ def extrude_context_move(
|
|
|
821
644
|
) -> None:
|
|
822
645
|
"""Extrude region together along the average normal
|
|
823
646
|
|
|
824
|
-
:type execution_context: int | str | None
|
|
825
|
-
:type undo: bool | None
|
|
826
647
|
:param MESH_OT_extrude_context: Extrude Context, Extrude selection
|
|
827
|
-
:type MESH_OT_extrude_context: extrude_context | None
|
|
828
648
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
829
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
830
649
|
"""
|
|
831
650
|
|
|
832
651
|
def extrude_edges_indiv(
|
|
@@ -839,12 +658,8 @@ def extrude_edges_indiv(
|
|
|
839
658
|
) -> None:
|
|
840
659
|
"""Extrude individual edges only
|
|
841
660
|
|
|
842
|
-
:type execution_context: int | str | None
|
|
843
|
-
:type undo: bool | None
|
|
844
661
|
:param use_normal_flip: Flip Normals
|
|
845
|
-
:type use_normal_flip: bool | None
|
|
846
662
|
:param mirror: Mirror Editing
|
|
847
|
-
:type mirror: bool | None
|
|
848
663
|
"""
|
|
849
664
|
|
|
850
665
|
def extrude_edges_move(
|
|
@@ -857,12 +672,8 @@ def extrude_edges_move(
|
|
|
857
672
|
) -> None:
|
|
858
673
|
"""Extrude edges and move result
|
|
859
674
|
|
|
860
|
-
:type execution_context: int | str | None
|
|
861
|
-
:type undo: bool | None
|
|
862
675
|
:param MESH_OT_extrude_edges_indiv: Extrude Only Edges, Extrude individual edges only
|
|
863
|
-
:type MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None
|
|
864
676
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
865
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
866
677
|
"""
|
|
867
678
|
|
|
868
679
|
def extrude_faces_indiv(
|
|
@@ -874,10 +685,7 @@ def extrude_faces_indiv(
|
|
|
874
685
|
) -> None:
|
|
875
686
|
"""Extrude individual faces only
|
|
876
687
|
|
|
877
|
-
:type execution_context: int | str | None
|
|
878
|
-
:type undo: bool | None
|
|
879
688
|
:param mirror: Mirror Editing
|
|
880
|
-
:type mirror: bool | None
|
|
881
689
|
"""
|
|
882
690
|
|
|
883
691
|
def extrude_faces_move(
|
|
@@ -890,12 +698,8 @@ def extrude_faces_move(
|
|
|
890
698
|
) -> None:
|
|
891
699
|
"""Extrude each individual face separately along local normals
|
|
892
700
|
|
|
893
|
-
:type execution_context: int | str | None
|
|
894
|
-
:type undo: bool | None
|
|
895
701
|
:param MESH_OT_extrude_faces_indiv: Extrude Individual Faces, Extrude individual faces only
|
|
896
|
-
:type MESH_OT_extrude_faces_indiv: extrude_faces_indiv | None
|
|
897
702
|
:param TRANSFORM_OT_shrink_fatten: Shrink/Fatten, Shrink/fatten selected vertices along normals
|
|
898
|
-
:type TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None
|
|
899
703
|
"""
|
|
900
704
|
|
|
901
705
|
def extrude_manifold(
|
|
@@ -908,12 +712,8 @@ def extrude_manifold(
|
|
|
908
712
|
) -> None:
|
|
909
713
|
"""Extrude, dissolves edges whose faces form a flat surface and intersect new edges
|
|
910
714
|
|
|
911
|
-
:type execution_context: int | str | None
|
|
912
|
-
:type undo: bool | None
|
|
913
715
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
914
|
-
:type MESH_OT_extrude_region: extrude_region | None
|
|
915
716
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
916
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
917
717
|
"""
|
|
918
718
|
|
|
919
719
|
def extrude_region(
|
|
@@ -927,14 +727,9 @@ def extrude_region(
|
|
|
927
727
|
) -> None:
|
|
928
728
|
"""Extrude region of faces
|
|
929
729
|
|
|
930
|
-
:type execution_context: int | str | None
|
|
931
|
-
:type undo: bool | None
|
|
932
730
|
:param use_normal_flip: Flip Normals
|
|
933
|
-
:type use_normal_flip: bool | None
|
|
934
731
|
:param use_dissolve_ortho_edges: Dissolve Orthogonal Edges
|
|
935
|
-
:type use_dissolve_ortho_edges: bool | None
|
|
936
732
|
:param mirror: Mirror Editing
|
|
937
|
-
:type mirror: bool | None
|
|
938
733
|
"""
|
|
939
734
|
|
|
940
735
|
def extrude_region_move(
|
|
@@ -947,12 +742,8 @@ def extrude_region_move(
|
|
|
947
742
|
) -> None:
|
|
948
743
|
"""Extrude region and move result
|
|
949
744
|
|
|
950
|
-
:type execution_context: int | str | None
|
|
951
|
-
:type undo: bool | None
|
|
952
745
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
953
|
-
:type MESH_OT_extrude_region: extrude_region | None
|
|
954
746
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
955
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
956
747
|
"""
|
|
957
748
|
|
|
958
749
|
def extrude_region_shrink_fatten(
|
|
@@ -965,12 +756,8 @@ def extrude_region_shrink_fatten(
|
|
|
965
756
|
) -> None:
|
|
966
757
|
"""Extrude region together along local normals
|
|
967
758
|
|
|
968
|
-
:type execution_context: int | str | None
|
|
969
|
-
:type undo: bool | None
|
|
970
759
|
:param MESH_OT_extrude_region: Extrude Region, Extrude region of faces
|
|
971
|
-
:type MESH_OT_extrude_region: extrude_region | None
|
|
972
760
|
:param TRANSFORM_OT_shrink_fatten: Shrink/Fatten, Shrink/fatten selected vertices along normals
|
|
973
|
-
:type TRANSFORM_OT_shrink_fatten: bpy.ops.transform.shrink_fatten | None
|
|
974
761
|
"""
|
|
975
762
|
|
|
976
763
|
def extrude_repeat(
|
|
@@ -984,14 +771,9 @@ def extrude_repeat(
|
|
|
984
771
|
) -> None:
|
|
985
772
|
"""Extrude selected vertices, edges or faces repeatedly
|
|
986
773
|
|
|
987
|
-
:type execution_context: int | str | None
|
|
988
|
-
:type undo: bool | None
|
|
989
774
|
:param steps: Steps
|
|
990
|
-
:type steps: int | None
|
|
991
775
|
:param offset: Offset, Offset vector
|
|
992
|
-
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
993
776
|
:param scale_offset: Scale Offset
|
|
994
|
-
:type scale_offset: float | None
|
|
995
777
|
"""
|
|
996
778
|
|
|
997
779
|
def extrude_vertices_move(
|
|
@@ -1004,12 +786,8 @@ def extrude_vertices_move(
|
|
|
1004
786
|
) -> None:
|
|
1005
787
|
"""Extrude vertices and move result
|
|
1006
788
|
|
|
1007
|
-
:type execution_context: int | str | None
|
|
1008
|
-
:type undo: bool | None
|
|
1009
789
|
:param MESH_OT_extrude_verts_indiv: Extrude Only Vertices, Extrude individual vertices only
|
|
1010
|
-
:type MESH_OT_extrude_verts_indiv: extrude_verts_indiv | None
|
|
1011
790
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1012
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1013
791
|
"""
|
|
1014
792
|
|
|
1015
793
|
def extrude_verts_indiv(
|
|
@@ -1021,10 +799,7 @@ def extrude_verts_indiv(
|
|
|
1021
799
|
) -> None:
|
|
1022
800
|
"""Extrude individual vertices only
|
|
1023
801
|
|
|
1024
|
-
:type execution_context: int | str | None
|
|
1025
|
-
:type undo: bool | None
|
|
1026
802
|
:param mirror: Mirror Editing
|
|
1027
|
-
:type mirror: bool | None
|
|
1028
803
|
"""
|
|
1029
804
|
|
|
1030
805
|
def face_make_planar(
|
|
@@ -1037,40 +812,16 @@ def face_make_planar(
|
|
|
1037
812
|
) -> None:
|
|
1038
813
|
"""Flatten selected faces
|
|
1039
814
|
|
|
1040
|
-
:type execution_context: int | str | None
|
|
1041
|
-
:type undo: bool | None
|
|
1042
815
|
:param factor: Factor
|
|
1043
|
-
:type factor: float | None
|
|
1044
816
|
:param repeat: Iterations
|
|
1045
|
-
:type repeat: int | None
|
|
1046
817
|
"""
|
|
1047
818
|
|
|
1048
819
|
def face_split_by_edges(
|
|
1049
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
1050
|
-
) -> None:
|
|
1051
|
-
"""Weld loose edges into faces (splitting them into new faces)
|
|
1052
|
-
|
|
1053
|
-
:type execution_context: int | str | None
|
|
1054
|
-
:type undo: bool | None
|
|
1055
|
-
"""
|
|
1056
|
-
|
|
1057
|
-
def faces_mirror_uv(
|
|
1058
820
|
execution_context: int | str | None = None,
|
|
1059
821
|
undo: bool | None = None,
|
|
1060
822
|
/,
|
|
1061
|
-
*,
|
|
1062
|
-
direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
|
|
1063
|
-
precision: int | None = 3,
|
|
1064
823
|
) -> None:
|
|
1065
|
-
"""
|
|
1066
|
-
|
|
1067
|
-
:type execution_context: int | str | None
|
|
1068
|
-
:type undo: bool | None
|
|
1069
|
-
:param direction: Axis Direction
|
|
1070
|
-
:type direction: typing.Literal['POSITIVE','NEGATIVE'] | None
|
|
1071
|
-
:param precision: Precision, Tolerance for finding vertex duplicates
|
|
1072
|
-
:type precision: int | None
|
|
1073
|
-
"""
|
|
824
|
+
"""Weld loose edges into faces (splitting them into new faces)"""
|
|
1074
825
|
|
|
1075
826
|
def faces_select_linked_flat(
|
|
1076
827
|
execution_context: int | str | None = None,
|
|
@@ -1081,29 +832,22 @@ def faces_select_linked_flat(
|
|
|
1081
832
|
) -> None:
|
|
1082
833
|
"""Select linked faces by angle
|
|
1083
834
|
|
|
1084
|
-
:type execution_context: int | str | None
|
|
1085
|
-
:type undo: bool | None
|
|
1086
835
|
:param sharpness: Sharpness
|
|
1087
|
-
:type sharpness: float | None
|
|
1088
836
|
"""
|
|
1089
837
|
|
|
1090
838
|
def faces_shade_flat(
|
|
1091
|
-
execution_context: int | str | None = None,
|
|
839
|
+
execution_context: int | str | None = None,
|
|
840
|
+
undo: bool | None = None,
|
|
841
|
+
/,
|
|
1092
842
|
) -> None:
|
|
1093
|
-
"""Display faces flat
|
|
1094
|
-
|
|
1095
|
-
:type execution_context: int | str | None
|
|
1096
|
-
:type undo: bool | None
|
|
1097
|
-
"""
|
|
843
|
+
"""Display faces flat"""
|
|
1098
844
|
|
|
1099
845
|
def faces_shade_smooth(
|
|
1100
|
-
execution_context: int | str | None = None,
|
|
846
|
+
execution_context: int | str | None = None,
|
|
847
|
+
undo: bool | None = None,
|
|
848
|
+
/,
|
|
1101
849
|
) -> None:
|
|
1102
|
-
"""Display faces smooth (using vertex normals)
|
|
1103
|
-
|
|
1104
|
-
:type execution_context: int | str | None
|
|
1105
|
-
:type undo: bool | None
|
|
1106
|
-
"""
|
|
850
|
+
"""Display faces smooth (using vertex normals)"""
|
|
1107
851
|
|
|
1108
852
|
def fill(
|
|
1109
853
|
execution_context: int | str | None = None,
|
|
@@ -1114,10 +858,7 @@ def fill(
|
|
|
1114
858
|
) -> None:
|
|
1115
859
|
"""Fill a selected edge loop with faces
|
|
1116
860
|
|
|
1117
|
-
:type execution_context: int | str | None
|
|
1118
|
-
:type undo: bool | None
|
|
1119
861
|
:param use_beauty: Beauty, Use best triangulation division
|
|
1120
|
-
:type use_beauty: bool | None
|
|
1121
862
|
"""
|
|
1122
863
|
|
|
1123
864
|
def fill_grid(
|
|
@@ -1131,14 +872,9 @@ def fill_grid(
|
|
|
1131
872
|
) -> None:
|
|
1132
873
|
"""Fill grid from two loops
|
|
1133
874
|
|
|
1134
|
-
:type execution_context: int | str | None
|
|
1135
|
-
:type undo: bool | None
|
|
1136
875
|
:param span: Span, Number of grid columns
|
|
1137
|
-
:type span: int | None
|
|
1138
876
|
:param offset: Offset, Vertex that is the corner of the grid
|
|
1139
|
-
:type offset: int | None
|
|
1140
877
|
:param use_interp_simple: Simple Blending, Use simple interpolation of grid vertices
|
|
1141
|
-
:type use_interp_simple: bool | None
|
|
1142
878
|
"""
|
|
1143
879
|
|
|
1144
880
|
def fill_holes(
|
|
@@ -1150,10 +886,7 @@ def fill_holes(
|
|
|
1150
886
|
) -> None:
|
|
1151
887
|
"""Fill in holes (boundary edge loops)
|
|
1152
888
|
|
|
1153
|
-
:type execution_context: int | str | None
|
|
1154
|
-
:type undo: bool | None
|
|
1155
889
|
:param sides: Sides, Number of sides in hole required to fill (zero fills all holes)
|
|
1156
|
-
:type sides: int | None
|
|
1157
890
|
"""
|
|
1158
891
|
|
|
1159
892
|
def flip_normals(
|
|
@@ -1163,22 +896,17 @@ def flip_normals(
|
|
|
1163
896
|
*,
|
|
1164
897
|
only_clnors: bool | None = False,
|
|
1165
898
|
) -> None:
|
|
1166
|
-
"""Flip the direction of selected faces
|
|
899
|
+
"""Flip the direction of selected faces normals (and of their vertices)
|
|
1167
900
|
|
|
1168
|
-
:type execution_context: int | str | None
|
|
1169
|
-
:type undo: bool | None
|
|
1170
901
|
:param only_clnors: Custom Normals Only, Only flip the custom loop normals of the selected elements
|
|
1171
|
-
:type only_clnors: bool | None
|
|
1172
902
|
"""
|
|
1173
903
|
|
|
1174
904
|
def flip_quad_tessellation(
|
|
1175
|
-
execution_context: int | str | None = None,
|
|
905
|
+
execution_context: int | str | None = None,
|
|
906
|
+
undo: bool | None = None,
|
|
907
|
+
/,
|
|
1176
908
|
) -> None:
|
|
1177
|
-
"""Flips the tessellation of selected quads
|
|
1178
|
-
|
|
1179
|
-
:type execution_context: int | str | None
|
|
1180
|
-
:type undo: bool | None
|
|
1181
|
-
"""
|
|
909
|
+
"""Flips the tessellation of selected quads"""
|
|
1182
910
|
|
|
1183
911
|
def hide(
|
|
1184
912
|
execution_context: int | str | None = None,
|
|
@@ -1189,10 +917,7 @@ def hide(
|
|
|
1189
917
|
) -> None:
|
|
1190
918
|
"""Hide (un)selected vertices, edges or faces
|
|
1191
919
|
|
|
1192
|
-
:type execution_context: int | str | None
|
|
1193
|
-
:type undo: bool | None
|
|
1194
920
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
1195
|
-
:type unselected: bool | None
|
|
1196
921
|
"""
|
|
1197
922
|
|
|
1198
923
|
def inset(
|
|
@@ -1214,30 +939,17 @@ def inset(
|
|
|
1214
939
|
) -> None:
|
|
1215
940
|
"""Inset new faces into selected faces
|
|
1216
941
|
|
|
1217
|
-
:type execution_context: int | str | None
|
|
1218
|
-
:type undo: bool | None
|
|
1219
942
|
:param use_boundary: Boundary, Inset face boundaries
|
|
1220
|
-
:type use_boundary: bool | None
|
|
1221
943
|
:param use_even_offset: Offset Even, Scale the offset to give more even thickness
|
|
1222
|
-
:type use_even_offset: bool | None
|
|
1223
944
|
:param use_relative_offset: Offset Relative, Scale the offset by surrounding geometry
|
|
1224
|
-
:type use_relative_offset: bool | None
|
|
1225
945
|
:param use_edge_rail: Edge Rail, Inset the region along existing edges
|
|
1226
|
-
:type use_edge_rail: bool | None
|
|
1227
946
|
:param thickness: Thickness
|
|
1228
|
-
:type thickness: float | None
|
|
1229
947
|
:param depth: Depth
|
|
1230
|
-
:type depth: float | None
|
|
1231
948
|
:param use_outset: Outset, Outset rather than inset
|
|
1232
|
-
:type use_outset: bool | None
|
|
1233
949
|
:param use_select_inset: Select Outer, Select the new inset faces
|
|
1234
|
-
:type use_select_inset: bool | None
|
|
1235
950
|
:param use_individual: Individual, Individual face inset
|
|
1236
|
-
:type use_individual: bool | None
|
|
1237
951
|
:param use_interpolate: Interpolate, Blend face data across the inset
|
|
1238
|
-
:type use_interpolate: bool | None
|
|
1239
952
|
:param release_confirm: Confirm on Release
|
|
1240
|
-
:type release_confirm: bool | None
|
|
1241
953
|
"""
|
|
1242
954
|
|
|
1243
955
|
def intersect(
|
|
@@ -1248,12 +960,10 @@ def intersect(
|
|
|
1248
960
|
mode: typing.Literal["SELECT", "SELECT_UNSELECT"] | None = "SELECT_UNSELECT",
|
|
1249
961
|
separate_mode: typing.Literal["ALL", "CUT", "NONE"] | None = "CUT",
|
|
1250
962
|
threshold: float | None = 1e-06,
|
|
1251
|
-
solver: typing.Literal["
|
|
963
|
+
solver: typing.Literal["FLOAT", "EXACT"] | None = "EXACT",
|
|
1252
964
|
) -> None:
|
|
1253
965
|
"""Cut an intersection into faces
|
|
1254
966
|
|
|
1255
|
-
:type execution_context: int | str | None
|
|
1256
|
-
:type undo: bool | None
|
|
1257
967
|
:param mode: Source
|
|
1258
968
|
|
|
1259
969
|
SELECT
|
|
@@ -1261,7 +971,6 @@ def intersect(
|
|
|
1261
971
|
|
|
1262
972
|
SELECT_UNSELECT
|
|
1263
973
|
Selected/Unselected -- Intersect selected with unselected faces.
|
|
1264
|
-
:type mode: typing.Literal['SELECT','SELECT_UNSELECT'] | None
|
|
1265
974
|
:param separate_mode: Separate Mode
|
|
1266
975
|
|
|
1267
976
|
ALL
|
|
@@ -1272,17 +981,14 @@ def intersect(
|
|
|
1272
981
|
|
|
1273
982
|
NONE
|
|
1274
983
|
Merge -- Merge all geometry from the intersection.
|
|
1275
|
-
:type separate_mode: typing.Literal['ALL','CUT','NONE'] | None
|
|
1276
984
|
:param threshold: Merge Threshold
|
|
1277
|
-
:type threshold: float | None
|
|
1278
985
|
:param solver: Solver, Which Intersect solver to use
|
|
1279
986
|
|
|
1280
|
-
|
|
987
|
+
FLOAT
|
|
1281
988
|
Float -- Simple solver with good performance, without support for overlapping geometry.
|
|
1282
989
|
|
|
1283
990
|
EXACT
|
|
1284
991
|
Exact -- Slower solver with the best results for coplanar faces.
|
|
1285
|
-
:type solver: typing.Literal['FAST','EXACT'] | None
|
|
1286
992
|
"""
|
|
1287
993
|
|
|
1288
994
|
def intersect_boolean(
|
|
@@ -1294,28 +1000,21 @@ def intersect_boolean(
|
|
|
1294
1000
|
use_swap: bool | None = False,
|
|
1295
1001
|
use_self: bool | None = False,
|
|
1296
1002
|
threshold: float | None = 1e-06,
|
|
1297
|
-
solver: typing.Literal["
|
|
1003
|
+
solver: typing.Literal["FLOAT", "EXACT"] | None = "EXACT",
|
|
1298
1004
|
) -> None:
|
|
1299
1005
|
"""Cut solid geometry from selected to unselected
|
|
1300
1006
|
|
|
1301
|
-
:type execution_context: int | str | None
|
|
1302
|
-
:type undo: bool | None
|
|
1303
1007
|
:param operation: Boolean Operation, Which boolean operation to apply
|
|
1304
|
-
:type operation: typing.Literal['INTERSECT','UNION','DIFFERENCE'] | None
|
|
1305
1008
|
:param use_swap: Swap, Use with difference intersection to swap which side is kept
|
|
1306
|
-
:type use_swap: bool | None
|
|
1307
1009
|
:param use_self: Self Intersection, Do self-union or self-intersection
|
|
1308
|
-
:type use_self: bool | None
|
|
1309
1010
|
:param threshold: Merge Threshold
|
|
1310
|
-
:type threshold: float | None
|
|
1311
1011
|
:param solver: Solver, Which Boolean solver to use
|
|
1312
1012
|
|
|
1313
|
-
|
|
1314
|
-
|
|
1013
|
+
FLOAT
|
|
1014
|
+
Float -- Faster solver, some limitations.
|
|
1315
1015
|
|
|
1316
1016
|
EXACT
|
|
1317
1017
|
Exact -- Exact solver, slower, handles more cases.
|
|
1318
|
-
:type solver: typing.Literal['FAST','EXACT'] | None
|
|
1319
1018
|
"""
|
|
1320
1019
|
|
|
1321
1020
|
def knife_project(
|
|
@@ -1327,10 +1026,7 @@ def knife_project(
|
|
|
1327
1026
|
) -> None:
|
|
1328
1027
|
"""Use other objects outlines and boundaries to project knife cuts
|
|
1329
1028
|
|
|
1330
|
-
:type execution_context: int | str | None
|
|
1331
|
-
:type undo: bool | None
|
|
1332
1029
|
:param cut_through: Cut Through, Cut through all faces, not just visible ones
|
|
1333
|
-
:type cut_through: bool | None
|
|
1334
1030
|
"""
|
|
1335
1031
|
|
|
1336
1032
|
def knife_tool(
|
|
@@ -1349,14 +1045,9 @@ def knife_tool(
|
|
|
1349
1045
|
) -> None:
|
|
1350
1046
|
"""Cut new topology
|
|
1351
1047
|
|
|
1352
|
-
:type execution_context: int | str | None
|
|
1353
|
-
:type undo: bool | None
|
|
1354
1048
|
:param use_occlude_geometry: Occlude Geometry, Only cut the front most geometry
|
|
1355
|
-
:type use_occlude_geometry: bool | None
|
|
1356
1049
|
:param only_selected: Only Selected, Only cut selected geometry
|
|
1357
|
-
:type only_selected: bool | None
|
|
1358
1050
|
:param xray: X-Ray, Show cuts hidden by geometry
|
|
1359
|
-
:type xray: bool | None
|
|
1360
1051
|
:param visible_measurements: Measurements, Visible distance and angle measurements
|
|
1361
1052
|
|
|
1362
1053
|
NONE
|
|
@@ -1370,7 +1061,6 @@ def knife_tool(
|
|
|
1370
1061
|
|
|
1371
1062
|
ANGLE
|
|
1372
1063
|
Angle -- Show just angle measurements.
|
|
1373
|
-
:type visible_measurements: typing.Literal['NONE','BOTH','DISTANCE','ANGLE'] | None
|
|
1374
1064
|
:param angle_snapping: Angle Snapping, Angle snapping mode
|
|
1375
1065
|
|
|
1376
1066
|
NONE
|
|
@@ -1381,11 +1071,8 @@ def knife_tool(
|
|
|
1381
1071
|
|
|
1382
1072
|
RELATIVE
|
|
1383
1073
|
Relative -- Angle snapping relative to the previous cut edge.
|
|
1384
|
-
:type angle_snapping: typing.Literal['NONE','SCREEN','RELATIVE'] | None
|
|
1385
1074
|
:param angle_snapping_increment: Angle Snap Increment, The angle snap increment used when in constrained angle mode
|
|
1386
|
-
:type angle_snapping_increment: float | None
|
|
1387
1075
|
:param wait_for_input: Wait for Input
|
|
1388
|
-
:type wait_for_input: bool | None
|
|
1389
1076
|
"""
|
|
1390
1077
|
|
|
1391
1078
|
def loop_multi_select(
|
|
@@ -1397,10 +1084,7 @@ def loop_multi_select(
|
|
|
1397
1084
|
) -> None:
|
|
1398
1085
|
"""Select a loop of connected edges by connection type
|
|
1399
1086
|
|
|
1400
|
-
:type execution_context: int | str | None
|
|
1401
|
-
:type undo: bool | None
|
|
1402
1087
|
:param ring: Ring
|
|
1403
|
-
:type ring: bool | None
|
|
1404
1088
|
"""
|
|
1405
1089
|
|
|
1406
1090
|
def loop_select(
|
|
@@ -1415,16 +1099,10 @@ def loop_select(
|
|
|
1415
1099
|
) -> None:
|
|
1416
1100
|
"""Select a loop of connected edges
|
|
1417
1101
|
|
|
1418
|
-
:type execution_context: int | str | None
|
|
1419
|
-
:type undo: bool | None
|
|
1420
1102
|
:param extend: Extend Select, Extend the selection
|
|
1421
|
-
:type extend: bool | None
|
|
1422
1103
|
:param deselect: Deselect, Remove from the selection
|
|
1423
|
-
:type deselect: bool | None
|
|
1424
1104
|
:param toggle: Toggle Select, Toggle the selection
|
|
1425
|
-
:type toggle: bool | None
|
|
1426
1105
|
:param ring: Select Ring, Select ring
|
|
1427
|
-
:type ring: bool | None
|
|
1428
1106
|
"""
|
|
1429
1107
|
|
|
1430
1108
|
def loop_to_region(
|
|
@@ -1436,10 +1114,7 @@ def loop_to_region(
|
|
|
1436
1114
|
) -> None:
|
|
1437
1115
|
"""Select region of faces inside of a selected loop of edges
|
|
1438
1116
|
|
|
1439
|
-
:type execution_context: int | str | None
|
|
1440
|
-
:type undo: bool | None
|
|
1441
1117
|
:param select_bigger: Select Bigger, Select bigger regions instead of smaller ones
|
|
1442
|
-
:type select_bigger: bool | None
|
|
1443
1118
|
"""
|
|
1444
1119
|
|
|
1445
1120
|
def loopcut(
|
|
@@ -1461,19 +1136,11 @@ def loopcut(
|
|
|
1461
1136
|
) -> None:
|
|
1462
1137
|
"""Add a new loop between existing loops
|
|
1463
1138
|
|
|
1464
|
-
:type execution_context: int | str | None
|
|
1465
|
-
:type undo: bool | None
|
|
1466
1139
|
:param number_cuts: Number of Cuts
|
|
1467
|
-
:type number_cuts: int | None
|
|
1468
1140
|
:param smoothness: Smoothness, Smoothness factor
|
|
1469
|
-
:type smoothness: float | None
|
|
1470
1141
|
:param falloff: Falloff, Falloff type of the feather
|
|
1471
|
-
:type falloff: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
1472
1142
|
:param object_index: Object Index
|
|
1473
|
-
:type object_index: int | None
|
|
1474
1143
|
:param edge_index: Edge Index
|
|
1475
|
-
:type edge_index: int | None
|
|
1476
|
-
:type mesh_select_mode_init: collections.abc.Iterable[bool] | None
|
|
1477
1144
|
"""
|
|
1478
1145
|
|
|
1479
1146
|
def loopcut_slide(
|
|
@@ -1486,12 +1153,8 @@ def loopcut_slide(
|
|
|
1486
1153
|
) -> None:
|
|
1487
1154
|
"""Cut mesh loop and slide it
|
|
1488
1155
|
|
|
1489
|
-
:type execution_context: int | str | None
|
|
1490
|
-
:type undo: bool | None
|
|
1491
1156
|
:param MESH_OT_loopcut: Loop Cut, Add a new loop between existing loops
|
|
1492
|
-
:type MESH_OT_loopcut: loopcut | None
|
|
1493
1157
|
:param TRANSFORM_OT_edge_slide: Edge Slide, Slide an edge loop along a mesh
|
|
1494
|
-
:type TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None
|
|
1495
1158
|
"""
|
|
1496
1159
|
|
|
1497
1160
|
def mark_freestyle_edge(
|
|
@@ -1503,10 +1166,7 @@ def mark_freestyle_edge(
|
|
|
1503
1166
|
) -> None:
|
|
1504
1167
|
"""(Un)mark selected edges as Freestyle feature edges
|
|
1505
1168
|
|
|
1506
|
-
:type execution_context: int | str | None
|
|
1507
|
-
:type undo: bool | None
|
|
1508
1169
|
:param clear: Clear
|
|
1509
|
-
:type clear: bool | None
|
|
1510
1170
|
"""
|
|
1511
1171
|
|
|
1512
1172
|
def mark_freestyle_face(
|
|
@@ -1518,10 +1178,7 @@ def mark_freestyle_face(
|
|
|
1518
1178
|
) -> None:
|
|
1519
1179
|
"""(Un)mark selected faces for exclusion from Freestyle feature edge detection
|
|
1520
1180
|
|
|
1521
|
-
:type execution_context: int | str | None
|
|
1522
|
-
:type undo: bool | None
|
|
1523
1181
|
:param clear: Clear
|
|
1524
|
-
:type clear: bool | None
|
|
1525
1182
|
"""
|
|
1526
1183
|
|
|
1527
1184
|
def mark_seam(
|
|
@@ -1533,10 +1190,7 @@ def mark_seam(
|
|
|
1533
1190
|
) -> None:
|
|
1534
1191
|
"""(Un)mark selected edges as a seam
|
|
1535
1192
|
|
|
1536
|
-
:type execution_context: int | str | None
|
|
1537
|
-
:type undo: bool | None
|
|
1538
1193
|
:param clear: Clear
|
|
1539
|
-
:type clear: bool | None
|
|
1540
1194
|
"""
|
|
1541
1195
|
|
|
1542
1196
|
def mark_sharp(
|
|
@@ -1549,12 +1203,8 @@ def mark_sharp(
|
|
|
1549
1203
|
) -> None:
|
|
1550
1204
|
"""(Un)mark selected edges as sharp
|
|
1551
1205
|
|
|
1552
|
-
:type execution_context: int | str | None
|
|
1553
|
-
:type undo: bool | None
|
|
1554
1206
|
:param clear: Clear
|
|
1555
|
-
:type clear: bool | None
|
|
1556
1207
|
:param use_verts: Vertices, Consider vertices instead of edges to select which edges to (un)tag as sharp
|
|
1557
|
-
:type use_verts: bool | None
|
|
1558
1208
|
"""
|
|
1559
1209
|
|
|
1560
1210
|
def merge(
|
|
@@ -1568,22 +1218,16 @@ def merge(
|
|
|
1568
1218
|
) -> None:
|
|
1569
1219
|
"""Merge selected vertices
|
|
1570
1220
|
|
|
1571
|
-
:type execution_context: int | str | None
|
|
1572
|
-
:type undo: bool | None
|
|
1573
1221
|
:param type: Type, Merge method to use
|
|
1574
|
-
:type type: typing.Literal['CENTER','CURSOR','COLLAPSE','FIRST','LAST'] | None
|
|
1575
1222
|
:param uvs: UVs, Move UVs according to merge
|
|
1576
|
-
:type uvs: bool | None
|
|
1577
1223
|
"""
|
|
1578
1224
|
|
|
1579
1225
|
def merge_normals(
|
|
1580
|
-
execution_context: int | str | None = None,
|
|
1226
|
+
execution_context: int | str | None = None,
|
|
1227
|
+
undo: bool | None = None,
|
|
1228
|
+
/,
|
|
1581
1229
|
) -> None:
|
|
1582
|
-
"""Merge custom normals of selected vertices
|
|
1583
|
-
|
|
1584
|
-
:type execution_context: int | str | None
|
|
1585
|
-
:type undo: bool | None
|
|
1586
|
-
"""
|
|
1230
|
+
"""Merge custom normals of selected vertices"""
|
|
1587
1231
|
|
|
1588
1232
|
def mod_weighted_strength(
|
|
1589
1233
|
execution_context: int | str | None = None,
|
|
@@ -1595,12 +1239,8 @@ def mod_weighted_strength(
|
|
|
1595
1239
|
) -> None:
|
|
1596
1240
|
"""Set/Get strength of face (used in Weighted Normal modifier)
|
|
1597
1241
|
|
|
1598
|
-
:type execution_context: int | str | None
|
|
1599
|
-
:type undo: bool | None
|
|
1600
1242
|
:param set: Set Value, Set value of faces
|
|
1601
|
-
:type set: bool | None
|
|
1602
1243
|
:param face_strength: Face Strength, Strength to use for assigning or selecting face influence for weighted normal modifier
|
|
1603
|
-
:type face_strength: typing.Literal['WEAK','MEDIUM','STRONG'] | None
|
|
1604
1244
|
"""
|
|
1605
1245
|
|
|
1606
1246
|
def normals_make_consistent(
|
|
@@ -1612,10 +1252,7 @@ def normals_make_consistent(
|
|
|
1612
1252
|
) -> None:
|
|
1613
1253
|
"""Make face and vertex normals point either outside or inside the mesh
|
|
1614
1254
|
|
|
1615
|
-
:type execution_context: int | str | None
|
|
1616
|
-
:type undo: bool | None
|
|
1617
1255
|
:param inside: Inside
|
|
1618
|
-
:type inside: bool | None
|
|
1619
1256
|
"""
|
|
1620
1257
|
|
|
1621
1258
|
def normals_tools(
|
|
@@ -1628,8 +1265,6 @@ def normals_tools(
|
|
|
1628
1265
|
) -> None:
|
|
1629
1266
|
"""Custom normals tools using Normal Vector of UI
|
|
1630
1267
|
|
|
1631
|
-
:type execution_context: int | str | None
|
|
1632
|
-
:type undo: bool | None
|
|
1633
1268
|
:param mode: Mode, Mode of tools taking input from interface
|
|
1634
1269
|
|
|
1635
1270
|
COPY
|
|
@@ -1646,9 +1281,7 @@ def normals_tools(
|
|
|
1646
1281
|
|
|
1647
1282
|
RESET
|
|
1648
1283
|
Reset Normal -- Reset the internal clipboard and/or normal of selected element.
|
|
1649
|
-
:type mode: typing.Literal['COPY','PASTE','ADD','MULTIPLY','RESET'] | None
|
|
1650
1284
|
:param absolute: Absolute Coordinates, Copy Absolute coordinates of Normal vector
|
|
1651
|
-
:type absolute: bool | None
|
|
1652
1285
|
"""
|
|
1653
1286
|
|
|
1654
1287
|
def offset_edge_loops(
|
|
@@ -1660,10 +1293,7 @@ def offset_edge_loops(
|
|
|
1660
1293
|
) -> None:
|
|
1661
1294
|
"""Create offset edge loop from the current selection
|
|
1662
1295
|
|
|
1663
|
-
:type execution_context: int | str | None
|
|
1664
|
-
:type undo: bool | None
|
|
1665
1296
|
:param use_cap_endpoint: Cap Endpoint, Extend loop around end-points
|
|
1666
|
-
:type use_cap_endpoint: bool | None
|
|
1667
1297
|
"""
|
|
1668
1298
|
|
|
1669
1299
|
def offset_edge_loops_slide(
|
|
@@ -1676,12 +1306,8 @@ def offset_edge_loops_slide(
|
|
|
1676
1306
|
) -> None:
|
|
1677
1307
|
"""Offset edge loop slide
|
|
1678
1308
|
|
|
1679
|
-
:type execution_context: int | str | None
|
|
1680
|
-
:type undo: bool | None
|
|
1681
1309
|
:param MESH_OT_offset_edge_loops: Offset Edge Loop, Create offset edge loop from the current selection
|
|
1682
|
-
:type MESH_OT_offset_edge_loops: offset_edge_loops | None
|
|
1683
1310
|
:param TRANSFORM_OT_edge_slide: Edge Slide, Slide an edge loop along a mesh
|
|
1684
|
-
:type TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None
|
|
1685
1311
|
"""
|
|
1686
1312
|
|
|
1687
1313
|
def point_normals(
|
|
@@ -1702,8 +1328,6 @@ def point_normals(
|
|
|
1702
1328
|
) -> None:
|
|
1703
1329
|
"""Point selected custom normals to specified Target
|
|
1704
1330
|
|
|
1705
|
-
:type execution_context: int | str | None
|
|
1706
|
-
:type undo: bool | None
|
|
1707
1331
|
:param mode: Mode, How to define coordinates to point custom normals to
|
|
1708
1332
|
|
|
1709
1333
|
COORDINATES
|
|
@@ -1711,17 +1335,11 @@ def point_normals(
|
|
|
1711
1335
|
|
|
1712
1336
|
MOUSE
|
|
1713
1337
|
Mouse -- Follow mouse cursor.
|
|
1714
|
-
:type mode: typing.Literal['COORDINATES','MOUSE'] | None
|
|
1715
1338
|
:param invert: Invert, Invert affected normals
|
|
1716
|
-
:type invert: bool | None
|
|
1717
1339
|
:param align: Align, Make all affected normals parallel
|
|
1718
|
-
:type align: bool | None
|
|
1719
1340
|
:param target_location: Target, Target location to which normals will point
|
|
1720
|
-
:type target_location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1721
1341
|
:param spherize: Spherize, Interpolate between original and new normals
|
|
1722
|
-
:type spherize: bool | None
|
|
1723
1342
|
:param spherize_strength: Spherize Strength, Ratio of spherized normal to original normal
|
|
1724
|
-
:type spherize_strength: float | None
|
|
1725
1343
|
"""
|
|
1726
1344
|
|
|
1727
1345
|
def poke(
|
|
@@ -1736,12 +1354,8 @@ def poke(
|
|
|
1736
1354
|
) -> None:
|
|
1737
1355
|
"""Split a face into a fan
|
|
1738
1356
|
|
|
1739
|
-
:type execution_context: int | str | None
|
|
1740
|
-
:type undo: bool | None
|
|
1741
1357
|
:param offset: Poke Offset, Poke Offset
|
|
1742
|
-
:type offset: float | None
|
|
1743
1358
|
:param use_relative_offset: Offset Relative, Scale the offset by surrounding geometry
|
|
1744
|
-
:type use_relative_offset: bool | None
|
|
1745
1359
|
:param center_mode: Poke Center, Poke face center calculation
|
|
1746
1360
|
|
|
1747
1361
|
MEDIAN_WEIGHTED
|
|
@@ -1752,7 +1366,6 @@ def poke(
|
|
|
1752
1366
|
|
|
1753
1367
|
BOUNDS
|
|
1754
1368
|
Bounds -- Face bounds center.
|
|
1755
|
-
:type center_mode: typing.Literal['MEDIAN_WEIGHTED','MEDIAN','BOUNDS'] | None
|
|
1756
1369
|
"""
|
|
1757
1370
|
|
|
1758
1371
|
def polybuild_delete_at_cursor(
|
|
@@ -1772,34 +1385,22 @@ def polybuild_delete_at_cursor(
|
|
|
1772
1385
|
) -> None:
|
|
1773
1386
|
"""Undocumented, consider contributing.
|
|
1774
1387
|
|
|
1775
|
-
:type execution_context: int | str | None
|
|
1776
|
-
:type undo: bool | None
|
|
1777
1388
|
:param mirror: Mirror Editing
|
|
1778
|
-
:type mirror: bool | None
|
|
1779
1389
|
:param use_proportional_edit: Proportional Editing
|
|
1780
|
-
:type use_proportional_edit: bool | None
|
|
1781
1390
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1782
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1783
1391
|
:param proportional_size: Proportional Size
|
|
1784
|
-
:type proportional_size: float | None
|
|
1785
1392
|
:param use_proportional_connected: Connected
|
|
1786
|
-
:type use_proportional_connected: bool | None
|
|
1787
1393
|
:param use_proportional_projected: Projected (2D)
|
|
1788
|
-
:type use_proportional_projected: bool | None
|
|
1789
1394
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1790
|
-
:type release_confirm: bool | None
|
|
1791
1395
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1792
|
-
:type use_accurate: bool | None
|
|
1793
1396
|
"""
|
|
1794
1397
|
|
|
1795
1398
|
def polybuild_dissolve_at_cursor(
|
|
1796
|
-
execution_context: int | str | None = None,
|
|
1399
|
+
execution_context: int | str | None = None,
|
|
1400
|
+
undo: bool | None = None,
|
|
1401
|
+
/,
|
|
1797
1402
|
) -> None:
|
|
1798
|
-
"""Undocumented, consider contributing.
|
|
1799
|
-
|
|
1800
|
-
:type execution_context: int | str | None
|
|
1801
|
-
:type undo: bool | None
|
|
1802
|
-
"""
|
|
1403
|
+
"""Undocumented, consider contributing."""
|
|
1803
1404
|
|
|
1804
1405
|
def polybuild_extrude_at_cursor_move(
|
|
1805
1406
|
execution_context: int | str | None = None,
|
|
@@ -1812,14 +1413,9 @@ def polybuild_extrude_at_cursor_move(
|
|
|
1812
1413
|
) -> None:
|
|
1813
1414
|
"""Undocumented, consider contributing.
|
|
1814
1415
|
|
|
1815
|
-
:type execution_context: int | str | None
|
|
1816
|
-
:type undo: bool | None
|
|
1817
1416
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
1818
|
-
:type MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None
|
|
1819
1417
|
:param MESH_OT_extrude_edges_indiv: Extrude Only Edges, Extrude individual edges only
|
|
1820
|
-
:type MESH_OT_extrude_edges_indiv: extrude_edges_indiv | None
|
|
1821
1418
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1822
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1823
1419
|
"""
|
|
1824
1420
|
|
|
1825
1421
|
def polybuild_face_at_cursor(
|
|
@@ -1840,26 +1436,15 @@ def polybuild_face_at_cursor(
|
|
|
1840
1436
|
) -> None:
|
|
1841
1437
|
"""Undocumented, consider contributing.
|
|
1842
1438
|
|
|
1843
|
-
:type execution_context: int | str | None
|
|
1844
|
-
:type undo: bool | None
|
|
1845
1439
|
:param create_quads: Create Quads, Automatically split edges in triangles to maintain quad topology
|
|
1846
|
-
:type create_quads: bool | None
|
|
1847
1440
|
:param mirror: Mirror Editing
|
|
1848
|
-
:type mirror: bool | None
|
|
1849
1441
|
:param use_proportional_edit: Proportional Editing
|
|
1850
|
-
:type use_proportional_edit: bool | None
|
|
1851
1442
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1852
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1853
1443
|
:param proportional_size: Proportional Size
|
|
1854
|
-
:type proportional_size: float | None
|
|
1855
1444
|
:param use_proportional_connected: Connected
|
|
1856
|
-
:type use_proportional_connected: bool | None
|
|
1857
1445
|
:param use_proportional_projected: Projected (2D)
|
|
1858
|
-
:type use_proportional_projected: bool | None
|
|
1859
1446
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1860
|
-
:type release_confirm: bool | None
|
|
1861
1447
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1862
|
-
:type use_accurate: bool | None
|
|
1863
1448
|
"""
|
|
1864
1449
|
|
|
1865
1450
|
def polybuild_face_at_cursor_move(
|
|
@@ -1872,12 +1457,8 @@ def polybuild_face_at_cursor_move(
|
|
|
1872
1457
|
) -> None:
|
|
1873
1458
|
"""Undocumented, consider contributing.
|
|
1874
1459
|
|
|
1875
|
-
:type execution_context: int | str | None
|
|
1876
|
-
:type undo: bool | None
|
|
1877
1460
|
:param MESH_OT_polybuild_face_at_cursor: Poly Build Face at Cursor
|
|
1878
|
-
:type MESH_OT_polybuild_face_at_cursor: polybuild_face_at_cursor | None
|
|
1879
1461
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1880
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1881
1462
|
"""
|
|
1882
1463
|
|
|
1883
1464
|
def polybuild_split_at_cursor(
|
|
@@ -1897,24 +1478,14 @@ def polybuild_split_at_cursor(
|
|
|
1897
1478
|
) -> None:
|
|
1898
1479
|
"""Undocumented, consider contributing.
|
|
1899
1480
|
|
|
1900
|
-
:type execution_context: int | str | None
|
|
1901
|
-
:type undo: bool | None
|
|
1902
1481
|
:param mirror: Mirror Editing
|
|
1903
|
-
:type mirror: bool | None
|
|
1904
1482
|
:param use_proportional_edit: Proportional Editing
|
|
1905
|
-
:type use_proportional_edit: bool | None
|
|
1906
1483
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1907
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1908
1484
|
:param proportional_size: Proportional Size
|
|
1909
|
-
:type proportional_size: float | None
|
|
1910
1485
|
:param use_proportional_connected: Connected
|
|
1911
|
-
:type use_proportional_connected: bool | None
|
|
1912
1486
|
:param use_proportional_projected: Projected (2D)
|
|
1913
|
-
:type use_proportional_projected: bool | None
|
|
1914
1487
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1915
|
-
:type release_confirm: bool | None
|
|
1916
1488
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1917
|
-
:type use_accurate: bool | None
|
|
1918
1489
|
"""
|
|
1919
1490
|
|
|
1920
1491
|
def polybuild_split_at_cursor_move(
|
|
@@ -1927,12 +1498,8 @@ def polybuild_split_at_cursor_move(
|
|
|
1927
1498
|
) -> None:
|
|
1928
1499
|
"""Undocumented, consider contributing.
|
|
1929
1500
|
|
|
1930
|
-
:type execution_context: int | str | None
|
|
1931
|
-
:type undo: bool | None
|
|
1932
1501
|
:param MESH_OT_polybuild_split_at_cursor: Poly Build Split at Cursor
|
|
1933
|
-
:type MESH_OT_polybuild_split_at_cursor: polybuild_split_at_cursor | None
|
|
1934
1502
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1935
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1936
1503
|
"""
|
|
1937
1504
|
|
|
1938
1505
|
def polybuild_transform_at_cursor(
|
|
@@ -1952,24 +1519,14 @@ def polybuild_transform_at_cursor(
|
|
|
1952
1519
|
) -> None:
|
|
1953
1520
|
"""Undocumented, consider contributing.
|
|
1954
1521
|
|
|
1955
|
-
:type execution_context: int | str | None
|
|
1956
|
-
:type undo: bool | None
|
|
1957
1522
|
:param mirror: Mirror Editing
|
|
1958
|
-
:type mirror: bool | None
|
|
1959
1523
|
:param use_proportional_edit: Proportional Editing
|
|
1960
|
-
:type use_proportional_edit: bool | None
|
|
1961
1524
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
1962
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
1963
1525
|
:param proportional_size: Proportional Size
|
|
1964
|
-
:type proportional_size: float | None
|
|
1965
1526
|
:param use_proportional_connected: Connected
|
|
1966
|
-
:type use_proportional_connected: bool | None
|
|
1967
1527
|
:param use_proportional_projected: Projected (2D)
|
|
1968
|
-
:type use_proportional_projected: bool | None
|
|
1969
1528
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
1970
|
-
:type release_confirm: bool | None
|
|
1971
1529
|
:param use_accurate: Accurate, Use accurate transformation
|
|
1972
|
-
:type use_accurate: bool | None
|
|
1973
1530
|
"""
|
|
1974
1531
|
|
|
1975
1532
|
def polybuild_transform_at_cursor_move(
|
|
@@ -1982,12 +1539,8 @@ def polybuild_transform_at_cursor_move(
|
|
|
1982
1539
|
) -> None:
|
|
1983
1540
|
"""Undocumented, consider contributing.
|
|
1984
1541
|
|
|
1985
|
-
:type execution_context: int | str | None
|
|
1986
|
-
:type undo: bool | None
|
|
1987
1542
|
:param MESH_OT_polybuild_transform_at_cursor: Poly Build Transform at Cursor
|
|
1988
|
-
:type MESH_OT_polybuild_transform_at_cursor: polybuild_transform_at_cursor | None
|
|
1989
1543
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1990
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1991
1544
|
"""
|
|
1992
1545
|
|
|
1993
1546
|
def primitive_circle_add(
|
|
@@ -2015,27 +1568,20 @@ def primitive_circle_add(
|
|
|
2015
1568
|
) -> None:
|
|
2016
1569
|
"""Construct a circle mesh
|
|
2017
1570
|
|
|
2018
|
-
:type execution_context: int | str | None
|
|
2019
|
-
:type undo: bool | None
|
|
2020
1571
|
:param vertices: Vertices
|
|
2021
|
-
:type vertices: int | None
|
|
2022
1572
|
:param radius: Radius
|
|
2023
|
-
:type radius: float | None
|
|
2024
1573
|
:param fill_type: Fill Type
|
|
2025
1574
|
|
|
2026
1575
|
NOTHING
|
|
2027
|
-
Nothing --
|
|
1576
|
+
Nothing -- Dont fill at all.
|
|
2028
1577
|
|
|
2029
1578
|
NGON
|
|
2030
1579
|
N-Gon -- Use n-gons.
|
|
2031
1580
|
|
|
2032
1581
|
TRIFAN
|
|
2033
1582
|
Triangle Fan -- Use triangle fans.
|
|
2034
|
-
:type fill_type: typing.Literal['NOTHING','NGON','TRIFAN'] | None
|
|
2035
1583
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2036
|
-
:type calc_uvs: bool | None
|
|
2037
1584
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2038
|
-
:type enter_editmode: bool | None
|
|
2039
1585
|
:param align: Align, The alignment of the new object
|
|
2040
1586
|
|
|
2041
1587
|
WORLD
|
|
@@ -2046,13 +1592,9 @@ def primitive_circle_add(
|
|
|
2046
1592
|
|
|
2047
1593
|
CURSOR
|
|
2048
1594
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2049
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2050
1595
|
:param location: Location, Location for the newly added object
|
|
2051
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2052
1596
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2053
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2054
1597
|
:param scale: Scale, Scale for the newly added object
|
|
2055
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2056
1598
|
"""
|
|
2057
1599
|
|
|
2058
1600
|
def primitive_cone_add(
|
|
@@ -2082,31 +1624,22 @@ def primitive_cone_add(
|
|
|
2082
1624
|
) -> None:
|
|
2083
1625
|
"""Construct a conic mesh
|
|
2084
1626
|
|
|
2085
|
-
:type execution_context: int | str | None
|
|
2086
|
-
:type undo: bool | None
|
|
2087
1627
|
:param vertices: Vertices
|
|
2088
|
-
:type vertices: int | None
|
|
2089
1628
|
:param radius1: Radius 1
|
|
2090
|
-
:type radius1: float | None
|
|
2091
1629
|
:param radius2: Radius 2
|
|
2092
|
-
:type radius2: float | None
|
|
2093
1630
|
:param depth: Depth
|
|
2094
|
-
:type depth: float | None
|
|
2095
1631
|
:param end_fill_type: Base Fill Type
|
|
2096
1632
|
|
|
2097
1633
|
NOTHING
|
|
2098
|
-
Nothing --
|
|
1634
|
+
Nothing -- Dont fill at all.
|
|
2099
1635
|
|
|
2100
1636
|
NGON
|
|
2101
1637
|
N-Gon -- Use n-gons.
|
|
2102
1638
|
|
|
2103
1639
|
TRIFAN
|
|
2104
1640
|
Triangle Fan -- Use triangle fans.
|
|
2105
|
-
:type end_fill_type: typing.Literal['NOTHING','NGON','TRIFAN'] | None
|
|
2106
1641
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2107
|
-
:type calc_uvs: bool | None
|
|
2108
1642
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2109
|
-
:type enter_editmode: bool | None
|
|
2110
1643
|
:param align: Align, The alignment of the new object
|
|
2111
1644
|
|
|
2112
1645
|
WORLD
|
|
@@ -2117,13 +1650,9 @@ def primitive_cone_add(
|
|
|
2117
1650
|
|
|
2118
1651
|
CURSOR
|
|
2119
1652
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2120
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2121
1653
|
:param location: Location, Location for the newly added object
|
|
2122
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2123
1654
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2124
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2125
1655
|
:param scale: Scale, Scale for the newly added object
|
|
2126
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2127
1656
|
"""
|
|
2128
1657
|
|
|
2129
1658
|
def primitive_cube_add(
|
|
@@ -2149,14 +1678,9 @@ def primitive_cube_add(
|
|
|
2149
1678
|
) -> None:
|
|
2150
1679
|
"""Construct a cube mesh that consists of six square faces
|
|
2151
1680
|
|
|
2152
|
-
:type execution_context: int | str | None
|
|
2153
|
-
:type undo: bool | None
|
|
2154
1681
|
:param size: Size
|
|
2155
|
-
:type size: float | None
|
|
2156
1682
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2157
|
-
:type calc_uvs: bool | None
|
|
2158
1683
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2159
|
-
:type enter_editmode: bool | None
|
|
2160
1684
|
:param align: Align, The alignment of the new object
|
|
2161
1685
|
|
|
2162
1686
|
WORLD
|
|
@@ -2167,13 +1691,9 @@ def primitive_cube_add(
|
|
|
2167
1691
|
|
|
2168
1692
|
CURSOR
|
|
2169
1693
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2170
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2171
1694
|
:param location: Location, Location for the newly added object
|
|
2172
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2173
1695
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2174
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2175
1696
|
:param scale: Scale, Scale for the newly added object
|
|
2176
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2177
1697
|
"""
|
|
2178
1698
|
|
|
2179
1699
|
def primitive_cube_add_gizmo(
|
|
@@ -2206,12 +1726,8 @@ def primitive_cube_add_gizmo(
|
|
|
2206
1726
|
) -> None:
|
|
2207
1727
|
"""Construct a cube mesh
|
|
2208
1728
|
|
|
2209
|
-
:type execution_context: int | str | None
|
|
2210
|
-
:type undo: bool | None
|
|
2211
1729
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2212
|
-
:type calc_uvs: bool | None
|
|
2213
1730
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2214
|
-
:type enter_editmode: bool | None
|
|
2215
1731
|
:param align: Align, The alignment of the new object
|
|
2216
1732
|
|
|
2217
1733
|
WORLD
|
|
@@ -2222,15 +1738,10 @@ def primitive_cube_add_gizmo(
|
|
|
2222
1738
|
|
|
2223
1739
|
CURSOR
|
|
2224
1740
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2225
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2226
1741
|
:param location: Location, Location for the newly added object
|
|
2227
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2228
1742
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2229
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2230
1743
|
:param scale: Scale, Scale for the newly added object
|
|
2231
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2232
1744
|
:param matrix: Matrix
|
|
2233
|
-
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix | None
|
|
2234
1745
|
"""
|
|
2235
1746
|
|
|
2236
1747
|
def primitive_cylinder_add(
|
|
@@ -2259,29 +1770,21 @@ def primitive_cylinder_add(
|
|
|
2259
1770
|
) -> None:
|
|
2260
1771
|
"""Construct a cylinder mesh
|
|
2261
1772
|
|
|
2262
|
-
:type execution_context: int | str | None
|
|
2263
|
-
:type undo: bool | None
|
|
2264
1773
|
:param vertices: Vertices
|
|
2265
|
-
:type vertices: int | None
|
|
2266
1774
|
:param radius: Radius
|
|
2267
|
-
:type radius: float | None
|
|
2268
1775
|
:param depth: Depth
|
|
2269
|
-
:type depth: float | None
|
|
2270
1776
|
:param end_fill_type: Cap Fill Type
|
|
2271
1777
|
|
|
2272
1778
|
NOTHING
|
|
2273
|
-
Nothing --
|
|
1779
|
+
Nothing -- Dont fill at all.
|
|
2274
1780
|
|
|
2275
1781
|
NGON
|
|
2276
1782
|
N-Gon -- Use n-gons.
|
|
2277
1783
|
|
|
2278
1784
|
TRIFAN
|
|
2279
1785
|
Triangle Fan -- Use triangle fans.
|
|
2280
|
-
:type end_fill_type: typing.Literal['NOTHING','NGON','TRIFAN'] | None
|
|
2281
1786
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2282
|
-
:type calc_uvs: bool | None
|
|
2283
1787
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2284
|
-
:type enter_editmode: bool | None
|
|
2285
1788
|
:param align: Align, The alignment of the new object
|
|
2286
1789
|
|
|
2287
1790
|
WORLD
|
|
@@ -2292,13 +1795,9 @@ def primitive_cylinder_add(
|
|
|
2292
1795
|
|
|
2293
1796
|
CURSOR
|
|
2294
1797
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2295
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2296
1798
|
:param location: Location, Location for the newly added object
|
|
2297
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2298
1799
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2299
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2300
1800
|
:param scale: Scale, Scale for the newly added object
|
|
2301
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2302
1801
|
"""
|
|
2303
1802
|
|
|
2304
1803
|
def primitive_grid_add(
|
|
@@ -2326,18 +1825,11 @@ def primitive_grid_add(
|
|
|
2326
1825
|
) -> None:
|
|
2327
1826
|
"""Construct a subdivided plane mesh
|
|
2328
1827
|
|
|
2329
|
-
:type execution_context: int | str | None
|
|
2330
|
-
:type undo: bool | None
|
|
2331
1828
|
:param x_subdivisions: X Subdivisions
|
|
2332
|
-
:type x_subdivisions: int | None
|
|
2333
1829
|
:param y_subdivisions: Y Subdivisions
|
|
2334
|
-
:type y_subdivisions: int | None
|
|
2335
1830
|
:param size: Size
|
|
2336
|
-
:type size: float | None
|
|
2337
1831
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2338
|
-
:type calc_uvs: bool | None
|
|
2339
1832
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2340
|
-
:type enter_editmode: bool | None
|
|
2341
1833
|
:param align: Align, The alignment of the new object
|
|
2342
1834
|
|
|
2343
1835
|
WORLD
|
|
@@ -2348,13 +1840,9 @@ def primitive_grid_add(
|
|
|
2348
1840
|
|
|
2349
1841
|
CURSOR
|
|
2350
1842
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2351
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2352
1843
|
:param location: Location, Location for the newly added object
|
|
2353
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2354
1844
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2355
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2356
1845
|
:param scale: Scale, Scale for the newly added object
|
|
2357
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2358
1846
|
"""
|
|
2359
1847
|
|
|
2360
1848
|
def primitive_ico_sphere_add(
|
|
@@ -2381,16 +1869,10 @@ def primitive_ico_sphere_add(
|
|
|
2381
1869
|
) -> None:
|
|
2382
1870
|
"""Construct a spherical mesh that consists of equally sized triangles
|
|
2383
1871
|
|
|
2384
|
-
:type execution_context: int | str | None
|
|
2385
|
-
:type undo: bool | None
|
|
2386
1872
|
:param subdivisions: Subdivisions
|
|
2387
|
-
:type subdivisions: int | None
|
|
2388
1873
|
:param radius: Radius
|
|
2389
|
-
:type radius: float | None
|
|
2390
1874
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2391
|
-
:type calc_uvs: bool | None
|
|
2392
1875
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2393
|
-
:type enter_editmode: bool | None
|
|
2394
1876
|
:param align: Align, The alignment of the new object
|
|
2395
1877
|
|
|
2396
1878
|
WORLD
|
|
@@ -2401,13 +1883,9 @@ def primitive_ico_sphere_add(
|
|
|
2401
1883
|
|
|
2402
1884
|
CURSOR
|
|
2403
1885
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2404
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2405
1886
|
:param location: Location, Location for the newly added object
|
|
2406
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2407
1887
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2408
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2409
1888
|
:param scale: Scale, Scale for the newly added object
|
|
2410
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2411
1889
|
"""
|
|
2412
1890
|
|
|
2413
1891
|
def primitive_monkey_add(
|
|
@@ -2433,14 +1911,9 @@ def primitive_monkey_add(
|
|
|
2433
1911
|
) -> None:
|
|
2434
1912
|
"""Construct a Suzanne mesh
|
|
2435
1913
|
|
|
2436
|
-
:type execution_context: int | str | None
|
|
2437
|
-
:type undo: bool | None
|
|
2438
1914
|
:param size: Size
|
|
2439
|
-
:type size: float | None
|
|
2440
1915
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2441
|
-
:type calc_uvs: bool | None
|
|
2442
1916
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2443
|
-
:type enter_editmode: bool | None
|
|
2444
1917
|
:param align: Align, The alignment of the new object
|
|
2445
1918
|
|
|
2446
1919
|
WORLD
|
|
@@ -2451,13 +1924,9 @@ def primitive_monkey_add(
|
|
|
2451
1924
|
|
|
2452
1925
|
CURSOR
|
|
2453
1926
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2454
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2455
1927
|
:param location: Location, Location for the newly added object
|
|
2456
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2457
1928
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2458
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2459
1929
|
:param scale: Scale, Scale for the newly added object
|
|
2460
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2461
1930
|
"""
|
|
2462
1931
|
|
|
2463
1932
|
def primitive_plane_add(
|
|
@@ -2483,14 +1952,9 @@ def primitive_plane_add(
|
|
|
2483
1952
|
) -> None:
|
|
2484
1953
|
"""Construct a filled planar mesh with 4 vertices
|
|
2485
1954
|
|
|
2486
|
-
:type execution_context: int | str | None
|
|
2487
|
-
:type undo: bool | None
|
|
2488
1955
|
:param size: Size
|
|
2489
|
-
:type size: float | None
|
|
2490
1956
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2491
|
-
:type calc_uvs: bool | None
|
|
2492
1957
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2493
|
-
:type enter_editmode: bool | None
|
|
2494
1958
|
:param align: Align, The alignment of the new object
|
|
2495
1959
|
|
|
2496
1960
|
WORLD
|
|
@@ -2501,13 +1965,9 @@ def primitive_plane_add(
|
|
|
2501
1965
|
|
|
2502
1966
|
CURSOR
|
|
2503
1967
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2504
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2505
1968
|
:param location: Location, Location for the newly added object
|
|
2506
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2507
1969
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2508
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2509
1970
|
:param scale: Scale, Scale for the newly added object
|
|
2510
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2511
1971
|
"""
|
|
2512
1972
|
|
|
2513
1973
|
def primitive_torus_add(
|
|
@@ -2537,8 +1997,6 @@ def primitive_torus_add(
|
|
|
2537
1997
|
) -> None:
|
|
2538
1998
|
"""Construct a torus mesh
|
|
2539
1999
|
|
|
2540
|
-
:type execution_context: int | str | None
|
|
2541
|
-
:type undo: bool | None
|
|
2542
2000
|
:param align: Align
|
|
2543
2001
|
|
|
2544
2002
|
WORLD
|
|
@@ -2549,15 +2007,10 @@ def primitive_torus_add(
|
|
|
2549
2007
|
|
|
2550
2008
|
CURSOR
|
|
2551
2009
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2552
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2553
2010
|
:param location: Location
|
|
2554
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2555
2011
|
:param rotation: Rotation
|
|
2556
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2557
2012
|
:param major_segments: Major Segments, Number of segments for the main ring of the torus
|
|
2558
|
-
:type major_segments: int | None
|
|
2559
2013
|
:param minor_segments: Minor Segments, Number of segments for the minor ring of the torus
|
|
2560
|
-
:type minor_segments: int | None
|
|
2561
2014
|
:param mode: Dimensions Mode
|
|
2562
2015
|
|
|
2563
2016
|
MAJOR_MINOR
|
|
@@ -2565,17 +2018,11 @@ def primitive_torus_add(
|
|
|
2565
2018
|
|
|
2566
2019
|
EXT_INT
|
|
2567
2020
|
Exterior/Interior -- Use the exterior/interior radii for torus dimensions.
|
|
2568
|
-
:type mode: typing.Literal['MAJOR_MINOR','EXT_INT'] | None
|
|
2569
2021
|
:param major_radius: Major Radius, Radius from the origin to the center of the cross sections
|
|
2570
|
-
:
|
|
2571
|
-
:param minor_radius: Minor Radius, Radius of the torus' cross section
|
|
2572
|
-
:type minor_radius: float | None
|
|
2022
|
+
:param minor_radius: Minor Radius, Radius of the torus cross section
|
|
2573
2023
|
:param abso_major_rad: Exterior Radius, Total Exterior Radius of the torus
|
|
2574
|
-
:type abso_major_rad: float | None
|
|
2575
2024
|
:param abso_minor_rad: Interior Radius, Total Interior Radius of the torus
|
|
2576
|
-
:type abso_minor_rad: float | None
|
|
2577
2025
|
:param generate_uvs: Generate UVs, Generate a default UV map
|
|
2578
|
-
:type generate_uvs: bool | None
|
|
2579
2026
|
"""
|
|
2580
2027
|
|
|
2581
2028
|
def primitive_uv_sphere_add(
|
|
@@ -2603,18 +2050,11 @@ def primitive_uv_sphere_add(
|
|
|
2603
2050
|
) -> None:
|
|
2604
2051
|
"""Construct a spherical mesh with quad faces, except for triangle faces at the top and bottom
|
|
2605
2052
|
|
|
2606
|
-
:type execution_context: int | str | None
|
|
2607
|
-
:type undo: bool | None
|
|
2608
2053
|
:param segments: Segments
|
|
2609
|
-
:type segments: int | None
|
|
2610
2054
|
:param ring_count: Rings
|
|
2611
|
-
:type ring_count: int | None
|
|
2612
2055
|
:param radius: Radius
|
|
2613
|
-
:type radius: float | None
|
|
2614
2056
|
:param calc_uvs: Generate UVs, Generate a default UV map
|
|
2615
|
-
:type calc_uvs: bool | None
|
|
2616
2057
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
2617
|
-
:type enter_editmode: bool | None
|
|
2618
2058
|
:param align: Align, The alignment of the new object
|
|
2619
2059
|
|
|
2620
2060
|
WORLD
|
|
@@ -2625,13 +2065,9 @@ def primitive_uv_sphere_add(
|
|
|
2625
2065
|
|
|
2626
2066
|
CURSOR
|
|
2627
2067
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
2628
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
2629
2068
|
:param location: Location, Location for the newly added object
|
|
2630
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2631
2069
|
:param rotation: Rotation, Rotation for the newly added object
|
|
2632
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
2633
2070
|
:param scale: Scale, Scale for the newly added object
|
|
2634
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2635
2071
|
"""
|
|
2636
2072
|
|
|
2637
2073
|
def quads_convert_to_tris(
|
|
@@ -2646,22 +2082,16 @@ def quads_convert_to_tris(
|
|
|
2646
2082
|
) -> None:
|
|
2647
2083
|
"""Triangulate selected faces
|
|
2648
2084
|
|
|
2649
|
-
:type execution_context: int | str | None
|
|
2650
|
-
:type undo: bool | None
|
|
2651
2085
|
:param quad_method: Quad Method, Method for splitting the quads into triangles
|
|
2652
|
-
:type quad_method: bpy.stub_internal.rna_enums.ModifierTriangulateQuadMethodItems | None
|
|
2653
2086
|
:param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
|
|
2654
|
-
:type ngon_method: bpy.stub_internal.rna_enums.ModifierTriangulateNgonMethodItems | None
|
|
2655
2087
|
"""
|
|
2656
2088
|
|
|
2657
2089
|
def region_to_loop(
|
|
2658
|
-
execution_context: int | str | None = None,
|
|
2090
|
+
execution_context: int | str | None = None,
|
|
2091
|
+
undo: bool | None = None,
|
|
2092
|
+
/,
|
|
2659
2093
|
) -> None:
|
|
2660
|
-
"""Select boundary edges around the selected faces
|
|
2661
|
-
|
|
2662
|
-
:type execution_context: int | str | None
|
|
2663
|
-
:type undo: bool | None
|
|
2664
|
-
"""
|
|
2094
|
+
"""Select boundary edges around the selected faces"""
|
|
2665
2095
|
|
|
2666
2096
|
def remove_doubles(
|
|
2667
2097
|
execution_context: int | str | None = None,
|
|
@@ -2669,21 +2099,25 @@ def remove_doubles(
|
|
|
2669
2099
|
/,
|
|
2670
2100
|
*,
|
|
2671
2101
|
threshold: float | None = 0.0001,
|
|
2102
|
+
use_centroid: bool | None = True,
|
|
2672
2103
|
use_unselected: bool | None = False,
|
|
2673
2104
|
use_sharp_edge_from_normals: bool | None = False,
|
|
2674
2105
|
) -> None:
|
|
2675
2106
|
"""Merge vertices based on their proximity
|
|
2676
2107
|
|
|
2677
|
-
:type execution_context: int | str | None
|
|
2678
|
-
:type undo: bool | None
|
|
2679
2108
|
:param threshold: Merge Distance, Maximum distance between elements to merge
|
|
2680
|
-
:
|
|
2109
|
+
:param use_centroid: Centroid Merge, Move vertices to the centroid of the duplicate cluster, otherwise the vertex closest to the centroid is used.
|
|
2681
2110
|
:param use_unselected: Unselected, Merge selected to other unselected vertices
|
|
2682
|
-
:type use_unselected: bool | None
|
|
2683
2111
|
:param use_sharp_edge_from_normals: Sharp Edges, Calculate sharp edges using custom normal data (when available)
|
|
2684
|
-
:type use_sharp_edge_from_normals: bool | None
|
|
2685
2112
|
"""
|
|
2686
2113
|
|
|
2114
|
+
def reorder_vertices_spatial(
|
|
2115
|
+
execution_context: int | str | None = None,
|
|
2116
|
+
undo: bool | None = None,
|
|
2117
|
+
/,
|
|
2118
|
+
) -> None:
|
|
2119
|
+
"""Reorder mesh faces and vertices based on their spatial position for better BVH building and sculpting performance."""
|
|
2120
|
+
|
|
2687
2121
|
def reveal(
|
|
2688
2122
|
execution_context: int | str | None = None,
|
|
2689
2123
|
undo: bool | None = None,
|
|
@@ -2693,10 +2127,7 @@ def reveal(
|
|
|
2693
2127
|
) -> None:
|
|
2694
2128
|
"""Reveal all hidden vertices, edges and faces
|
|
2695
2129
|
|
|
2696
|
-
:type execution_context: int | str | None
|
|
2697
|
-
:type undo: bool | None
|
|
2698
2130
|
:param select: Select
|
|
2699
|
-
:type select: bool | None
|
|
2700
2131
|
"""
|
|
2701
2132
|
|
|
2702
2133
|
def rip(
|
|
@@ -2717,26 +2148,15 @@ def rip(
|
|
|
2717
2148
|
) -> None:
|
|
2718
2149
|
"""Disconnect vertex or edges from connected geometry
|
|
2719
2150
|
|
|
2720
|
-
:type execution_context: int | str | None
|
|
2721
|
-
:type undo: bool | None
|
|
2722
2151
|
:param mirror: Mirror Editing
|
|
2723
|
-
:type mirror: bool | None
|
|
2724
2152
|
:param use_proportional_edit: Proportional Editing
|
|
2725
|
-
:type use_proportional_edit: bool | None
|
|
2726
2153
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2727
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
2728
2154
|
:param proportional_size: Proportional Size
|
|
2729
|
-
:type proportional_size: float | None
|
|
2730
2155
|
:param use_proportional_connected: Connected
|
|
2731
|
-
:type use_proportional_connected: bool | None
|
|
2732
2156
|
:param use_proportional_projected: Projected (2D)
|
|
2733
|
-
:type use_proportional_projected: bool | None
|
|
2734
2157
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
2735
|
-
:type release_confirm: bool | None
|
|
2736
2158
|
:param use_accurate: Accurate, Use accurate transformation
|
|
2737
|
-
:type use_accurate: bool | None
|
|
2738
2159
|
:param use_fill: Fill, Fill the ripped region
|
|
2739
|
-
:type use_fill: bool | None
|
|
2740
2160
|
"""
|
|
2741
2161
|
|
|
2742
2162
|
def rip_edge(
|
|
@@ -2756,24 +2176,14 @@ def rip_edge(
|
|
|
2756
2176
|
) -> None:
|
|
2757
2177
|
"""Extend vertices along the edge closest to the cursor
|
|
2758
2178
|
|
|
2759
|
-
:type execution_context: int | str | None
|
|
2760
|
-
:type undo: bool | None
|
|
2761
2179
|
:param mirror: Mirror Editing
|
|
2762
|
-
:type mirror: bool | None
|
|
2763
2180
|
:param use_proportional_edit: Proportional Editing
|
|
2764
|
-
:type use_proportional_edit: bool | None
|
|
2765
2181
|
:param proportional_edit_falloff: Proportional Falloff, Falloff type for proportional editing mode
|
|
2766
|
-
:type proportional_edit_falloff: bpy.stub_internal.rna_enums.ProportionalFalloffItems | None
|
|
2767
2182
|
:param proportional_size: Proportional Size
|
|
2768
|
-
:type proportional_size: float | None
|
|
2769
2183
|
:param use_proportional_connected: Connected
|
|
2770
|
-
:type use_proportional_connected: bool | None
|
|
2771
2184
|
:param use_proportional_projected: Projected (2D)
|
|
2772
|
-
:type use_proportional_projected: bool | None
|
|
2773
2185
|
:param release_confirm: Confirm on Release, Always confirm operation when releasing button
|
|
2774
|
-
:type release_confirm: bool | None
|
|
2775
2186
|
:param use_accurate: Accurate, Use accurate transformation
|
|
2776
|
-
:type use_accurate: bool | None
|
|
2777
2187
|
"""
|
|
2778
2188
|
|
|
2779
2189
|
def rip_edge_move(
|
|
@@ -2786,12 +2196,8 @@ def rip_edge_move(
|
|
|
2786
2196
|
) -> None:
|
|
2787
2197
|
"""Extend vertices and move the result
|
|
2788
2198
|
|
|
2789
|
-
:type execution_context: int | str | None
|
|
2790
|
-
:type undo: bool | None
|
|
2791
2199
|
:param MESH_OT_rip_edge: Extend Vertices, Extend vertices along the edge closest to the cursor
|
|
2792
|
-
:type MESH_OT_rip_edge: rip_edge | None
|
|
2793
2200
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
2794
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
2795
2201
|
"""
|
|
2796
2202
|
|
|
2797
2203
|
def rip_move(
|
|
@@ -2804,12 +2210,8 @@ def rip_move(
|
|
|
2804
2210
|
) -> None:
|
|
2805
2211
|
"""Rip polygons and move the result
|
|
2806
2212
|
|
|
2807
|
-
:type execution_context: int | str | None
|
|
2808
|
-
:type undo: bool | None
|
|
2809
2213
|
:param MESH_OT_rip: Rip, Disconnect vertex or edges from connected geometry
|
|
2810
|
-
:type MESH_OT_rip: rip | None
|
|
2811
2214
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
2812
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
2813
2215
|
"""
|
|
2814
2216
|
|
|
2815
2217
|
def screw(
|
|
@@ -2824,16 +2226,10 @@ def screw(
|
|
|
2824
2226
|
) -> None:
|
|
2825
2227
|
"""Extrude selected vertices in screw-shaped rotation around the cursor in indicated viewport
|
|
2826
2228
|
|
|
2827
|
-
:type execution_context: int | str | None
|
|
2828
|
-
:type undo: bool | None
|
|
2829
2229
|
:param steps: Steps, Steps
|
|
2830
|
-
:type steps: int | None
|
|
2831
2230
|
:param turns: Turns, Turns
|
|
2832
|
-
:type turns: int | None
|
|
2833
2231
|
:param center: Center, Center in global view space
|
|
2834
|
-
:type center: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2835
2232
|
:param axis: Axis, Axis in global view space
|
|
2836
|
-
:type axis: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
2837
2233
|
"""
|
|
2838
2234
|
|
|
2839
2235
|
def select_all(
|
|
@@ -2845,8 +2241,6 @@ def select_all(
|
|
|
2845
2241
|
) -> None:
|
|
2846
2242
|
"""(De)select all vertices, edges or faces
|
|
2847
2243
|
|
|
2848
|
-
:type execution_context: int | str | None
|
|
2849
|
-
:type undo: bool | None
|
|
2850
2244
|
:param action: Action, Selection action to execute
|
|
2851
2245
|
|
|
2852
2246
|
TOGGLE
|
|
@@ -2860,7 +2254,6 @@ def select_all(
|
|
|
2860
2254
|
|
|
2861
2255
|
INVERT
|
|
2862
2256
|
Invert -- Invert selection of all elements.
|
|
2863
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
2864
2257
|
"""
|
|
2865
2258
|
|
|
2866
2259
|
def select_axis(
|
|
@@ -2875,26 +2268,18 @@ def select_axis(
|
|
|
2875
2268
|
) -> None:
|
|
2876
2269
|
"""Select all data in the mesh on a single axis
|
|
2877
2270
|
|
|
2878
|
-
:type execution_context: int | str | None
|
|
2879
|
-
:type undo: bool | None
|
|
2880
2271
|
:param orientation: Axis Mode, Axis orientation
|
|
2881
|
-
:type orientation: bpy.stub_internal.rna_enums.TransformOrientationItems | None
|
|
2882
2272
|
:param sign: Axis Sign, Side to select
|
|
2883
|
-
:type sign: typing.Literal['POS','NEG','ALIGN'] | None
|
|
2884
2273
|
:param axis: Axis, Select the axis to compare each vertex on
|
|
2885
|
-
:type axis: bpy.stub_internal.rna_enums.AxisXyzItems | None
|
|
2886
2274
|
:param threshold: Threshold
|
|
2887
|
-
:type threshold: float | None
|
|
2888
2275
|
"""
|
|
2889
2276
|
|
|
2890
2277
|
def select_by_attribute(
|
|
2891
|
-
execution_context: int | str | None = None,
|
|
2278
|
+
execution_context: int | str | None = None,
|
|
2279
|
+
undo: bool | None = None,
|
|
2280
|
+
/,
|
|
2892
2281
|
) -> None:
|
|
2893
|
-
"""Select elements based on the active boolean attribute
|
|
2894
|
-
|
|
2895
|
-
:type execution_context: int | str | None
|
|
2896
|
-
:type undo: bool | None
|
|
2897
|
-
"""
|
|
2282
|
+
"""Select elements based on the active boolean attribute"""
|
|
2898
2283
|
|
|
2899
2284
|
def select_by_pole_count(
|
|
2900
2285
|
execution_context: int | str | None = None,
|
|
@@ -2908,16 +2293,10 @@ def select_by_pole_count(
|
|
|
2908
2293
|
) -> None:
|
|
2909
2294
|
"""Select vertices at poles by the number of connected edges. In edge and face mode the geometry connected to the vertices is selected
|
|
2910
2295
|
|
|
2911
|
-
:type execution_context: int | str | None
|
|
2912
|
-
:type undo: bool | None
|
|
2913
2296
|
:param pole_count: Pole Count
|
|
2914
|
-
:type pole_count: int | None
|
|
2915
2297
|
:param type: Type, Type of comparison to make
|
|
2916
|
-
:type type: typing.Literal['LESS','EQUAL','GREATER','NOTEQUAL'] | None
|
|
2917
2298
|
:param extend: Extend, Extend the selection
|
|
2918
|
-
:type extend: bool | None
|
|
2919
2299
|
:param exclude_nonmanifold: Exclude Non Manifold, Exclude non-manifold poles
|
|
2920
|
-
:type exclude_nonmanifold: bool | None
|
|
2921
2300
|
"""
|
|
2922
2301
|
|
|
2923
2302
|
def select_face_by_sides(
|
|
@@ -2931,24 +2310,17 @@ def select_face_by_sides(
|
|
|
2931
2310
|
) -> None:
|
|
2932
2311
|
"""Select vertices or faces by the number of face sides
|
|
2933
2312
|
|
|
2934
|
-
:type execution_context: int | str | None
|
|
2935
|
-
:type undo: bool | None
|
|
2936
2313
|
:param number: Number of Vertices
|
|
2937
|
-
:type number: int | None
|
|
2938
2314
|
:param type: Type, Type of comparison to make
|
|
2939
|
-
:type type: typing.Literal['LESS','EQUAL','GREATER','NOTEQUAL'] | None
|
|
2940
2315
|
:param extend: Extend, Extend the selection
|
|
2941
|
-
:type extend: bool | None
|
|
2942
2316
|
"""
|
|
2943
2317
|
|
|
2944
2318
|
def select_interior_faces(
|
|
2945
|
-
execution_context: int | str | None = None,
|
|
2319
|
+
execution_context: int | str | None = None,
|
|
2320
|
+
undo: bool | None = None,
|
|
2321
|
+
/,
|
|
2946
2322
|
) -> None:
|
|
2947
|
-
"""Select faces where all edges have more than 2 face users
|
|
2948
|
-
|
|
2949
|
-
:type execution_context: int | str | None
|
|
2950
|
-
:type undo: bool | None
|
|
2951
|
-
"""
|
|
2323
|
+
"""Select faces where all edges have more than 2 face users"""
|
|
2952
2324
|
|
|
2953
2325
|
def select_less(
|
|
2954
2326
|
execution_context: int | str | None = None,
|
|
@@ -2959,10 +2331,7 @@ def select_less(
|
|
|
2959
2331
|
) -> None:
|
|
2960
2332
|
"""Deselect vertices, edges or faces at the boundary of each selection region
|
|
2961
2333
|
|
|
2962
|
-
:type execution_context: int | str | None
|
|
2963
|
-
:type undo: bool | None
|
|
2964
2334
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
2965
|
-
:type use_face_step: bool | None
|
|
2966
2335
|
"""
|
|
2967
2336
|
|
|
2968
2337
|
def select_linked(
|
|
@@ -2974,10 +2343,7 @@ def select_linked(
|
|
|
2974
2343
|
) -> None:
|
|
2975
2344
|
"""Select all vertices connected to the current selection
|
|
2976
2345
|
|
|
2977
|
-
:type execution_context: int | str | None
|
|
2978
|
-
:type undo: bool | None
|
|
2979
2346
|
:param delimit: Delimit, Delimit selected region
|
|
2980
|
-
:type delimit: set[bpy.stub_internal.rna_enums.MeshDelimitModeItems] | None
|
|
2981
2347
|
"""
|
|
2982
2348
|
|
|
2983
2349
|
def select_linked_pick(
|
|
@@ -2992,14 +2358,8 @@ def select_linked_pick(
|
|
|
2992
2358
|
) -> None:
|
|
2993
2359
|
"""(De)select all vertices linked to the edge under the mouse cursor
|
|
2994
2360
|
|
|
2995
|
-
:type execution_context: int | str | None
|
|
2996
|
-
:type undo: bool | None
|
|
2997
2361
|
:param deselect: Deselect
|
|
2998
|
-
:type deselect: bool | None
|
|
2999
2362
|
:param delimit: Delimit, Delimit selected region
|
|
3000
|
-
:type delimit: set[bpy.stub_internal.rna_enums.MeshDelimitModeItems] | None
|
|
3001
|
-
:type object_index: int | None
|
|
3002
|
-
:type index: int | None
|
|
3003
2363
|
"""
|
|
3004
2364
|
|
|
3005
2365
|
def select_loose(
|
|
@@ -3011,10 +2371,7 @@ def select_loose(
|
|
|
3011
2371
|
) -> None:
|
|
3012
2372
|
"""Select loose geometry based on the selection mode
|
|
3013
2373
|
|
|
3014
|
-
:type execution_context: int | str | None
|
|
3015
|
-
:type undo: bool | None
|
|
3016
2374
|
:param extend: Extend, Extend the selection
|
|
3017
|
-
:type extend: bool | None
|
|
3018
2375
|
"""
|
|
3019
2376
|
|
|
3020
2377
|
def select_mirror(
|
|
@@ -3027,12 +2384,8 @@ def select_mirror(
|
|
|
3027
2384
|
) -> None:
|
|
3028
2385
|
"""Select mesh items at mirrored locations
|
|
3029
2386
|
|
|
3030
|
-
:type execution_context: int | str | None
|
|
3031
|
-
:type undo: bool | None
|
|
3032
2387
|
:param axis: Axis
|
|
3033
|
-
:type axis: set[bpy.stub_internal.rna_enums.AxisFlagXyzItems] | None
|
|
3034
2388
|
:param extend: Extend, Extend the existing selection
|
|
3035
|
-
:type extend: bool | None
|
|
3036
2389
|
"""
|
|
3037
2390
|
|
|
3038
2391
|
def select_mode(
|
|
@@ -3047,14 +2400,9 @@ def select_mode(
|
|
|
3047
2400
|
) -> None:
|
|
3048
2401
|
"""Change selection mode
|
|
3049
2402
|
|
|
3050
|
-
:type execution_context: int | str | None
|
|
3051
|
-
:type undo: bool | None
|
|
3052
2403
|
:param use_extend: Extend
|
|
3053
|
-
:type use_extend: bool | None
|
|
3054
2404
|
:param use_expand: Expand
|
|
3055
|
-
:type use_expand: bool | None
|
|
3056
2405
|
:param type: Type
|
|
3057
|
-
:type type: bpy.stub_internal.rna_enums.MeshSelectModeItems | None
|
|
3058
2406
|
:param action: Action, Selection action to execute
|
|
3059
2407
|
|
|
3060
2408
|
DISABLE
|
|
@@ -3065,7 +2413,6 @@ def select_mode(
|
|
|
3065
2413
|
|
|
3066
2414
|
TOGGLE
|
|
3067
2415
|
Toggle -- Toggle disabled flag for selected markers.
|
|
3068
|
-
:type action: typing.Literal['DISABLE','ENABLE','TOGGLE'] | None
|
|
3069
2416
|
"""
|
|
3070
2417
|
|
|
3071
2418
|
def select_more(
|
|
@@ -3077,20 +2424,15 @@ def select_more(
|
|
|
3077
2424
|
) -> None:
|
|
3078
2425
|
"""Select more vertices, edges or faces connected to initial selection
|
|
3079
2426
|
|
|
3080
|
-
:type execution_context: int | str | None
|
|
3081
|
-
:type undo: bool | None
|
|
3082
2427
|
:param use_face_step: Face Step, Connected faces (instead of edges)
|
|
3083
|
-
:type use_face_step: bool | None
|
|
3084
2428
|
"""
|
|
3085
2429
|
|
|
3086
2430
|
def select_next_item(
|
|
3087
|
-
execution_context: int | str | None = None,
|
|
2431
|
+
execution_context: int | str | None = None,
|
|
2432
|
+
undo: bool | None = None,
|
|
2433
|
+
/,
|
|
3088
2434
|
) -> None:
|
|
3089
|
-
"""Select the next element (using selection order)
|
|
3090
|
-
|
|
3091
|
-
:type execution_context: int | str | None
|
|
3092
|
-
:type undo: bool | None
|
|
3093
|
-
"""
|
|
2435
|
+
"""Select the next element (using selection order)"""
|
|
3094
2436
|
|
|
3095
2437
|
def select_non_manifold(
|
|
3096
2438
|
execution_context: int | str | None = None,
|
|
@@ -3106,20 +2448,12 @@ def select_non_manifold(
|
|
|
3106
2448
|
) -> None:
|
|
3107
2449
|
"""Select all non-manifold vertices or edges
|
|
3108
2450
|
|
|
3109
|
-
:type execution_context: int | str | None
|
|
3110
|
-
:type undo: bool | None
|
|
3111
2451
|
:param extend: Extend, Extend the selection
|
|
3112
|
-
:type extend: bool | None
|
|
3113
2452
|
:param use_wire: Wire, Wire edges
|
|
3114
|
-
:type use_wire: bool | None
|
|
3115
2453
|
:param use_boundary: Boundaries, Boundary edges
|
|
3116
|
-
:type use_boundary: bool | None
|
|
3117
2454
|
:param use_multi_face: Multiple Faces, Edges shared by more than two faces
|
|
3118
|
-
:type use_multi_face: bool | None
|
|
3119
2455
|
:param use_non_contiguous: Non Contiguous, Edges between faces pointing in alternate directions
|
|
3120
|
-
:type use_non_contiguous: bool | None
|
|
3121
2456
|
:param use_verts: Vertices, Vertices connecting multiple face regions
|
|
3122
|
-
:type use_verts: bool | None
|
|
3123
2457
|
"""
|
|
3124
2458
|
|
|
3125
2459
|
def select_nth(
|
|
@@ -3133,24 +2467,17 @@ def select_nth(
|
|
|
3133
2467
|
) -> None:
|
|
3134
2468
|
"""Deselect every Nth element starting from the active vertex, edge or face
|
|
3135
2469
|
|
|
3136
|
-
:type execution_context: int | str | None
|
|
3137
|
-
:type undo: bool | None
|
|
3138
2470
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
3139
|
-
:type skip: int | None
|
|
3140
2471
|
:param nth: Selected, Number of selected elements in the repetitive sequence
|
|
3141
|
-
:type nth: int | None
|
|
3142
2472
|
:param offset: Offset, Offset from the starting point
|
|
3143
|
-
:type offset: int | None
|
|
3144
2473
|
"""
|
|
3145
2474
|
|
|
3146
2475
|
def select_prev_item(
|
|
3147
|
-
execution_context: int | str | None = None,
|
|
2476
|
+
execution_context: int | str | None = None,
|
|
2477
|
+
undo: bool | None = None,
|
|
2478
|
+
/,
|
|
3148
2479
|
) -> None:
|
|
3149
|
-
"""Select the previous element (using selection order)
|
|
3150
|
-
|
|
3151
|
-
:type execution_context: int | str | None
|
|
3152
|
-
:type undo: bool | None
|
|
3153
|
-
"""
|
|
2480
|
+
"""Select the previous element (using selection order)"""
|
|
3154
2481
|
|
|
3155
2482
|
def select_random(
|
|
3156
2483
|
execution_context: int | str | None = None,
|
|
@@ -3163,12 +2490,8 @@ def select_random(
|
|
|
3163
2490
|
) -> None:
|
|
3164
2491
|
"""Randomly select vertices
|
|
3165
2492
|
|
|
3166
|
-
:type execution_context: int | str | None
|
|
3167
|
-
:type undo: bool | None
|
|
3168
2493
|
:param ratio: Ratio, Portion of items to select randomly
|
|
3169
|
-
:type ratio: float | None
|
|
3170
2494
|
:param seed: Random Seed, Seed for the random number generator
|
|
3171
|
-
:type seed: int | None
|
|
3172
2495
|
:param action: Action, Selection action to execute
|
|
3173
2496
|
|
|
3174
2497
|
SELECT
|
|
@@ -3176,7 +2499,6 @@ def select_random(
|
|
|
3176
2499
|
|
|
3177
2500
|
DESELECT
|
|
3178
2501
|
Deselect -- Deselect all elements.
|
|
3179
|
-
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
3180
2502
|
"""
|
|
3181
2503
|
|
|
3182
2504
|
def select_similar(
|
|
@@ -3214,24 +2536,17 @@ def select_similar(
|
|
|
3214
2536
|
) -> None:
|
|
3215
2537
|
"""Select similar vertices, edges or faces by property types
|
|
3216
2538
|
|
|
3217
|
-
:type execution_context: int | str | None
|
|
3218
|
-
:type undo: bool | None
|
|
3219
2539
|
:param type: Type
|
|
3220
|
-
:type type: typing.Literal['VERT_NORMAL','VERT_FACES','VERT_GROUPS','VERT_EDGES','VERT_CREASE','EDGE_LENGTH','EDGE_DIR','EDGE_FACES','EDGE_FACE_ANGLE','EDGE_CREASE','EDGE_BEVEL','EDGE_SEAM','EDGE_SHARP','EDGE_FREESTYLE','FACE_MATERIAL','FACE_AREA','FACE_SIDES','FACE_PERIMETER','FACE_NORMAL','FACE_COPLANAR','FACE_SMOOTH','FACE_FREESTYLE'] | None
|
|
3221
2540
|
:param compare: Compare
|
|
3222
|
-
:type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
|
|
3223
2541
|
:param threshold: Threshold
|
|
3224
|
-
:type threshold: float | None
|
|
3225
2542
|
"""
|
|
3226
2543
|
|
|
3227
2544
|
def select_similar_region(
|
|
3228
|
-
execution_context: int | str | None = None,
|
|
2545
|
+
execution_context: int | str | None = None,
|
|
2546
|
+
undo: bool | None = None,
|
|
2547
|
+
/,
|
|
3229
2548
|
) -> None:
|
|
3230
|
-
"""Select similar face regions to the current selection
|
|
3231
|
-
|
|
3232
|
-
:type execution_context: int | str | None
|
|
3233
|
-
:type undo: bool | None
|
|
3234
|
-
"""
|
|
2549
|
+
"""Select similar face regions to the current selection"""
|
|
3235
2550
|
|
|
3236
2551
|
def select_ungrouped(
|
|
3237
2552
|
execution_context: int | str | None = None,
|
|
@@ -3242,10 +2557,7 @@ def select_ungrouped(
|
|
|
3242
2557
|
) -> None:
|
|
3243
2558
|
"""Select vertices without a group
|
|
3244
2559
|
|
|
3245
|
-
:type execution_context: int | str | None
|
|
3246
|
-
:type undo: bool | None
|
|
3247
2560
|
:param extend: Extend, Extend the selection
|
|
3248
|
-
:type extend: bool | None
|
|
3249
2561
|
"""
|
|
3250
2562
|
|
|
3251
2563
|
def separate(
|
|
@@ -3257,10 +2569,7 @@ def separate(
|
|
|
3257
2569
|
) -> None:
|
|
3258
2570
|
"""Separate selected geometry into a new mesh
|
|
3259
2571
|
|
|
3260
|
-
:type execution_context: int | str | None
|
|
3261
|
-
:type undo: bool | None
|
|
3262
2572
|
:param type: Type
|
|
3263
|
-
:type type: typing.Literal['SELECTED','MATERIAL','LOOSE'] | None
|
|
3264
2573
|
"""
|
|
3265
2574
|
|
|
3266
2575
|
def set_normals_from_faces(
|
|
@@ -3272,10 +2581,7 @@ def set_normals_from_faces(
|
|
|
3272
2581
|
) -> None:
|
|
3273
2582
|
"""Set the custom normals from the selected faces ones
|
|
3274
2583
|
|
|
3275
|
-
:type execution_context: int | str | None
|
|
3276
|
-
:type undo: bool | None
|
|
3277
2584
|
:param keep_sharp: Keep Sharp Edges, Do not set sharp edges to face
|
|
3278
|
-
:type keep_sharp: bool | None
|
|
3279
2585
|
"""
|
|
3280
2586
|
|
|
3281
2587
|
def set_sharpness_by_angle(
|
|
@@ -3288,22 +2594,16 @@ def set_sharpness_by_angle(
|
|
|
3288
2594
|
) -> None:
|
|
3289
2595
|
"""Set edge sharpness based on the angle between neighboring faces
|
|
3290
2596
|
|
|
3291
|
-
:type execution_context: int | str | None
|
|
3292
|
-
:type undo: bool | None
|
|
3293
2597
|
:param angle: Angle
|
|
3294
|
-
:type angle: float | None
|
|
3295
2598
|
:param extend: Extend, Add new sharp edges without clearing existing sharp edges
|
|
3296
|
-
:type extend: bool | None
|
|
3297
2599
|
"""
|
|
3298
2600
|
|
|
3299
2601
|
def shape_propagate_to_all(
|
|
3300
|
-
execution_context: int | str | None = None,
|
|
2602
|
+
execution_context: int | str | None = None,
|
|
2603
|
+
undo: bool | None = None,
|
|
2604
|
+
/,
|
|
3301
2605
|
) -> None:
|
|
3302
|
-
"""Apply selected vertex locations to all other shape keys
|
|
3303
|
-
|
|
3304
|
-
:type execution_context: int | str | None
|
|
3305
|
-
:type undo: bool | None
|
|
3306
|
-
"""
|
|
2606
|
+
"""Apply selected vertex locations to all other shape keys"""
|
|
3307
2607
|
|
|
3308
2608
|
def shortest_path_pick(
|
|
3309
2609
|
execution_context: int | str | None = None,
|
|
@@ -3322,23 +2622,13 @@ def shortest_path_pick(
|
|
|
3322
2622
|
) -> None:
|
|
3323
2623
|
"""Select shortest path between two selections
|
|
3324
2624
|
|
|
3325
|
-
:type execution_context: int | str | None
|
|
3326
|
-
:type undo: bool | None
|
|
3327
2625
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
3328
|
-
:type edge_mode: typing.Literal['SELECT','SEAM','SHARP','CREASE','BEVEL','FREESTYLE'] | None
|
|
3329
2626
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
3330
|
-
:type use_face_step: bool | None
|
|
3331
2627
|
:param use_topology_distance: Topology Distance, Find the minimum number of steps, ignoring spatial distance
|
|
3332
|
-
:type use_topology_distance: bool | None
|
|
3333
2628
|
:param use_fill: Fill Region, Select all paths between the source/destination elements
|
|
3334
|
-
:type use_fill: bool | None
|
|
3335
2629
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
3336
|
-
:type skip: int | None
|
|
3337
2630
|
:param nth: Selected, Number of selected elements in the repetitive sequence
|
|
3338
|
-
:type nth: int | None
|
|
3339
2631
|
:param offset: Offset, Offset from the starting point
|
|
3340
|
-
:type offset: int | None
|
|
3341
|
-
:type index: int | None
|
|
3342
2632
|
"""
|
|
3343
2633
|
|
|
3344
2634
|
def shortest_path_select(
|
|
@@ -3357,22 +2647,13 @@ def shortest_path_select(
|
|
|
3357
2647
|
) -> None:
|
|
3358
2648
|
"""Selected shortest path between two vertices/edges/faces
|
|
3359
2649
|
|
|
3360
|
-
:type execution_context: int | str | None
|
|
3361
|
-
:type undo: bool | None
|
|
3362
2650
|
:param edge_mode: Edge Tag, The edge flag to tag when selecting the shortest path
|
|
3363
|
-
:type edge_mode: typing.Literal['SELECT','SEAM','SHARP','CREASE','BEVEL','FREESTYLE'] | None
|
|
3364
2651
|
:param use_face_step: Face Stepping, Traverse connected faces (includes diagonals and edge-rings)
|
|
3365
|
-
:type use_face_step: bool | None
|
|
3366
2652
|
:param use_topology_distance: Topology Distance, Find the minimum number of steps, ignoring spatial distance
|
|
3367
|
-
:type use_topology_distance: bool | None
|
|
3368
2653
|
:param use_fill: Fill Region, Select all paths between the source/destination elements
|
|
3369
|
-
:type use_fill: bool | None
|
|
3370
2654
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
3371
|
-
:type skip: int | None
|
|
3372
2655
|
:param nth: Selected, Number of selected elements in the repetitive sequence
|
|
3373
|
-
:type nth: int | None
|
|
3374
2656
|
:param offset: Offset, Offset from the starting point
|
|
3375
|
-
:type offset: int | None
|
|
3376
2657
|
"""
|
|
3377
2658
|
|
|
3378
2659
|
def smooth_normals(
|
|
@@ -3384,10 +2665,7 @@ def smooth_normals(
|
|
|
3384
2665
|
) -> None:
|
|
3385
2666
|
"""Smooth custom normals based on adjacent vertex normals
|
|
3386
2667
|
|
|
3387
|
-
:type execution_context: int | str | None
|
|
3388
|
-
:type undo: bool | None
|
|
3389
2668
|
:param factor: Factor, Specifies weight of smooth vs original normal
|
|
3390
|
-
:type factor: float | None
|
|
3391
2669
|
"""
|
|
3392
2670
|
|
|
3393
2671
|
def solidify(
|
|
@@ -3399,10 +2677,7 @@ def solidify(
|
|
|
3399
2677
|
) -> None:
|
|
3400
2678
|
"""Create a solid skin by extruding, compensating for sharp angles
|
|
3401
2679
|
|
|
3402
|
-
:type execution_context: int | str | None
|
|
3403
|
-
:type undo: bool | None
|
|
3404
2680
|
:param thickness: Thickness
|
|
3405
|
-
:type thickness: float | None
|
|
3406
2681
|
"""
|
|
3407
2682
|
|
|
3408
2683
|
def sort_elements(
|
|
@@ -3426,8 +2701,6 @@ def sort_elements(
|
|
|
3426
2701
|
) -> None:
|
|
3427
2702
|
"""The order of selected vertices/edges/faces is modified, based on a given method
|
|
3428
2703
|
|
|
3429
|
-
:type execution_context: int | str | None
|
|
3430
|
-
:type undo: bool | None
|
|
3431
2704
|
:param type: Type, Type of reordering operation to apply
|
|
3432
2705
|
|
|
3433
2706
|
VIEW_ZAXIS
|
|
@@ -3444,20 +2717,16 @@ def sort_elements(
|
|
|
3444
2717
|
|
|
3445
2718
|
SELECTED
|
|
3446
2719
|
Selected -- Move all selected elements in first places, preserving their relative order.
|
|
3447
|
-
Warning: This will affect unselected elements
|
|
2720
|
+
Warning: This will affect unselected elements indices as well.
|
|
3448
2721
|
|
|
3449
2722
|
RANDOMIZE
|
|
3450
2723
|
Randomize -- Randomize order of selected elements.
|
|
3451
2724
|
|
|
3452
2725
|
REVERSE
|
|
3453
2726
|
Reverse -- Reverse current order of selected elements.
|
|
3454
|
-
:type type: typing.Literal['VIEW_ZAXIS','VIEW_XAXIS','CURSOR_DISTANCE','MATERIAL','SELECTED','RANDOMIZE','REVERSE'] | None
|
|
3455
2727
|
:param elements: Elements, Which elements to affect (vertices, edges and/or faces)
|
|
3456
|
-
:type elements: set[typing.Literal['VERT','EDGE','FACE']] | None
|
|
3457
2728
|
:param reverse: Reverse, Reverse the sorting effect
|
|
3458
|
-
:type reverse: bool | None
|
|
3459
2729
|
:param seed: Seed, Seed for random-based operations
|
|
3460
|
-
:type seed: int | None
|
|
3461
2730
|
"""
|
|
3462
2731
|
|
|
3463
2732
|
def spin(
|
|
@@ -3475,39 +2744,28 @@ def spin(
|
|
|
3475
2744
|
) -> None:
|
|
3476
2745
|
"""Extrude selected vertices in a circle around the cursor in indicated viewport
|
|
3477
2746
|
|
|
3478
|
-
:type execution_context: int | str | None
|
|
3479
|
-
:type undo: bool | None
|
|
3480
2747
|
:param steps: Steps, Steps
|
|
3481
|
-
:type steps: int | None
|
|
3482
2748
|
:param dupli: Use Duplicates
|
|
3483
|
-
:type dupli: bool | None
|
|
3484
2749
|
:param angle: Angle, Rotation for each step
|
|
3485
|
-
:type angle: float | None
|
|
3486
2750
|
:param use_auto_merge: Auto Merge, Merge first/last when the angle is a full revolution
|
|
3487
|
-
:type use_auto_merge: bool | None
|
|
3488
2751
|
:param use_normal_flip: Flip Normals
|
|
3489
|
-
:type use_normal_flip: bool | None
|
|
3490
2752
|
:param center: Center, Center in global view space
|
|
3491
|
-
:type center: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
3492
2753
|
:param axis: Axis, Axis in global view space
|
|
3493
|
-
:type axis: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
3494
2754
|
"""
|
|
3495
2755
|
|
|
3496
|
-
def split(
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
"""
|
|
2756
|
+
def split(
|
|
2757
|
+
execution_context: int | str | None = None,
|
|
2758
|
+
undo: bool | None = None,
|
|
2759
|
+
/,
|
|
2760
|
+
) -> None:
|
|
2761
|
+
"""Split off selected geometry from connected unselected geometry"""
|
|
3502
2762
|
|
|
3503
2763
|
def split_normals(
|
|
3504
|
-
execution_context: int | str | None = None,
|
|
2764
|
+
execution_context: int | str | None = None,
|
|
2765
|
+
undo: bool | None = None,
|
|
2766
|
+
/,
|
|
3505
2767
|
) -> None:
|
|
3506
|
-
"""Split custom normals of selected vertices
|
|
3507
|
-
|
|
3508
|
-
:type execution_context: int | str | None
|
|
3509
|
-
:type undo: bool | None
|
|
3510
|
-
"""
|
|
2768
|
+
"""Split custom normals of selected vertices"""
|
|
3511
2769
|
|
|
3512
2770
|
def subdivide(
|
|
3513
2771
|
execution_context: int | str | None = None,
|
|
@@ -3525,22 +2783,13 @@ def subdivide(
|
|
|
3525
2783
|
) -> None:
|
|
3526
2784
|
"""Subdivide selected edges
|
|
3527
2785
|
|
|
3528
|
-
:type execution_context: int | str | None
|
|
3529
|
-
:type undo: bool | None
|
|
3530
2786
|
:param number_cuts: Number of Cuts
|
|
3531
|
-
:type number_cuts: int | None
|
|
3532
2787
|
:param smoothness: Smoothness, Smoothness factor
|
|
3533
|
-
:type smoothness: float | None
|
|
3534
2788
|
:param ngon: Create N-Gons, When disabled, newly created faces are limited to 3 and 4 sided faces
|
|
3535
|
-
:type ngon: bool | None
|
|
3536
2789
|
:param quadcorner: Quad Corner Type, How to subdivide quad corners (anything other than Straight Cut will prevent n-gons)
|
|
3537
|
-
:type quadcorner: typing.Literal['INNERVERT','PATH','STRAIGHT_CUT','FAN'] | None
|
|
3538
2790
|
:param fractal: Fractal, Fractal randomness factor
|
|
3539
|
-
:type fractal: float | None
|
|
3540
2791
|
:param fractal_along_normal: Along Normal, Apply fractal displacement along normal only
|
|
3541
|
-
:type fractal_along_normal: float | None
|
|
3542
2792
|
:param seed: Random Seed, Seed for the random number generator
|
|
3543
|
-
:type seed: int | None
|
|
3544
2793
|
"""
|
|
3545
2794
|
|
|
3546
2795
|
def subdivide_edgering(
|
|
@@ -3557,18 +2806,11 @@ def subdivide_edgering(
|
|
|
3557
2806
|
) -> None:
|
|
3558
2807
|
"""Subdivide perpendicular edges to the selected edge-ring
|
|
3559
2808
|
|
|
3560
|
-
:type execution_context: int | str | None
|
|
3561
|
-
:type undo: bool | None
|
|
3562
2809
|
:param number_cuts: Number of Cuts
|
|
3563
|
-
:type number_cuts: int | None
|
|
3564
2810
|
:param interpolation: Interpolation, Interpolation method
|
|
3565
|
-
:type interpolation: typing.Literal['LINEAR','PATH','SURFACE'] | None
|
|
3566
2811
|
:param smoothness: Smoothness, Smoothness factor
|
|
3567
|
-
:type smoothness: float | None
|
|
3568
2812
|
:param profile_shape_factor: Profile Factor, How much intermediary new edges are shrunk/expanded
|
|
3569
|
-
:type profile_shape_factor: float | None
|
|
3570
2813
|
:param profile_shape: Profile Shape, Shape of the profile
|
|
3571
|
-
:type profile_shape: bpy.stub_internal.rna_enums.ProportionalFalloffCurveOnlyItems | None
|
|
3572
2814
|
"""
|
|
3573
2815
|
|
|
3574
2816
|
def symmetrize(
|
|
@@ -3582,12 +2824,8 @@ def symmetrize(
|
|
|
3582
2824
|
) -> None:
|
|
3583
2825
|
"""Enforce symmetry (both form and topological) across an axis
|
|
3584
2826
|
|
|
3585
|
-
:type execution_context: int | str | None
|
|
3586
|
-
:type undo: bool | None
|
|
3587
2827
|
:param direction: Direction, Which sides to copy from and to
|
|
3588
|
-
:type direction: bpy.stub_internal.rna_enums.SymmetrizeDirectionItems | None
|
|
3589
2828
|
:param threshold: Threshold, Limit for snap middle vertices to the axis center
|
|
3590
|
-
:type threshold: float | None
|
|
3591
2829
|
"""
|
|
3592
2830
|
|
|
3593
2831
|
def symmetry_snap(
|
|
@@ -3603,16 +2841,10 @@ def symmetry_snap(
|
|
|
3603
2841
|
) -> None:
|
|
3604
2842
|
"""Snap vertex pairs to their mirrored locations
|
|
3605
2843
|
|
|
3606
|
-
:type execution_context: int | str | None
|
|
3607
|
-
:type undo: bool | None
|
|
3608
2844
|
:param direction: Direction, Which sides to copy from and to
|
|
3609
|
-
:type direction: bpy.stub_internal.rna_enums.SymmetrizeDirectionItems | None
|
|
3610
2845
|
:param threshold: Threshold, Distance within which matching vertices are searched
|
|
3611
|
-
:type threshold: float | None
|
|
3612
2846
|
:param factor: Factor, Mix factor of the locations of the vertices
|
|
3613
|
-
:type factor: float | None
|
|
3614
2847
|
:param use_center: Center, Snap middle vertices to the axis center
|
|
3615
|
-
:type use_center: bool | None
|
|
3616
2848
|
"""
|
|
3617
2849
|
|
|
3618
2850
|
def tris_convert_to_quads(
|
|
@@ -3632,26 +2864,15 @@ def tris_convert_to_quads(
|
|
|
3632
2864
|
) -> None:
|
|
3633
2865
|
"""Merge triangles into four sided polygons where possible
|
|
3634
2866
|
|
|
3635
|
-
:type execution_context: int | str | None
|
|
3636
|
-
:type undo: bool | None
|
|
3637
2867
|
:param face_threshold: Max Face Angle, Face angle limit
|
|
3638
|
-
:type face_threshold: float | None
|
|
3639
2868
|
:param shape_threshold: Max Shape Angle, Shape angle limit
|
|
3640
|
-
:type shape_threshold: float | None
|
|
3641
2869
|
:param topology_influence: Topology Influence, How much to prioritize regular grids of quads as well as quads that touch existing quads
|
|
3642
|
-
:type topology_influence: float | None
|
|
3643
2870
|
:param uvs: Compare UVs
|
|
3644
|
-
:type uvs: bool | None
|
|
3645
2871
|
:param vcols: Compare Color Attributes
|
|
3646
|
-
:type vcols: bool | None
|
|
3647
2872
|
:param seam: Compare Seam
|
|
3648
|
-
:type seam: bool | None
|
|
3649
2873
|
:param sharp: Compare Sharp
|
|
3650
|
-
:type sharp: bool | None
|
|
3651
2874
|
:param materials: Compare Materials
|
|
3652
|
-
:type materials: bool | None
|
|
3653
2875
|
:param deselect_joined: Deselect Joined, Only select remaining triangles that were not merged
|
|
3654
|
-
:type deselect_joined: bool | None
|
|
3655
2876
|
"""
|
|
3656
2877
|
|
|
3657
2878
|
def unsubdivide(
|
|
@@ -3663,38 +2884,29 @@ def unsubdivide(
|
|
|
3663
2884
|
) -> None:
|
|
3664
2885
|
"""Un-subdivide selected edges and faces
|
|
3665
2886
|
|
|
3666
|
-
:type execution_context: int | str | None
|
|
3667
|
-
:type undo: bool | None
|
|
3668
2887
|
:param iterations: Iterations, Number of times to un-subdivide
|
|
3669
|
-
:type iterations: int | None
|
|
3670
2888
|
"""
|
|
3671
2889
|
|
|
3672
2890
|
def uv_texture_add(
|
|
3673
|
-
execution_context: int | str | None = None,
|
|
2891
|
+
execution_context: int | str | None = None,
|
|
2892
|
+
undo: bool | None = None,
|
|
2893
|
+
/,
|
|
3674
2894
|
) -> None:
|
|
3675
|
-
"""Add UV map
|
|
3676
|
-
|
|
3677
|
-
:type execution_context: int | str | None
|
|
3678
|
-
:type undo: bool | None
|
|
3679
|
-
"""
|
|
2895
|
+
"""Add UV map"""
|
|
3680
2896
|
|
|
3681
2897
|
def uv_texture_remove(
|
|
3682
|
-
execution_context: int | str | None = None,
|
|
2898
|
+
execution_context: int | str | None = None,
|
|
2899
|
+
undo: bool | None = None,
|
|
2900
|
+
/,
|
|
3683
2901
|
) -> None:
|
|
3684
|
-
"""Remove UV map
|
|
3685
|
-
|
|
3686
|
-
:type execution_context: int | str | None
|
|
3687
|
-
:type undo: bool | None
|
|
3688
|
-
"""
|
|
2902
|
+
"""Remove UV map"""
|
|
3689
2903
|
|
|
3690
2904
|
def uvs_reverse(
|
|
3691
|
-
execution_context: int | str | None = None,
|
|
2905
|
+
execution_context: int | str | None = None,
|
|
2906
|
+
undo: bool | None = None,
|
|
2907
|
+
/,
|
|
3692
2908
|
) -> None:
|
|
3693
|
-
"""Flip direction of UV coordinates inside faces
|
|
3694
|
-
|
|
3695
|
-
:type execution_context: int | str | None
|
|
3696
|
-
:type undo: bool | None
|
|
3697
|
-
"""
|
|
2909
|
+
"""Flip direction of UV coordinates inside faces"""
|
|
3698
2910
|
|
|
3699
2911
|
def uvs_rotate(
|
|
3700
2912
|
execution_context: int | str | None = None,
|
|
@@ -3705,29 +2917,22 @@ def uvs_rotate(
|
|
|
3705
2917
|
) -> None:
|
|
3706
2918
|
"""Rotate UV coordinates inside faces
|
|
3707
2919
|
|
|
3708
|
-
:type execution_context: int | str | None
|
|
3709
|
-
:type undo: bool | None
|
|
3710
2920
|
:param use_ccw: Counter Clockwise
|
|
3711
|
-
:type use_ccw: bool | None
|
|
3712
2921
|
"""
|
|
3713
2922
|
|
|
3714
2923
|
def vert_connect(
|
|
3715
|
-
execution_context: int | str | None = None,
|
|
2924
|
+
execution_context: int | str | None = None,
|
|
2925
|
+
undo: bool | None = None,
|
|
2926
|
+
/,
|
|
3716
2927
|
) -> None:
|
|
3717
|
-
"""Connect selected vertices of faces, splitting the face
|
|
3718
|
-
|
|
3719
|
-
:type execution_context: int | str | None
|
|
3720
|
-
:type undo: bool | None
|
|
3721
|
-
"""
|
|
2928
|
+
"""Connect selected vertices of faces, splitting the face"""
|
|
3722
2929
|
|
|
3723
2930
|
def vert_connect_concave(
|
|
3724
|
-
execution_context: int | str | None = None,
|
|
2931
|
+
execution_context: int | str | None = None,
|
|
2932
|
+
undo: bool | None = None,
|
|
2933
|
+
/,
|
|
3725
2934
|
) -> None:
|
|
3726
|
-
"""Make all faces convex
|
|
3727
|
-
|
|
3728
|
-
:type execution_context: int | str | None
|
|
3729
|
-
:type undo: bool | None
|
|
3730
|
-
"""
|
|
2935
|
+
"""Make all faces convex"""
|
|
3731
2936
|
|
|
3732
2937
|
def vert_connect_nonplanar(
|
|
3733
2938
|
execution_context: int | str | None = None,
|
|
@@ -3738,20 +2943,15 @@ def vert_connect_nonplanar(
|
|
|
3738
2943
|
) -> None:
|
|
3739
2944
|
"""Split non-planar faces that exceed the angle threshold
|
|
3740
2945
|
|
|
3741
|
-
:type execution_context: int | str | None
|
|
3742
|
-
:type undo: bool | None
|
|
3743
2946
|
:param angle_limit: Max Angle, Angle limit
|
|
3744
|
-
:type angle_limit: float | None
|
|
3745
2947
|
"""
|
|
3746
2948
|
|
|
3747
2949
|
def vert_connect_path(
|
|
3748
|
-
execution_context: int | str | None = None,
|
|
2950
|
+
execution_context: int | str | None = None,
|
|
2951
|
+
undo: bool | None = None,
|
|
2952
|
+
/,
|
|
3749
2953
|
) -> None:
|
|
3750
|
-
"""Connect vertices by their selection order, creating edges, splitting faces
|
|
3751
|
-
|
|
3752
|
-
:type execution_context: int | str | None
|
|
3753
|
-
:type undo: bool | None
|
|
3754
|
-
"""
|
|
2954
|
+
"""Connect vertices by their selection order, creating edges, splitting faces"""
|
|
3755
2955
|
|
|
3756
2956
|
def vertices_smooth(
|
|
3757
2957
|
execution_context: int | str | None = None,
|
|
@@ -3767,20 +2967,12 @@ def vertices_smooth(
|
|
|
3767
2967
|
) -> None:
|
|
3768
2968
|
"""Flatten angles of selected vertices
|
|
3769
2969
|
|
|
3770
|
-
:type execution_context: int | str | None
|
|
3771
|
-
:type undo: bool | None
|
|
3772
2970
|
:param factor: Smoothing, Smoothing factor
|
|
3773
|
-
:type factor: float | None
|
|
3774
2971
|
:param repeat: Repeat, Number of times to smooth the mesh
|
|
3775
|
-
:type repeat: int | None
|
|
3776
2972
|
:param xaxis: X-Axis, Smooth along the X axis
|
|
3777
|
-
:type xaxis: bool | None
|
|
3778
2973
|
:param yaxis: Y-Axis, Smooth along the Y axis
|
|
3779
|
-
:type yaxis: bool | None
|
|
3780
2974
|
:param zaxis: Z-Axis, Smooth along the Z axis
|
|
3781
|
-
:type zaxis: bool | None
|
|
3782
2975
|
:param wait_for_input: Wait for Input
|
|
3783
|
-
:type wait_for_input: bool | None
|
|
3784
2976
|
"""
|
|
3785
2977
|
|
|
3786
2978
|
def vertices_smooth_laplacian(
|
|
@@ -3798,22 +2990,13 @@ def vertices_smooth_laplacian(
|
|
|
3798
2990
|
) -> None:
|
|
3799
2991
|
"""Laplacian smooth of selected vertices
|
|
3800
2992
|
|
|
3801
|
-
:type execution_context: int | str | None
|
|
3802
|
-
:type undo: bool | None
|
|
3803
2993
|
:param repeat: Number of iterations to smooth the mesh
|
|
3804
|
-
:type repeat: int | None
|
|
3805
2994
|
:param lambda_factor: Lambda factor
|
|
3806
|
-
:type lambda_factor: float | None
|
|
3807
2995
|
:param lambda_border: Lambda factor in border
|
|
3808
|
-
:type lambda_border: float | None
|
|
3809
2996
|
:param use_x: Smooth X Axis, Smooth object along X axis
|
|
3810
|
-
:type use_x: bool | None
|
|
3811
2997
|
:param use_y: Smooth Y Axis, Smooth object along Y axis
|
|
3812
|
-
:type use_y: bool | None
|
|
3813
2998
|
:param use_z: Smooth Z Axis, Smooth object along Z axis
|
|
3814
|
-
:type use_z: bool | None
|
|
3815
2999
|
:param preserve_volume: Preserve Volume, Apply volume preservation after smooth
|
|
3816
|
-
:type preserve_volume: bool | None
|
|
3817
3000
|
"""
|
|
3818
3001
|
|
|
3819
3002
|
def wireframe(
|
|
@@ -3832,22 +3015,12 @@ def wireframe(
|
|
|
3832
3015
|
) -> None:
|
|
3833
3016
|
"""Create a solid wireframe from faces
|
|
3834
3017
|
|
|
3835
|
-
:type execution_context: int | str | None
|
|
3836
|
-
:type undo: bool | None
|
|
3837
3018
|
:param use_boundary: Boundary, Inset face boundaries
|
|
3838
|
-
:type use_boundary: bool | None
|
|
3839
3019
|
:param use_even_offset: Offset Even, Scale the offset to give more even thickness
|
|
3840
|
-
:type use_even_offset: bool | None
|
|
3841
3020
|
:param use_relative_offset: Offset Relative, Scale the offset by surrounding geometry
|
|
3842
|
-
:type use_relative_offset: bool | None
|
|
3843
3021
|
:param use_replace: Replace, Remove original faces
|
|
3844
|
-
:type use_replace: bool | None
|
|
3845
3022
|
:param thickness: Thickness
|
|
3846
|
-
:type thickness: float | None
|
|
3847
3023
|
:param offset: Offset
|
|
3848
|
-
:type offset: float | None
|
|
3849
3024
|
:param use_crease: Crease, Crease hub edges for an improved subdivision surface
|
|
3850
|
-
:type use_crease: bool | None
|
|
3851
3025
|
:param crease_weight: Crease Weight
|
|
3852
|
-
:type crease_weight: float | None
|
|
3853
3026
|
"""
|