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/curve/__init__.pyi
CHANGED
|
@@ -16,29 +16,22 @@ def cyclic_toggle(
|
|
|
16
16
|
) -> None:
|
|
17
17
|
"""Make active spline closed/opened loop
|
|
18
18
|
|
|
19
|
-
:type execution_context: int | str | None
|
|
20
|
-
:type undo: bool | None
|
|
21
19
|
:param direction: Direction, Direction to make surface cyclic in
|
|
22
|
-
:type direction: typing.Literal['CYCLIC_U','CYCLIC_V'] | None
|
|
23
20
|
"""
|
|
24
21
|
|
|
25
22
|
def de_select_first(
|
|
26
|
-
execution_context: int | str | None = None,
|
|
23
|
+
execution_context: int | str | None = None,
|
|
24
|
+
undo: bool | None = None,
|
|
25
|
+
/,
|
|
27
26
|
) -> None:
|
|
28
|
-
"""(De)select first of visible part of each NURBS
|
|
29
|
-
|
|
30
|
-
:type execution_context: int | str | None
|
|
31
|
-
:type undo: bool | None
|
|
32
|
-
"""
|
|
27
|
+
"""(De)select first of visible part of each NURBS"""
|
|
33
28
|
|
|
34
29
|
def de_select_last(
|
|
35
|
-
execution_context: int | str | None = None,
|
|
30
|
+
execution_context: int | str | None = None,
|
|
31
|
+
undo: bool | None = None,
|
|
32
|
+
/,
|
|
36
33
|
) -> None:
|
|
37
|
-
"""(De)select last of visible part of each NURBS
|
|
38
|
-
|
|
39
|
-
:type execution_context: int | str | None
|
|
40
|
-
:type undo: bool | None
|
|
41
|
-
"""
|
|
34
|
+
"""(De)select last of visible part of each NURBS"""
|
|
42
35
|
|
|
43
36
|
def decimate(
|
|
44
37
|
execution_context: int | str | None = None,
|
|
@@ -49,10 +42,7 @@ def decimate(
|
|
|
49
42
|
) -> None:
|
|
50
43
|
"""Simplify selected curves
|
|
51
44
|
|
|
52
|
-
:type execution_context: int | str | None
|
|
53
|
-
:type undo: bool | None
|
|
54
45
|
:param ratio: Ratio
|
|
55
|
-
:type ratio: float | None
|
|
56
46
|
"""
|
|
57
47
|
|
|
58
48
|
def delete(
|
|
@@ -64,20 +54,15 @@ def delete(
|
|
|
64
54
|
) -> None:
|
|
65
55
|
"""Delete selected control points or segments
|
|
66
56
|
|
|
67
|
-
:type execution_context: int | str | None
|
|
68
|
-
:type undo: bool | None
|
|
69
57
|
:param type: Type, Which elements to delete
|
|
70
|
-
:type type: typing.Literal['VERT','SEGMENT'] | None
|
|
71
58
|
"""
|
|
72
59
|
|
|
73
60
|
def dissolve_verts(
|
|
74
|
-
execution_context: int | str | None = None,
|
|
61
|
+
execution_context: int | str | None = None,
|
|
62
|
+
undo: bool | None = None,
|
|
63
|
+
/,
|
|
75
64
|
) -> None:
|
|
76
|
-
"""Delete selected control points, correcting surrounding handles
|
|
77
|
-
|
|
78
|
-
:type execution_context: int | str | None
|
|
79
|
-
:type undo: bool | None
|
|
80
|
-
"""
|
|
65
|
+
"""Delete selected control points, correcting surrounding handles"""
|
|
81
66
|
|
|
82
67
|
def draw(
|
|
83
68
|
execution_context: int | str | None = None,
|
|
@@ -94,30 +79,20 @@ def draw(
|
|
|
94
79
|
) -> None:
|
|
95
80
|
"""Draw a freehand spline
|
|
96
81
|
|
|
97
|
-
:type execution_context: int | str | None
|
|
98
|
-
:type undo: bool | None
|
|
99
82
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
100
|
-
:type error_threshold: float | None
|
|
101
83
|
:param fit_method: Fit Method
|
|
102
|
-
:type fit_method: bpy.stub_internal.rna_enums.CurveFitMethodItems | None
|
|
103
84
|
:param corner_angle: Corner Angle
|
|
104
|
-
:type corner_angle: float | None
|
|
105
85
|
:param use_cyclic: Cyclic
|
|
106
|
-
:type use_cyclic: bool | None
|
|
107
86
|
:param stroke: Stroke
|
|
108
|
-
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
109
87
|
:param wait_for_input: Wait for Input
|
|
110
|
-
:type wait_for_input: bool | None
|
|
111
88
|
"""
|
|
112
89
|
|
|
113
90
|
def duplicate(
|
|
114
|
-
execution_context: int | str | None = None,
|
|
91
|
+
execution_context: int | str | None = None,
|
|
92
|
+
undo: bool | None = None,
|
|
93
|
+
/,
|
|
115
94
|
) -> None:
|
|
116
|
-
"""Duplicate selected control points
|
|
117
|
-
|
|
118
|
-
:type execution_context: int | str | None
|
|
119
|
-
:type undo: bool | None
|
|
120
|
-
"""
|
|
95
|
+
"""Duplicate selected control points"""
|
|
121
96
|
|
|
122
97
|
def duplicate_move(
|
|
123
98
|
execution_context: int | str | None = None,
|
|
@@ -129,12 +104,8 @@ def duplicate_move(
|
|
|
129
104
|
) -> None:
|
|
130
105
|
"""Duplicate curve and move
|
|
131
106
|
|
|
132
|
-
:type execution_context: int | str | None
|
|
133
|
-
:type undo: bool | None
|
|
134
107
|
:param CURVE_OT_duplicate: Duplicate Curve, Duplicate selected control points
|
|
135
|
-
:type CURVE_OT_duplicate: duplicate | None
|
|
136
108
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
137
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
138
109
|
"""
|
|
139
110
|
|
|
140
111
|
def extrude(
|
|
@@ -146,10 +117,7 @@ def extrude(
|
|
|
146
117
|
) -> None:
|
|
147
118
|
"""Extrude selected control point(s)
|
|
148
119
|
|
|
149
|
-
:type execution_context: int | str | None
|
|
150
|
-
:type undo: bool | None
|
|
151
120
|
:param mode: Mode
|
|
152
|
-
:type mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None
|
|
153
121
|
"""
|
|
154
122
|
|
|
155
123
|
def extrude_move(
|
|
@@ -162,12 +130,8 @@ def extrude_move(
|
|
|
162
130
|
) -> None:
|
|
163
131
|
"""Extrude curve and move result
|
|
164
132
|
|
|
165
|
-
:type execution_context: int | str | None
|
|
166
|
-
:type undo: bool | None
|
|
167
133
|
:param CURVE_OT_extrude: Extrude, Extrude selected control point(s)
|
|
168
|
-
:type CURVE_OT_extrude: extrude | None
|
|
169
134
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
170
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
171
135
|
"""
|
|
172
136
|
|
|
173
137
|
def handle_type_set(
|
|
@@ -182,10 +146,7 @@ def handle_type_set(
|
|
|
182
146
|
) -> None:
|
|
183
147
|
"""Set type of handles for selected control points
|
|
184
148
|
|
|
185
|
-
:type execution_context: int | str | None
|
|
186
|
-
:type undo: bool | None
|
|
187
149
|
:param type: Type, Spline type
|
|
188
|
-
:type type: typing.Literal['AUTOMATIC','VECTOR','ALIGNED','FREE_ALIGN','TOGGLE_FREE_ALIGN'] | None
|
|
189
150
|
"""
|
|
190
151
|
|
|
191
152
|
def hide(
|
|
@@ -197,29 +158,22 @@ def hide(
|
|
|
197
158
|
) -> None:
|
|
198
159
|
"""Hide (un)selected control points
|
|
199
160
|
|
|
200
|
-
:type execution_context: int | str | None
|
|
201
|
-
:type undo: bool | None
|
|
202
161
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
203
|
-
:type unselected: bool | None
|
|
204
162
|
"""
|
|
205
163
|
|
|
206
164
|
def make_segment(
|
|
207
|
-
execution_context: int | str | None = None,
|
|
165
|
+
execution_context: int | str | None = None,
|
|
166
|
+
undo: bool | None = None,
|
|
167
|
+
/,
|
|
208
168
|
) -> None:
|
|
209
|
-
"""Join two curves by their selected ends
|
|
210
|
-
|
|
211
|
-
:type execution_context: int | str | None
|
|
212
|
-
:type undo: bool | None
|
|
213
|
-
"""
|
|
169
|
+
"""Join two curves by their selected ends"""
|
|
214
170
|
|
|
215
171
|
def match_texture_space(
|
|
216
|
-
execution_context: int | str | None = None,
|
|
172
|
+
execution_context: int | str | None = None,
|
|
173
|
+
undo: bool | None = None,
|
|
174
|
+
/,
|
|
217
175
|
) -> None:
|
|
218
|
-
"""Match texture space to
|
|
219
|
-
|
|
220
|
-
:type execution_context: int | str | None
|
|
221
|
-
:type undo: bool | None
|
|
222
|
-
"""
|
|
176
|
+
"""Match texture space to objects bounding box"""
|
|
223
177
|
|
|
224
178
|
def normals_make_consistent(
|
|
225
179
|
execution_context: int | str | None = None,
|
|
@@ -230,10 +184,7 @@ def normals_make_consistent(
|
|
|
230
184
|
) -> None:
|
|
231
185
|
"""Recalculate the direction of selected handles
|
|
232
186
|
|
|
233
|
-
:type execution_context: int | str | None
|
|
234
|
-
:type undo: bool | None
|
|
235
187
|
:param calc_length: Length, Recalculate handle length
|
|
236
|
-
:type calc_length: bool | None
|
|
237
188
|
"""
|
|
238
189
|
|
|
239
190
|
def pen(
|
|
@@ -260,34 +211,19 @@ def pen(
|
|
|
260
211
|
) -> None:
|
|
261
212
|
"""Construct and edit splines
|
|
262
213
|
|
|
263
|
-
:type execution_context: int | str | None
|
|
264
|
-
:type undo: bool | None
|
|
265
214
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
266
|
-
:type extend: bool | None
|
|
267
215
|
:param deselect: Deselect, Remove from selection
|
|
268
|
-
:type deselect: bool | None
|
|
269
216
|
:param toggle: Toggle Selection, Toggle the selection
|
|
270
|
-
:type toggle: bool | None
|
|
271
217
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
272
|
-
:type deselect_all: bool | None
|
|
273
218
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
274
|
-
:type select_passthrough: bool | None
|
|
275
219
|
:param extrude_point: Extrude Point, Add a point connected to the last selected point
|
|
276
|
-
:type extrude_point: bool | None
|
|
277
220
|
:param extrude_handle: Extrude Handle Type, Type of the extruded handle
|
|
278
|
-
:type extrude_handle: typing.Literal['AUTO','VECTOR'] | None
|
|
279
221
|
:param delete_point: Delete Point, Delete an existing point
|
|
280
|
-
:type delete_point: bool | None
|
|
281
222
|
:param insert_point: Insert Point, Insert Point into a curve segment
|
|
282
|
-
:type insert_point: bool | None
|
|
283
223
|
:param move_segment: Move Segment, Delete an existing point
|
|
284
|
-
:type move_segment: bool | None
|
|
285
224
|
:param select_point: Select Point, Select a point or its handles
|
|
286
|
-
:type select_point: bool | None
|
|
287
225
|
:param move_point: Move Point, Move a point or its handles
|
|
288
|
-
:type move_point: bool | None
|
|
289
226
|
:param close_spline: Close Spline, Make a spline cyclic by clicking endpoints
|
|
290
|
-
:type close_spline: bool | None
|
|
291
227
|
:param close_spline_method: Close Spline Method, The condition for close spline to activate
|
|
292
228
|
|
|
293
229
|
OFF
|
|
@@ -298,11 +234,8 @@ def pen(
|
|
|
298
234
|
|
|
299
235
|
ON_CLICK
|
|
300
236
|
On Click -- Spline closes on release if not dragged.
|
|
301
|
-
:type close_spline_method: typing.Literal['OFF','ON_PRESS','ON_CLICK'] | None
|
|
302
237
|
:param toggle_vector: Toggle Vector, Toggle between Vector and Auto handles
|
|
303
|
-
:type toggle_vector: bool | None
|
|
304
238
|
:param cycle_handle_type: Cycle Handle Type, Cycle between all four handle types
|
|
305
|
-
:type cycle_handle_type: bool | None
|
|
306
239
|
"""
|
|
307
240
|
|
|
308
241
|
def primitive_bezier_circle_add(
|
|
@@ -327,12 +260,8 @@ def primitive_bezier_circle_add(
|
|
|
327
260
|
) -> None:
|
|
328
261
|
"""Construct a Bézier Circle
|
|
329
262
|
|
|
330
|
-
:type execution_context: int | str | None
|
|
331
|
-
:type undo: bool | None
|
|
332
263
|
:param radius: Radius
|
|
333
|
-
:type radius: float | None
|
|
334
264
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
335
|
-
:type enter_editmode: bool | None
|
|
336
265
|
:param align: Align, The alignment of the new object
|
|
337
266
|
|
|
338
267
|
WORLD
|
|
@@ -343,13 +272,9 @@ def primitive_bezier_circle_add(
|
|
|
343
272
|
|
|
344
273
|
CURSOR
|
|
345
274
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
346
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
347
275
|
:param location: Location, Location for the newly added object
|
|
348
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
349
276
|
:param rotation: Rotation, Rotation for the newly added object
|
|
350
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
351
277
|
:param scale: Scale, Scale for the newly added object
|
|
352
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
353
278
|
"""
|
|
354
279
|
|
|
355
280
|
def primitive_bezier_curve_add(
|
|
@@ -374,12 +299,8 @@ def primitive_bezier_curve_add(
|
|
|
374
299
|
) -> None:
|
|
375
300
|
"""Construct a Bézier Curve
|
|
376
301
|
|
|
377
|
-
:type execution_context: int | str | None
|
|
378
|
-
:type undo: bool | None
|
|
379
302
|
:param radius: Radius
|
|
380
|
-
:type radius: float | None
|
|
381
303
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
382
|
-
:type enter_editmode: bool | None
|
|
383
304
|
:param align: Align, The alignment of the new object
|
|
384
305
|
|
|
385
306
|
WORLD
|
|
@@ -390,13 +311,9 @@ def primitive_bezier_curve_add(
|
|
|
390
311
|
|
|
391
312
|
CURSOR
|
|
392
313
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
393
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
394
314
|
:param location: Location, Location for the newly added object
|
|
395
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
396
315
|
:param rotation: Rotation, Rotation for the newly added object
|
|
397
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
398
316
|
:param scale: Scale, Scale for the newly added object
|
|
399
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
400
317
|
"""
|
|
401
318
|
|
|
402
319
|
def primitive_nurbs_circle_add(
|
|
@@ -421,12 +338,8 @@ def primitive_nurbs_circle_add(
|
|
|
421
338
|
) -> None:
|
|
422
339
|
"""Construct a Nurbs Circle
|
|
423
340
|
|
|
424
|
-
:type execution_context: int | str | None
|
|
425
|
-
:type undo: bool | None
|
|
426
341
|
:param radius: Radius
|
|
427
|
-
:type radius: float | None
|
|
428
342
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
429
|
-
:type enter_editmode: bool | None
|
|
430
343
|
:param align: Align, The alignment of the new object
|
|
431
344
|
|
|
432
345
|
WORLD
|
|
@@ -437,13 +350,9 @@ def primitive_nurbs_circle_add(
|
|
|
437
350
|
|
|
438
351
|
CURSOR
|
|
439
352
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
440
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
441
353
|
:param location: Location, Location for the newly added object
|
|
442
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
443
354
|
:param rotation: Rotation, Rotation for the newly added object
|
|
444
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
445
355
|
:param scale: Scale, Scale for the newly added object
|
|
446
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
447
356
|
"""
|
|
448
357
|
|
|
449
358
|
def primitive_nurbs_curve_add(
|
|
@@ -468,12 +377,8 @@ def primitive_nurbs_curve_add(
|
|
|
468
377
|
) -> None:
|
|
469
378
|
"""Construct a Nurbs Curve
|
|
470
379
|
|
|
471
|
-
:type execution_context: int | str | None
|
|
472
|
-
:type undo: bool | None
|
|
473
380
|
:param radius: Radius
|
|
474
|
-
:type radius: float | None
|
|
475
381
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
476
|
-
:type enter_editmode: bool | None
|
|
477
382
|
:param align: Align, The alignment of the new object
|
|
478
383
|
|
|
479
384
|
WORLD
|
|
@@ -484,13 +389,9 @@ def primitive_nurbs_curve_add(
|
|
|
484
389
|
|
|
485
390
|
CURSOR
|
|
486
391
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
487
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
488
392
|
:param location: Location, Location for the newly added object
|
|
489
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
490
393
|
:param rotation: Rotation, Rotation for the newly added object
|
|
491
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
492
394
|
:param scale: Scale, Scale for the newly added object
|
|
493
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
494
395
|
"""
|
|
495
396
|
|
|
496
397
|
def primitive_nurbs_path_add(
|
|
@@ -515,12 +416,8 @@ def primitive_nurbs_path_add(
|
|
|
515
416
|
) -> None:
|
|
516
417
|
"""Construct a Path
|
|
517
418
|
|
|
518
|
-
:type execution_context: int | str | None
|
|
519
|
-
:type undo: bool | None
|
|
520
419
|
:param radius: Radius
|
|
521
|
-
:type radius: float | None
|
|
522
420
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
523
|
-
:type enter_editmode: bool | None
|
|
524
421
|
:param align: Align, The alignment of the new object
|
|
525
422
|
|
|
526
423
|
WORLD
|
|
@@ -531,13 +428,9 @@ def primitive_nurbs_path_add(
|
|
|
531
428
|
|
|
532
429
|
CURSOR
|
|
533
430
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
534
|
-
:type align: typing.Literal['WORLD','VIEW','CURSOR'] | None
|
|
535
431
|
:param location: Location, Location for the newly added object
|
|
536
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
537
432
|
:param rotation: Rotation, Rotation for the newly added object
|
|
538
|
-
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
539
433
|
:param scale: Scale, Scale for the newly added object
|
|
540
|
-
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
541
434
|
"""
|
|
542
435
|
|
|
543
436
|
def radius_set(
|
|
@@ -549,10 +442,7 @@ def radius_set(
|
|
|
549
442
|
) -> None:
|
|
550
443
|
"""Set per-point radius which is used for bevel tapering
|
|
551
444
|
|
|
552
|
-
:type execution_context: int | str | None
|
|
553
|
-
:type undo: bool | None
|
|
554
445
|
:param radius: Radius
|
|
555
|
-
:type radius: float | None
|
|
556
446
|
"""
|
|
557
447
|
|
|
558
448
|
def reveal(
|
|
@@ -564,10 +454,7 @@ def reveal(
|
|
|
564
454
|
) -> None:
|
|
565
455
|
"""Reveal hidden control points
|
|
566
456
|
|
|
567
|
-
:type execution_context: int | str | None
|
|
568
|
-
:type undo: bool | None
|
|
569
457
|
:param select: Select
|
|
570
|
-
:type select: bool | None
|
|
571
458
|
"""
|
|
572
459
|
|
|
573
460
|
def select_all(
|
|
@@ -579,8 +466,6 @@ def select_all(
|
|
|
579
466
|
) -> None:
|
|
580
467
|
"""(De)select all control points
|
|
581
468
|
|
|
582
|
-
:type execution_context: int | str | None
|
|
583
|
-
:type undo: bool | None
|
|
584
469
|
:param action: Action, Selection action to execute
|
|
585
470
|
|
|
586
471
|
TOGGLE
|
|
@@ -594,26 +479,21 @@ def select_all(
|
|
|
594
479
|
|
|
595
480
|
INVERT
|
|
596
481
|
Invert -- Invert selection of all elements.
|
|
597
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
598
482
|
"""
|
|
599
483
|
|
|
600
484
|
def select_less(
|
|
601
|
-
execution_context: int | str | None = None,
|
|
485
|
+
execution_context: int | str | None = None,
|
|
486
|
+
undo: bool | None = None,
|
|
487
|
+
/,
|
|
602
488
|
) -> None:
|
|
603
|
-
"""Deselect control points at the boundary of each selection region
|
|
604
|
-
|
|
605
|
-
:type execution_context: int | str | None
|
|
606
|
-
:type undo: bool | None
|
|
607
|
-
"""
|
|
489
|
+
"""Deselect control points at the boundary of each selection region"""
|
|
608
490
|
|
|
609
491
|
def select_linked(
|
|
610
|
-
execution_context: int | str | None = None,
|
|
492
|
+
execution_context: int | str | None = None,
|
|
493
|
+
undo: bool | None = None,
|
|
494
|
+
/,
|
|
611
495
|
) -> None:
|
|
612
|
-
"""Select all control points linked to the current selection
|
|
613
|
-
|
|
614
|
-
:type execution_context: int | str | None
|
|
615
|
-
:type undo: bool | None
|
|
616
|
-
"""
|
|
496
|
+
"""Select all control points linked to the current selection"""
|
|
617
497
|
|
|
618
498
|
def select_linked_pick(
|
|
619
499
|
execution_context: int | str | None = None,
|
|
@@ -624,29 +504,22 @@ def select_linked_pick(
|
|
|
624
504
|
) -> None:
|
|
625
505
|
"""Select all control points linked to already selected ones
|
|
626
506
|
|
|
627
|
-
:type execution_context: int | str | None
|
|
628
|
-
:type undo: bool | None
|
|
629
507
|
:param deselect: Deselect, Deselect linked control points rather than selecting them
|
|
630
|
-
:type deselect: bool | None
|
|
631
508
|
"""
|
|
632
509
|
|
|
633
510
|
def select_more(
|
|
634
|
-
execution_context: int | str | None = None,
|
|
511
|
+
execution_context: int | str | None = None,
|
|
512
|
+
undo: bool | None = None,
|
|
513
|
+
/,
|
|
635
514
|
) -> None:
|
|
636
|
-
"""Select control points at the boundary of each selection region
|
|
637
|
-
|
|
638
|
-
:type execution_context: int | str | None
|
|
639
|
-
:type undo: bool | None
|
|
640
|
-
"""
|
|
515
|
+
"""Select control points at the boundary of each selection region"""
|
|
641
516
|
|
|
642
517
|
def select_next(
|
|
643
|
-
execution_context: int | str | None = None,
|
|
518
|
+
execution_context: int | str | None = None,
|
|
519
|
+
undo: bool | None = None,
|
|
520
|
+
/,
|
|
644
521
|
) -> None:
|
|
645
|
-
"""Select control points following already selected ones along the curves
|
|
646
|
-
|
|
647
|
-
:type execution_context: int | str | None
|
|
648
|
-
:type undo: bool | None
|
|
649
|
-
"""
|
|
522
|
+
"""Select control points following already selected ones along the curves"""
|
|
650
523
|
|
|
651
524
|
def select_nth(
|
|
652
525
|
execution_context: int | str | None = None,
|
|
@@ -659,24 +532,17 @@ def select_nth(
|
|
|
659
532
|
) -> None:
|
|
660
533
|
"""Deselect every Nth point starting from the active one
|
|
661
534
|
|
|
662
|
-
:type execution_context: int | str | None
|
|
663
|
-
:type undo: bool | None
|
|
664
535
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
665
|
-
:type skip: int | None
|
|
666
536
|
:param nth: Selected, Number of selected elements in the repetitive sequence
|
|
667
|
-
:type nth: int | None
|
|
668
537
|
:param offset: Offset, Offset from the starting point
|
|
669
|
-
:type offset: int | None
|
|
670
538
|
"""
|
|
671
539
|
|
|
672
540
|
def select_previous(
|
|
673
|
-
execution_context: int | str | None = None,
|
|
541
|
+
execution_context: int | str | None = None,
|
|
542
|
+
undo: bool | None = None,
|
|
543
|
+
/,
|
|
674
544
|
) -> None:
|
|
675
|
-
"""Select control points preceding already selected ones along the curves
|
|
676
|
-
|
|
677
|
-
:type execution_context: int | str | None
|
|
678
|
-
:type undo: bool | None
|
|
679
|
-
"""
|
|
545
|
+
"""Select control points preceding already selected ones along the curves"""
|
|
680
546
|
|
|
681
547
|
def select_random(
|
|
682
548
|
execution_context: int | str | None = None,
|
|
@@ -689,12 +555,8 @@ def select_random(
|
|
|
689
555
|
) -> None:
|
|
690
556
|
"""Randomly select some control points
|
|
691
557
|
|
|
692
|
-
:type execution_context: int | str | None
|
|
693
|
-
:type undo: bool | None
|
|
694
558
|
:param ratio: Ratio, Portion of items to select randomly
|
|
695
|
-
:type ratio: float | None
|
|
696
559
|
:param seed: Random Seed, Seed for the random number generator
|
|
697
|
-
:type seed: int | None
|
|
698
560
|
:param action: Action, Selection action to execute
|
|
699
561
|
|
|
700
562
|
SELECT
|
|
@@ -702,17 +564,14 @@ def select_random(
|
|
|
702
564
|
|
|
703
565
|
DESELECT
|
|
704
566
|
Deselect -- Deselect all elements.
|
|
705
|
-
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
706
567
|
"""
|
|
707
568
|
|
|
708
569
|
def select_row(
|
|
709
|
-
execution_context: int | str | None = None,
|
|
570
|
+
execution_context: int | str | None = None,
|
|
571
|
+
undo: bool | None = None,
|
|
572
|
+
/,
|
|
710
573
|
) -> None:
|
|
711
|
-
"""Select a row of control points including active one. Successive use on the same point switches between U/V directions
|
|
712
|
-
|
|
713
|
-
:type execution_context: int | str | None
|
|
714
|
-
:type undo: bool | None
|
|
715
|
-
"""
|
|
574
|
+
"""Select a row of control points including active one. Successive use on the same point switches between U/V directions"""
|
|
716
575
|
|
|
717
576
|
def select_similar(
|
|
718
577
|
execution_context: int | str | None = None,
|
|
@@ -725,87 +584,66 @@ def select_similar(
|
|
|
725
584
|
) -> None:
|
|
726
585
|
"""Select similar curve points by property type
|
|
727
586
|
|
|
728
|
-
:type execution_context: int | str | None
|
|
729
|
-
:type undo: bool | None
|
|
730
587
|
:param type: Type
|
|
731
|
-
:type type: typing.Literal['TYPE','RADIUS','WEIGHT','DIRECTION'] | None
|
|
732
588
|
:param compare: Compare
|
|
733
|
-
:type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
|
|
734
589
|
:param threshold: Threshold
|
|
735
|
-
:type threshold: float | None
|
|
736
590
|
"""
|
|
737
591
|
|
|
738
592
|
def separate(
|
|
739
|
-
execution_context: int | str | None = None,
|
|
593
|
+
execution_context: int | str | None = None,
|
|
594
|
+
undo: bool | None = None,
|
|
595
|
+
/,
|
|
740
596
|
) -> None:
|
|
741
|
-
"""Separate selected points from connected unselected points into a new object
|
|
742
|
-
|
|
743
|
-
:type execution_context: int | str | None
|
|
744
|
-
:type undo: bool | None
|
|
745
|
-
"""
|
|
597
|
+
"""Separate selected points from connected unselected points into a new object"""
|
|
746
598
|
|
|
747
599
|
def shade_flat(
|
|
748
|
-
execution_context: int | str | None = None,
|
|
600
|
+
execution_context: int | str | None = None,
|
|
601
|
+
undo: bool | None = None,
|
|
602
|
+
/,
|
|
749
603
|
) -> None:
|
|
750
|
-
"""Set shading to flat
|
|
751
|
-
|
|
752
|
-
:type execution_context: int | str | None
|
|
753
|
-
:type undo: bool | None
|
|
754
|
-
"""
|
|
604
|
+
"""Set shading to flat"""
|
|
755
605
|
|
|
756
606
|
def shade_smooth(
|
|
757
|
-
execution_context: int | str | None = None,
|
|
607
|
+
execution_context: int | str | None = None,
|
|
608
|
+
undo: bool | None = None,
|
|
609
|
+
/,
|
|
758
610
|
) -> None:
|
|
759
|
-
"""Set shading to smooth
|
|
760
|
-
|
|
761
|
-
:type execution_context: int | str | None
|
|
762
|
-
:type undo: bool | None
|
|
763
|
-
"""
|
|
611
|
+
"""Set shading to smooth"""
|
|
764
612
|
|
|
765
613
|
def shortest_path_pick(
|
|
766
|
-
execution_context: int | str | None = None,
|
|
614
|
+
execution_context: int | str | None = None,
|
|
615
|
+
undo: bool | None = None,
|
|
616
|
+
/,
|
|
767
617
|
) -> None:
|
|
768
|
-
"""Select shortest path between two selections
|
|
769
|
-
|
|
770
|
-
:type execution_context: int | str | None
|
|
771
|
-
:type undo: bool | None
|
|
772
|
-
"""
|
|
618
|
+
"""Select shortest path between two selections"""
|
|
773
619
|
|
|
774
620
|
def smooth(
|
|
775
|
-
execution_context: int | str | None = None,
|
|
621
|
+
execution_context: int | str | None = None,
|
|
622
|
+
undo: bool | None = None,
|
|
623
|
+
/,
|
|
776
624
|
) -> None:
|
|
777
|
-
"""Flatten angles of selected points
|
|
778
|
-
|
|
779
|
-
:type execution_context: int | str | None
|
|
780
|
-
:type undo: bool | None
|
|
781
|
-
"""
|
|
625
|
+
"""Flatten angles of selected points"""
|
|
782
626
|
|
|
783
627
|
def smooth_radius(
|
|
784
|
-
execution_context: int | str | None = None,
|
|
628
|
+
execution_context: int | str | None = None,
|
|
629
|
+
undo: bool | None = None,
|
|
630
|
+
/,
|
|
785
631
|
) -> None:
|
|
786
|
-
"""Interpolate radii of selected points
|
|
787
|
-
|
|
788
|
-
:type execution_context: int | str | None
|
|
789
|
-
:type undo: bool | None
|
|
790
|
-
"""
|
|
632
|
+
"""Interpolate radii of selected points"""
|
|
791
633
|
|
|
792
634
|
def smooth_tilt(
|
|
793
|
-
execution_context: int | str | None = None,
|
|
635
|
+
execution_context: int | str | None = None,
|
|
636
|
+
undo: bool | None = None,
|
|
637
|
+
/,
|
|
794
638
|
) -> None:
|
|
795
|
-
"""Interpolate tilt of selected points
|
|
796
|
-
|
|
797
|
-
:type execution_context: int | str | None
|
|
798
|
-
:type undo: bool | None
|
|
799
|
-
"""
|
|
639
|
+
"""Interpolate tilt of selected points"""
|
|
800
640
|
|
|
801
641
|
def smooth_weight(
|
|
802
|
-
execution_context: int | str | None = None,
|
|
642
|
+
execution_context: int | str | None = None,
|
|
643
|
+
undo: bool | None = None,
|
|
644
|
+
/,
|
|
803
645
|
) -> None:
|
|
804
|
-
"""Interpolate weight of selected points
|
|
805
|
-
|
|
806
|
-
:type execution_context: int | str | None
|
|
807
|
-
:type undo: bool | None
|
|
808
|
-
"""
|
|
646
|
+
"""Interpolate weight of selected points"""
|
|
809
647
|
|
|
810
648
|
def spin(
|
|
811
649
|
execution_context: int | str | None = None,
|
|
@@ -817,12 +655,8 @@ def spin(
|
|
|
817
655
|
) -> None:
|
|
818
656
|
"""Extrude selected boundary row around pivot point and current view axis
|
|
819
657
|
|
|
820
|
-
:type execution_context: int | str | None
|
|
821
|
-
:type undo: bool | None
|
|
822
658
|
:param center: Center, Center in global view space
|
|
823
|
-
:type center: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
824
659
|
:param axis: Axis, Axis in global view space
|
|
825
|
-
:type axis: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
826
660
|
"""
|
|
827
661
|
|
|
828
662
|
def spline_type_set(
|
|
@@ -835,12 +669,8 @@ def spline_type_set(
|
|
|
835
669
|
) -> None:
|
|
836
670
|
"""Set type of active spline
|
|
837
671
|
|
|
838
|
-
:type execution_context: int | str | None
|
|
839
|
-
:type undo: bool | None
|
|
840
672
|
:param type: Type, Spline type
|
|
841
|
-
:type type: typing.Literal['POLY','BEZIER','NURBS'] | None
|
|
842
673
|
:param use_handles: Handles, Use handles when converting Bézier curves into polygons
|
|
843
|
-
:type use_handles: bool | None
|
|
844
674
|
"""
|
|
845
675
|
|
|
846
676
|
def spline_weight_set(
|
|
@@ -852,18 +682,15 @@ def spline_weight_set(
|
|
|
852
682
|
) -> None:
|
|
853
683
|
"""Set softbody goal weight for selected points
|
|
854
684
|
|
|
855
|
-
:type execution_context: int | str | None
|
|
856
|
-
:type undo: bool | None
|
|
857
685
|
:param weight: Weight
|
|
858
|
-
:type weight: float | None
|
|
859
686
|
"""
|
|
860
687
|
|
|
861
|
-
def split(
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
"""
|
|
688
|
+
def split(
|
|
689
|
+
execution_context: int | str | None = None,
|
|
690
|
+
undo: bool | None = None,
|
|
691
|
+
/,
|
|
692
|
+
) -> None:
|
|
693
|
+
"""Split off selected points from connected unselected points"""
|
|
867
694
|
|
|
868
695
|
def subdivide(
|
|
869
696
|
execution_context: int | str | None = None,
|
|
@@ -874,29 +701,22 @@ def subdivide(
|
|
|
874
701
|
) -> None:
|
|
875
702
|
"""Subdivide selected segments
|
|
876
703
|
|
|
877
|
-
:type execution_context: int | str | None
|
|
878
|
-
:type undo: bool | None
|
|
879
704
|
:param number_cuts: Number of Cuts
|
|
880
|
-
:type number_cuts: int | None
|
|
881
705
|
"""
|
|
882
706
|
|
|
883
707
|
def switch_direction(
|
|
884
|
-
execution_context: int | str | None = None,
|
|
708
|
+
execution_context: int | str | None = None,
|
|
709
|
+
undo: bool | None = None,
|
|
710
|
+
/,
|
|
885
711
|
) -> None:
|
|
886
|
-
"""Switch direction of selected splines
|
|
887
|
-
|
|
888
|
-
:type execution_context: int | str | None
|
|
889
|
-
:type undo: bool | None
|
|
890
|
-
"""
|
|
712
|
+
"""Switch direction of selected splines"""
|
|
891
713
|
|
|
892
714
|
def tilt_clear(
|
|
893
|
-
execution_context: int | str | None = None,
|
|
715
|
+
execution_context: int | str | None = None,
|
|
716
|
+
undo: bool | None = None,
|
|
717
|
+
/,
|
|
894
718
|
) -> None:
|
|
895
|
-
"""Clear the tilt of selected control points
|
|
896
|
-
|
|
897
|
-
:type execution_context: int | str | None
|
|
898
|
-
:type undo: bool | None
|
|
899
|
-
"""
|
|
719
|
+
"""Clear the tilt of selected control points"""
|
|
900
720
|
|
|
901
721
|
def vertex_add(
|
|
902
722
|
execution_context: int | str | None = None,
|
|
@@ -911,8 +731,5 @@ def vertex_add(
|
|
|
911
731
|
) -> None:
|
|
912
732
|
"""Add a new control point (linked to only selected end-curve one, if any)
|
|
913
733
|
|
|
914
|
-
:type execution_context: int | str | None
|
|
915
|
-
:type undo: bool | None
|
|
916
734
|
:param location: Location, Location to add new vertex at
|
|
917
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
918
735
|
"""
|