fake-bpy-module 20231205__py3-none-any.whl → 20231207__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- addon_utils/__init__.pyi +84 -0
- animsys_refactor/__init__.pyi +55 -0
- aud/__init__.pyi +1190 -0
- bgl/__init__.pyi +5084 -0
- bl_app_override/__init__.pyi +31 -0
- bl_app_override/helpers/__init__.pyi +42 -0
- bl_app_override/helpers/py.typed +0 -0
- bl_app_template_utils/__init__.pyi +36 -0
- bl_console_utils/autocomplete/__init__.pyi +8 -0
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_calltip/py.typed +0 -0
- bl_console_utils/autocomplete/complete_import/__init__.pyi +28 -0
- bl_console_utils/autocomplete/complete_import/py.typed +0 -0
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_namespace/py.typed +0 -0
- bl_console_utils/autocomplete/intellisense/__init__.pyi +20 -0
- bl_console_utils/autocomplete/intellisense/py.typed +0 -0
- bl_i18n_utils/__init__.pyi +11 -0
- bl_i18n_utils/bl_extract_messages/__init__.pyi +124 -0
- bl_i18n_utils/bl_extract_messages/py.typed +0 -0
- bl_i18n_utils/merge_po/__init__.pyi +12 -0
- bl_i18n_utils/merge_po/py.typed +0 -0
- bl_i18n_utils/settings/__init__.pyi +66 -0
- bl_i18n_utils/settings/py.typed +0 -0
- bl_i18n_utils/utils/__init__.pyi +338 -0
- bl_i18n_utils/utils/py.typed +0 -0
- bl_i18n_utils/utils_cli/__init__.pyi +52 -0
- bl_i18n_utils/utils_cli/py.typed +0 -0
- bl_i18n_utils/utils_languages_menu/__init__.pyi +12 -0
- bl_i18n_utils/utils_languages_menu/py.typed +0 -0
- bl_i18n_utils/utils_rtl/__init__.pyi +20 -0
- bl_i18n_utils/utils_rtl/py.typed +0 -0
- bl_keymap_utils/__init__.pyi +9 -0
- bl_keymap_utils/io/__init__.pyi +76 -0
- bl_keymap_utils/io/py.typed +0 -0
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +12 -0
- bl_keymap_utils/keymap_from_toolbar/py.typed +0 -0
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +12 -0
- bl_keymap_utils/keymap_hierarchy/py.typed +0 -0
- bl_keymap_utils/platform_helpers/__init__.pyi +20 -0
- bl_keymap_utils/platform_helpers/py.typed +0 -0
- bl_keymap_utils/versioning/__init__.pyi +12 -0
- bl_keymap_utils/versioning/py.typed +0 -0
- bl_math/__init__.pyi +52 -0
- bl_operators/__init__.pyi +49 -0
- bl_operators/add_mesh_torus/__init__.pyi +231 -0
- bl_operators/add_mesh_torus/py.typed +0 -0
- bl_operators/anim/__init__.pyi +1291 -0
- bl_operators/anim/py.typed +0 -0
- bl_operators/assets/__init__.pyi +586 -0
- bl_operators/assets/py.typed +0 -0
- bl_operators/bmesh/find_adjacent/__init__.pyi +76 -0
- bl_operators/bmesh/find_adjacent/py.typed +0 -0
- bl_operators/clip/__init__.pyi +1898 -0
- bl_operators/clip/py.typed +0 -0
- bl_operators/console/__init__.pyi +918 -0
- bl_operators/console/py.typed +0 -0
- bl_operators/constraint/__init__.pyi +745 -0
- bl_operators/constraint/py.typed +0 -0
- bl_operators/file/__init__.pyi +560 -0
- bl_operators/file/py.typed +0 -0
- bl_operators/freestyle/__init__.pyi +751 -0
- bl_operators/freestyle/py.typed +0 -0
- bl_operators/geometry_nodes/__init__.pyi +2553 -0
- bl_operators/geometry_nodes/py.typed +0 -0
- bl_operators/image/__init__.pyi +548 -0
- bl_operators/image/py.typed +0 -0
- bl_operators/mesh/__init__.pyi +566 -0
- bl_operators/mesh/py.typed +0 -0
- bl_operators/node/__init__.pyi +1814 -0
- bl_operators/node/py.typed +0 -0
- bl_operators/object/__init__.pyi +3212 -0
- bl_operators/object/py.typed +0 -0
- bl_operators/object_align/__init__.pyi +215 -0
- bl_operators/object_align/py.typed +0 -0
- bl_operators/object_quick_effects/__init__.pyi +777 -0
- bl_operators/object_quick_effects/py.typed +0 -0
- bl_operators/object_randomize_transform/__init__.pyi +199 -0
- bl_operators/object_randomize_transform/py.typed +0 -0
- bl_operators/presets/__init__.pyi +3776 -0
- bl_operators/presets/py.typed +0 -0
- bl_operators/rigidbody/__init__.pyi +566 -0
- bl_operators/rigidbody/py.typed +0 -0
- bl_operators/screen_play_rendered_anim/__init__.pyi +192 -0
- bl_operators/screen_play_rendered_anim/py.typed +0 -0
- bl_operators/sequencer/__init__.pyi +1001 -0
- bl_operators/sequencer/py.typed +0 -0
- bl_operators/spreadsheet/__init__.pyi +202 -0
- bl_operators/spreadsheet/py.typed +0 -0
- bl_operators/userpref/__init__.pyi +4701 -0
- bl_operators/userpref/py.typed +0 -0
- bl_operators/uvcalc_follow_active/__init__.pyi +212 -0
- bl_operators/uvcalc_follow_active/py.typed +0 -0
- bl_operators/uvcalc_lightmap/__init__.pyi +257 -0
- bl_operators/uvcalc_lightmap/py.typed +0 -0
- bl_operators/uvcalc_transform/__init__.pyi +501 -0
- bl_operators/uvcalc_transform/py.typed +0 -0
- bl_operators/vertexpaint_dirt/__init__.pyi +207 -0
- bl_operators/vertexpaint_dirt/py.typed +0 -0
- bl_operators/view3d/__init__.pyi +955 -0
- bl_operators/view3d/py.typed +0 -0
- bl_operators/wm/__init__.pyi +8409 -0
- bl_operators/wm/py.typed +0 -0
- bl_previews_utils/bl_previews_render/__init__.pyi +60 -0
- bl_previews_utils/bl_previews_render/py.typed +0 -0
- bl_rna_utils/data_path/__init__.pyi +25 -0
- bl_rna_utils/data_path/py.typed +0 -0
- bl_text_utils/external_editor/__init__.pyi +12 -0
- bl_text_utils/external_editor/py.typed +0 -0
- bl_ui/__init__.pyi +706 -0
- bl_ui/asset_shelf/__init__.pyi +202 -0
- bl_ui/asset_shelf/py.typed +0 -0
- bl_ui/generic_ui_list/__init__.pyi +629 -0
- bl_ui/generic_ui_list/py.typed +0 -0
- bl_ui/node_add_menu/__init__.pyi +260 -0
- bl_ui/node_add_menu/py.typed +0 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +3739 -0
- bl_ui/node_add_menu_compositor/py.typed +0 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +8520 -0
- bl_ui/node_add_menu_geometry/py.typed +0 -0
- bl_ui/node_add_menu_shader/__init__.pyi +2139 -0
- bl_ui/node_add_menu_shader/py.typed +0 -0
- bl_ui/node_add_menu_texture/__init__.pyi +1868 -0
- bl_ui/node_add_menu_texture/py.typed +0 -0
- bl_ui/properties_animviz/__init__.pyi +38 -0
- bl_ui/properties_animviz/py.typed +0 -0
- bl_ui/properties_collection/__init__.pyi +1051 -0
- bl_ui/properties_collection/py.typed +0 -0
- bl_ui/properties_constraint/__init__.pyi +29694 -0
- bl_ui/properties_constraint/py.typed +0 -0
- bl_ui/properties_data_armature/__init__.pyi +2274 -0
- bl_ui/properties_data_armature/py.typed +0 -0
- bl_ui/properties_data_bone/__init__.pyi +2087 -0
- bl_ui/properties_data_bone/py.typed +0 -0
- bl_ui/properties_data_camera/__init__.pyi +3004 -0
- bl_ui/properties_data_camera/py.typed +0 -0
- bl_ui/properties_data_curve/__init__.pyi +3164 -0
- bl_ui/properties_data_curve/py.typed +0 -0
- bl_ui/properties_data_curves/__init__.pyi +1247 -0
- bl_ui/properties_data_curves/py.typed +0 -0
- bl_ui/properties_data_empty/__init__.pyi +426 -0
- bl_ui/properties_data_empty/py.typed +0 -0
- bl_ui/properties_data_gpencil/__init__.pyi +3758 -0
- bl_ui/properties_data_gpencil/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +632 -0
- bl_ui/properties_data_grease_pencil/py.typed +0 -0
- bl_ui/properties_data_lattice/__init__.pyi +637 -0
- bl_ui/properties_data_lattice/py.typed +0 -0
- bl_ui/properties_data_light/__init__.pyi +2111 -0
- bl_ui/properties_data_light/py.typed +0 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +1264 -0
- bl_ui/properties_data_lightprobe/py.typed +0 -0
- bl_ui/properties_data_mesh/__init__.pyi +4052 -0
- bl_ui/properties_data_mesh/py.typed +0 -0
- bl_ui/properties_data_metaball/__init__.pyi +1047 -0
- bl_ui/properties_data_metaball/py.typed +0 -0
- bl_ui/properties_data_modifier/__init__.pyi +1741 -0
- bl_ui/properties_data_modifier/py.typed +0 -0
- bl_ui/properties_data_pointcloud/__init__.pyi +1045 -0
- bl_ui/properties_data_pointcloud/py.typed +0 -0
- bl_ui/properties_data_shaderfx/__init__.pyi +214 -0
- bl_ui/properties_data_shaderfx/py.typed +0 -0
- bl_ui/properties_data_speaker/__init__.pyi +1056 -0
- bl_ui/properties_data_speaker/py.typed +0 -0
- bl_ui/properties_data_volume/__init__.pyi +1652 -0
- bl_ui/properties_data_volume/py.typed +0 -0
- bl_ui/properties_freestyle/__init__.pyi +5309 -0
- bl_ui/properties_freestyle/py.typed +0 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +2780 -0
- bl_ui/properties_grease_pencil_common/py.typed +0 -0
- bl_ui/properties_mask_common/__init__.pyi +1554 -0
- bl_ui/properties_mask_common/py.typed +0 -0
- bl_ui/properties_material/__init__.pyi +3117 -0
- bl_ui/properties_material/py.typed +0 -0
- bl_ui/properties_material_gpencil/__init__.pyi +2086 -0
- bl_ui/properties_material_gpencil/py.typed +0 -0
- bl_ui/properties_object/__init__.pyi +2875 -0
- bl_ui/properties_object/py.typed +0 -0
- bl_ui/properties_output/__init__.pyi +3799 -0
- bl_ui/properties_output/py.typed +0 -0
- bl_ui/properties_paint_common/__init__.pyi +814 -0
- bl_ui/properties_paint_common/py.typed +0 -0
- bl_ui/properties_particle/__init__.pyi +10938 -0
- bl_ui/properties_particle/py.typed +0 -0
- bl_ui/properties_physics_cloth/__init__.pyi +2984 -0
- bl_ui/properties_physics_cloth/py.typed +0 -0
- bl_ui/properties_physics_common/__init__.pyi +277 -0
- bl_ui/properties_physics_common/py.typed +0 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +5431 -0
- bl_ui/properties_physics_dynamicpaint/py.typed +0 -0
- bl_ui/properties_physics_field/__init__.pyi +2220 -0
- bl_ui/properties_physics_field/py.typed +0 -0
- bl_ui/properties_physics_fluid/__init__.pyi +7296 -0
- bl_ui/properties_physics_fluid/py.typed +0 -0
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +214 -0
- bl_ui/properties_physics_geometry_nodes/py.typed +0 -0
- bl_ui/properties_physics_rigidbody/__init__.pyi +1698 -0
- bl_ui/properties_physics_rigidbody/py.typed +0 -0
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2734 -0
- bl_ui/properties_physics_rigidbody_constraint/py.typed +0 -0
- bl_ui/properties_physics_softbody/__init__.pyi +3198 -0
- bl_ui/properties_physics_softbody/py.typed +0 -0
- bl_ui/properties_render/__init__.pyi +12664 -0
- bl_ui/properties_render/py.typed +0 -0
- bl_ui/properties_scene/__init__.pyi +2872 -0
- bl_ui/properties_scene/py.typed +0 -0
- bl_ui/properties_texture/__init__.pyi +5470 -0
- bl_ui/properties_texture/py.typed +0 -0
- bl_ui/properties_view_layer/__init__.pyi +3493 -0
- bl_ui/properties_view_layer/py.typed +0 -0
- bl_ui/properties_workspace/__init__.pyi +630 -0
- bl_ui/properties_workspace/py.typed +0 -0
- bl_ui/properties_world/__init__.pyi +1478 -0
- bl_ui/properties_world/py.typed +0 -0
- bl_ui/space_clip/__init__.pyi +14313 -0
- bl_ui/space_clip/py.typed +0 -0
- bl_ui/space_console/__init__.pyi +1221 -0
- bl_ui/space_console/py.typed +0 -0
- bl_ui/space_dopesheet/__init__.pyi +5388 -0
- bl_ui/space_dopesheet/py.typed +0 -0
- bl_ui/space_filebrowser/__init__.pyi +5996 -0
- bl_ui/space_filebrowser/py.typed +0 -0
- bl_ui/space_graph/__init__.pyi +4053 -0
- bl_ui/space_graph/py.typed +0 -0
- bl_ui/space_image/__init__.pyi +14801 -0
- bl_ui/space_image/py.typed +0 -0
- bl_ui/space_info/__init__.pyi +1216 -0
- bl_ui/space_info/py.typed +0 -0
- bl_ui/space_nla/__init__.pyi +3460 -0
- bl_ui/space_nla/py.typed +0 -0
- bl_ui/space_node/__init__.pyi +6519 -0
- bl_ui/space_node/py.typed +0 -0
- bl_ui/space_outliner/__init__.pyi +2864 -0
- bl_ui/space_outliner/py.typed +0 -0
- bl_ui/space_properties/__init__.pyi +575 -0
- bl_ui/space_properties/py.typed +0 -0
- bl_ui/space_sequencer/__init__.pyi +15360 -0
- bl_ui/space_sequencer/py.typed +0 -0
- bl_ui/space_spreadsheet/__init__.pyi +226 -0
- bl_ui/space_spreadsheet/py.typed +0 -0
- bl_ui/space_statusbar/__init__.pyi +190 -0
- bl_ui/space_statusbar/py.typed +0 -0
- bl_ui/space_text/__init__.pyi +3223 -0
- bl_ui/space_text/py.typed +0 -0
- bl_ui/space_time/__init__.pyi +1472 -0
- bl_ui/space_time/py.typed +0 -0
- bl_ui/space_toolsystem_common/__init__.pyi +435 -0
- bl_ui/space_toolsystem_common/py.typed +0 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1671 -0
- bl_ui/space_toolsystem_toolbar/py.typed +0 -0
- bl_ui/space_topbar/__init__.pyi +5296 -0
- bl_ui/space_topbar/py.typed +0 -0
- bl_ui/space_userpref/__init__.pyi +17826 -0
- bl_ui/space_userpref/py.typed +0 -0
- bl_ui/space_view3d/__init__.pyi +51846 -0
- bl_ui/space_view3d/py.typed +0 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +18993 -0
- bl_ui/space_view3d_toolbar/py.typed +0 -0
- bl_ui/utils/__init__.pyi +40 -0
- bl_ui/utils/py.typed +0 -0
- bl_ui_utils/__init__.pyi +6 -0
- bl_ui_utils/bug_report_url/__init__.pyi +12 -0
- bl_ui_utils/bug_report_url/py.typed +0 -0
- bl_ui_utils/layout/__init__.pyi +12 -0
- bl_ui_utils/layout/py.typed +0 -0
- blend_render_info/__init__.pyi +24 -0
- blf/__init__.pyi +231 -0
- bmesh/__init__.pyi +51 -0
- bmesh/geometry/__init__.pyi +23 -0
- bmesh/geometry/py.typed +0 -0
- bmesh/ops/__init__.pyi +1935 -0
- bmesh/ops/py.typed +0 -0
- bmesh/types/__init__.pyi +1399 -0
- bmesh/types/py.typed +0 -0
- bmesh/utils/__init__.pyi +207 -0
- bmesh/utils/py.typed +0 -0
- bpy/__init__.pyi +18 -0
- bpy/app/__init__.pyi +247 -0
- bpy/app/handlers/__init__.pyi +151 -0
- bpy/app/handlers/py.typed +0 -0
- bpy/app/icons/__init__.pyi +42 -0
- bpy/app/icons/py.typed +0 -0
- bpy/app/timers/__init__.pyi +42 -0
- bpy/app/timers/py.typed +0 -0
- bpy/app/translations/__init__.pyi +107 -0
- bpy/app/translations/py.typed +0 -0
- bpy/msgbus/__init__.pyi +40 -0
- bpy/msgbus/py.typed +0 -0
- bpy/ops/__init__.pyi +81 -0
- bpy/ops/action/__init__.pyi +723 -0
- bpy/ops/action/py.typed +0 -0
- bpy/ops/anim/__init__.pyi +978 -0
- bpy/ops/anim/py.typed +0 -0
- bpy/ops/armature/__init__.pyi +858 -0
- bpy/ops/armature/py.typed +0 -0
- bpy/ops/asset/__init__.pyi +339 -0
- bpy/ops/asset/py.typed +0 -0
- bpy/ops/boid/__init__.pyi +127 -0
- bpy/ops/boid/py.typed +0 -0
- bpy/ops/brush/__init__.pyi +171 -0
- bpy/ops/brush/py.typed +0 -0
- bpy/ops/buttons/__init__.pyi +255 -0
- bpy/ops/buttons/py.typed +0 -0
- bpy/ops/cachefile/__init__.pyi +241 -0
- bpy/ops/cachefile/py.typed +0 -0
- bpy/ops/camera/__init__.pyi +60 -0
- bpy/ops/camera/py.typed +0 -0
- bpy/ops/clip/__init__.pyi +1782 -0
- bpy/ops/clip/py.typed +0 -0
- bpy/ops/cloth/__init__.pyi +31 -0
- bpy/ops/cloth/py.typed +0 -0
- bpy/ops/collection/__init__.pyi +95 -0
- bpy/ops/collection/py.typed +0 -0
- bpy/ops/console/__init__.pyi +370 -0
- bpy/ops/console/py.typed +0 -0
- bpy/ops/constraint/__init__.pyi +391 -0
- bpy/ops/constraint/py.typed +0 -0
- bpy/ops/curve/__init__.pyi +1052 -0
- bpy/ops/curve/py.typed +0 -0
- bpy/ops/curves/__init__.pyi +259 -0
- bpy/ops/curves/py.typed +0 -0
- bpy/ops/cycles/__init__.pyi +67 -0
- bpy/ops/cycles/py.typed +0 -0
- bpy/ops/dpaint/__init__.pyi +87 -0
- bpy/ops/dpaint/py.typed +0 -0
- bpy/ops/ed/__init__.pyi +276 -0
- bpy/ops/ed/py.typed +0 -0
- bpy/ops/export_anim/__init__.pyi +45 -0
- bpy/ops/export_anim/py.typed +0 -0
- bpy/ops/export_mesh/__init__.pyi +62 -0
- bpy/ops/export_mesh/py.typed +0 -0
- bpy/ops/export_scene/__init__.pyi +577 -0
- bpy/ops/export_scene/py.typed +0 -0
- bpy/ops/file/__init__.pyi +787 -0
- bpy/ops/file/py.typed +0 -0
- bpy/ops/fluid/__init__.pyi +224 -0
- bpy/ops/fluid/py.typed +0 -0
- bpy/ops/font/__init__.pyi +537 -0
- bpy/ops/font/py.typed +0 -0
- bpy/ops/geometry/__init__.pyi +219 -0
- bpy/ops/geometry/py.typed +0 -0
- bpy/ops/gizmogroup/__init__.pyi +52 -0
- bpy/ops/gizmogroup/py.typed +0 -0
- bpy/ops/gpencil/__init__.pyi +3247 -0
- bpy/ops/gpencil/py.typed +0 -0
- bpy/ops/graph/__init__.pyi +1392 -0
- bpy/ops/graph/py.typed +0 -0
- bpy/ops/grease_pencil/__init__.pyi +724 -0
- bpy/ops/grease_pencil/py.typed +0 -0
- bpy/ops/image/__init__.pyi +1261 -0
- bpy/ops/image/py.typed +0 -0
- bpy/ops/import_anim/__init__.pyi +58 -0
- bpy/ops/import_anim/py.typed +0 -0
- bpy/ops/import_curve/__init__.pyi +26 -0
- bpy/ops/import_curve/py.typed +0 -0
- bpy/ops/import_mesh/__init__.pyi +50 -0
- bpy/ops/import_mesh/py.typed +0 -0
- bpy/ops/import_scene/__init__.pyi +191 -0
- bpy/ops/import_scene/py.typed +0 -0
- bpy/ops/info/__init__.pyi +140 -0
- bpy/ops/info/py.typed +0 -0
- bpy/ops/lattice/__init__.pyi +153 -0
- bpy/ops/lattice/py.typed +0 -0
- bpy/ops/marker/__init__.pyi +238 -0
- bpy/ops/marker/py.typed +0 -0
- bpy/ops/mask/__init__.pyi +747 -0
- bpy/ops/mask/py.typed +0 -0
- bpy/ops/material/__init__.pyi +47 -0
- bpy/ops/material/py.typed +0 -0
- bpy/ops/mball/__init__.pyi +168 -0
- bpy/ops/mball/py.typed +0 -0
- bpy/ops/mesh/__init__.pyi +4168 -0
- bpy/ops/mesh/py.typed +0 -0
- bpy/ops/nla/__init__.pyi +756 -0
- bpy/ops/nla/py.typed +0 -0
- bpy/ops/node/__init__.pyi +1894 -0
- bpy/ops/node/py.typed +0 -0
- bpy/ops/object/__init__.pyi +5343 -0
- bpy/ops/object/py.typed +0 -0
- bpy/ops/outliner/__init__.pyi +1172 -0
- bpy/ops/outliner/py.typed +0 -0
- bpy/ops/paint/__init__.pyi +1067 -0
- bpy/ops/paint/py.typed +0 -0
- bpy/ops/paintcurve/__init__.pyi +148 -0
- bpy/ops/paintcurve/py.typed +0 -0
- bpy/ops/palette/__init__.pyi +123 -0
- bpy/ops/palette/py.typed +0 -0
- bpy/ops/particle/__init__.pyi +635 -0
- bpy/ops/particle/py.typed +0 -0
- bpy/ops/pose/__init__.pyi +763 -0
- bpy/ops/pose/py.typed +0 -0
- bpy/ops/poselib/__init__.pyi +173 -0
- bpy/ops/poselib/py.typed +0 -0
- bpy/ops/preferences/__init__.pyi +849 -0
- bpy/ops/preferences/py.typed +0 -0
- bpy/ops/ptcache/__init__.pyi +114 -0
- bpy/ops/ptcache/py.typed +0 -0
- bpy/ops/render/__init__.pyi +262 -0
- bpy/ops/render/py.typed +0 -0
- bpy/ops/rigidbody/__init__.pyi +244 -0
- bpy/ops/rigidbody/py.typed +0 -0
- bpy/ops/scene/__init__.pyi +675 -0
- bpy/ops/scene/py.typed +0 -0
- bpy/ops/screen/__init__.pyi +846 -0
- bpy/ops/screen/py.typed +0 -0
- bpy/ops/script/__init__.pyi +60 -0
- bpy/ops/script/py.typed +0 -0
- bpy/ops/sculpt/__init__.pyi +862 -0
- bpy/ops/sculpt/py.typed +0 -0
- bpy/ops/sculpt_curves/__init__.pyi +94 -0
- bpy/ops/sculpt_curves/py.typed +0 -0
- bpy/ops/sequencer/__init__.pyi +2165 -0
- bpy/ops/sequencer/py.typed +0 -0
- bpy/ops/sound/__init__.pyi +395 -0
- bpy/ops/sound/py.typed +0 -0
- bpy/ops/spreadsheet/__init__.pyi +76 -0
- bpy/ops/spreadsheet/py.typed +0 -0
- bpy/ops/surface/__init__.pyi +215 -0
- bpy/ops/surface/py.typed +0 -0
- bpy/ops/text/__init__.pyi +863 -0
- bpy/ops/text/py.typed +0 -0
- bpy/ops/text_editor/__init__.pyi +31 -0
- bpy/ops/text_editor/py.typed +0 -0
- bpy/ops/texture/__init__.pyi +68 -0
- bpy/ops/texture/py.typed +0 -0
- bpy/ops/transform/__init__.pyi +1545 -0
- bpy/ops/transform/py.typed +0 -0
- bpy/ops/ui/__init__.pyi +536 -0
- bpy/ops/ui/py.typed +0 -0
- bpy/ops/uilist/__init__.pyi +74 -0
- bpy/ops/uilist/py.typed +0 -0
- bpy/ops/uv/__init__.pyi +1251 -0
- bpy/ops/uv/py.typed +0 -0
- bpy/ops/view2d/__init__.pyi +329 -0
- bpy/ops/view2d/py.typed +0 -0
- bpy/ops/view3d/__init__.pyi +1392 -0
- bpy/ops/view3d/py.typed +0 -0
- bpy/ops/wm/__init__.pyi +4821 -0
- bpy/ops/wm/py.typed +0 -0
- bpy/ops/workspace/__init__.pyi +115 -0
- bpy/ops/workspace/py.typed +0 -0
- bpy/ops/world/__init__.pyi +19 -0
- bpy/ops/world/py.typed +0 -0
- bpy/path/__init__.pyi +194 -0
- bpy/path/py.typed +0 -0
- bpy/props/__init__.pyi +509 -0
- bpy/props/py.typed +0 -0
- bpy/types/__init__.pyi +131533 -0
- bpy/types/py.typed +0 -0
- bpy/utils/__init__.pyi +429 -0
- bpy/utils/previews/__init__.pyi +73 -0
- bpy/utils/previews/py.typed +0 -0
- bpy/utils/units/__init__.pyi +61 -0
- bpy/utils/units/py.typed +0 -0
- bpy_extras/__init__.pyi +18 -0
- bpy_extras/anim_utils/__init__.pyi +108 -0
- bpy_extras/anim_utils/py.typed +0 -0
- bpy_extras/asset_utils/__init__.pyi +39 -0
- bpy_extras/asset_utils/py.typed +0 -0
- bpy_extras/bmesh_utils/__init__.pyi +20 -0
- bpy_extras/bmesh_utils/py.typed +0 -0
- bpy_extras/extensions/junction_module/__init__.pyi +48 -0
- bpy_extras/extensions/junction_module/py.typed +0 -0
- bpy_extras/id_map_utils/__init__.pyi +28 -0
- bpy_extras/id_map_utils/py.typed +0 -0
- bpy_extras/image_utils/__init__.pyi +42 -0
- bpy_extras/image_utils/py.typed +0 -0
- bpy_extras/io_utils/__init__.pyi +165 -0
- bpy_extras/io_utils/py.typed +0 -0
- bpy_extras/keyconfig_utils/__init__.pyi +28 -0
- bpy_extras/keyconfig_utils/py.typed +0 -0
- bpy_extras/mesh_utils/__init__.pyi +91 -0
- bpy_extras/mesh_utils/py.typed +0 -0
- bpy_extras/node_shader_utils/__init__.pyi +562 -0
- bpy_extras/node_shader_utils/py.typed +0 -0
- bpy_extras/node_utils/__init__.pyi +28 -0
- bpy_extras/node_utils/py.typed +0 -0
- bpy_extras/object_utils/__init__.pyi +87 -0
- bpy_extras/object_utils/py.typed +0 -0
- bpy_extras/view3d_utils/__init__.pyi +90 -0
- bpy_extras/view3d_utils/py.typed +0 -0
- bpy_extras/wm_utils/progress_report/__init__.pyi +98 -0
- bpy_extras/wm_utils/progress_report/py.typed +0 -0
- bpy_restrict_state/__init__.pyi +24 -0
- bpy_types/__init__.pyi +5189 -0
- console_python/__init__.pyi +71 -0
- console_shell/__init__.pyi +44 -0
- fake_bpy_module-20231207.dist-info/METADATA +175 -0
- fake_bpy_module-20231207.dist-info/RECORD +610 -0
- freestyle/chainingiterators/__init__.pyi +306 -0
- freestyle/chainingiterators/py.typed +0 -0
- freestyle/functions/__init__.pyi +1270 -0
- freestyle/functions/py.typed +0 -0
- freestyle/predicates/__init__.pyi +535 -0
- freestyle/predicates/py.typed +0 -0
- freestyle/shaders/__init__.pyi +872 -0
- freestyle/shaders/py.typed +0 -0
- freestyle/types/__init__.pyi +2407 -0
- freestyle/types/py.typed +0 -0
- freestyle/utils/ContextFunctions/__init__.pyi +127 -0
- freestyle/utils/ContextFunctions/py.typed +0 -0
- freestyle/utils/__init__.pyi +246 -0
- gpu/capabilities/__init__.pyi +186 -0
- gpu/capabilities/py.typed +0 -0
- gpu/matrix/__init__.pyi +162 -0
- gpu/matrix/py.typed +0 -0
- gpu/platform/__init__.pyi +54 -0
- gpu/platform/py.typed +0 -0
- gpu/select/__init__.pyi +15 -0
- gpu/select/py.typed +0 -0
- gpu/shader/__init__.pyi +38 -0
- gpu/shader/py.typed +0 -0
- gpu/state/__init__.pyi +214 -0
- gpu/state/py.typed +0 -0
- gpu/texture/__init__.pyi +18 -0
- gpu/texture/py.typed +0 -0
- gpu/types/__init__.pyi +698 -0
- gpu/types/py.typed +0 -0
- gpu_extras/batch/__init__.pyi +25 -0
- gpu_extras/batch/py.typed +0 -0
- gpu_extras/presets/__init__.pyi +43 -0
- gpu_extras/presets/py.typed +0 -0
- graphviz_export/__init__.pyi +21 -0
- idprop/types/__init__.pyi +98 -0
- idprop/types/py.typed +0 -0
- imbuf/__init__.pyi +44 -0
- imbuf/types/__init__.pyi +70 -0
- imbuf/types/py.typed +0 -0
- keyingsets_builtins/__init__.pyi +4028 -0
- keyingsets_utils/__init__.pyi +116 -0
- mathutils/__init__.pyi +2917 -0
- mathutils/bvhtree/__init__.pyi +124 -0
- mathutils/bvhtree/py.typed +0 -0
- mathutils/geometry/__init__.pyi +526 -0
- mathutils/geometry/py.typed +0 -0
- mathutils/interpolate/__init__.pyi +16 -0
- mathutils/interpolate/py.typed +0 -0
- mathutils/kdtree/__init__.pyi +77 -0
- mathutils/kdtree/py.typed +0 -0
- mathutils/noise/__init__.pyi +342 -0
- mathutils/noise/py.typed +0 -0
- nodeitems_builtins/__init__.pyi +69 -0
- nodeitems_utils/__init__.pyi +86 -0
- rna_info/__init__.pyi +343 -0
- rna_keymap_ui/__init__.pyi +52 -0
- rna_prop_ui/__init__.pyi +109 -0
- rna_xml/__init__.pyi +53 -0
- sys_info/__init__.pyi +12 -0
- addon_utils/__init__.py +0 -84
- animsys_refactor/__init__.py +0 -55
- aud/__init__.py +0 -1190
- bgl/__init__.py +0 -5084
- bl_app_override/__init__.py +0 -31
- bl_app_override/helpers.py +0 -42
- bl_app_template_utils/__init__.py +0 -36
- bl_console_utils/autocomplete/__init__.py +0 -8
- bl_console_utils/autocomplete/complete_calltip.py +0 -44
- bl_console_utils/autocomplete/complete_import.py +0 -28
- bl_console_utils/autocomplete/complete_namespace.py +0 -44
- bl_console_utils/autocomplete/intellisense.py +0 -20
- bl_i18n_utils/__init__.py +0 -11
- bl_i18n_utils/bl_extract_messages.py +0 -124
- bl_i18n_utils/merge_po.py +0 -12
- bl_i18n_utils/settings.py +0 -66
- bl_i18n_utils/utils.py +0 -338
- bl_i18n_utils/utils_cli.py +0 -52
- bl_i18n_utils/utils_languages_menu.py +0 -12
- bl_i18n_utils/utils_rtl.py +0 -20
- bl_keymap_utils/__init__.py +0 -9
- bl_keymap_utils/io.py +0 -76
- bl_keymap_utils/keymap_from_toolbar.py +0 -12
- bl_keymap_utils/keymap_hierarchy.py +0 -12
- bl_keymap_utils/platform_helpers.py +0 -20
- bl_keymap_utils/versioning.py +0 -12
- bl_math/__init__.py +0 -52
- bl_operators/__init__.py +0 -49
- bl_operators/add_mesh_torus.py +0 -231
- bl_operators/anim.py +0 -1291
- bl_operators/assets.py +0 -586
- bl_operators/bmesh/find_adjacent.py +0 -76
- bl_operators/clip.py +0 -1898
- bl_operators/console.py +0 -918
- bl_operators/constraint.py +0 -745
- bl_operators/file.py +0 -560
- bl_operators/freestyle.py +0 -751
- bl_operators/geometry_nodes.py +0 -2553
- bl_operators/image.py +0 -548
- bl_operators/mesh.py +0 -566
- bl_operators/node.py +0 -1814
- bl_operators/object.py +0 -3212
- bl_operators/object_align.py +0 -215
- bl_operators/object_quick_effects.py +0 -777
- bl_operators/object_randomize_transform.py +0 -199
- bl_operators/presets.py +0 -3776
- bl_operators/rigidbody.py +0 -566
- bl_operators/screen_play_rendered_anim.py +0 -192
- bl_operators/sequencer.py +0 -1001
- bl_operators/spreadsheet.py +0 -202
- bl_operators/userpref.py +0 -4701
- bl_operators/uvcalc_follow_active.py +0 -212
- bl_operators/uvcalc_lightmap.py +0 -257
- bl_operators/uvcalc_transform.py +0 -501
- bl_operators/vertexpaint_dirt.py +0 -207
- bl_operators/view3d.py +0 -955
- bl_operators/wm.py +0 -8409
- bl_previews_utils/bl_previews_render.py +0 -60
- bl_rna_utils/data_path.py +0 -25
- bl_text_utils/external_editor.py +0 -12
- bl_ui/__init__.py +0 -706
- bl_ui/asset_shelf.py +0 -202
- bl_ui/generic_ui_list.py +0 -629
- bl_ui/node_add_menu.py +0 -260
- bl_ui/node_add_menu_compositor.py +0 -3739
- bl_ui/node_add_menu_geometry.py +0 -8520
- bl_ui/node_add_menu_shader.py +0 -2139
- bl_ui/node_add_menu_texture.py +0 -1868
- bl_ui/properties_animviz.py +0 -38
- bl_ui/properties_collection.py +0 -1051
- bl_ui/properties_constraint.py +0 -29694
- bl_ui/properties_data_armature.py +0 -2274
- bl_ui/properties_data_bone.py +0 -2087
- bl_ui/properties_data_camera.py +0 -3004
- bl_ui/properties_data_curve.py +0 -3164
- bl_ui/properties_data_curves.py +0 -1247
- bl_ui/properties_data_empty.py +0 -426
- bl_ui/properties_data_gpencil.py +0 -3758
- bl_ui/properties_data_grease_pencil.py +0 -632
- bl_ui/properties_data_lattice.py +0 -637
- bl_ui/properties_data_light.py +0 -2111
- bl_ui/properties_data_lightprobe.py +0 -1264
- bl_ui/properties_data_mesh.py +0 -4052
- bl_ui/properties_data_metaball.py +0 -1047
- bl_ui/properties_data_modifier.py +0 -1741
- bl_ui/properties_data_pointcloud.py +0 -1045
- bl_ui/properties_data_shaderfx.py +0 -214
- bl_ui/properties_data_speaker.py +0 -1056
- bl_ui/properties_data_volume.py +0 -1652
- bl_ui/properties_freestyle.py +0 -5309
- bl_ui/properties_grease_pencil_common.py +0 -2780
- bl_ui/properties_mask_common.py +0 -1554
- bl_ui/properties_material.py +0 -3117
- bl_ui/properties_material_gpencil.py +0 -2086
- bl_ui/properties_object.py +0 -2875
- bl_ui/properties_output.py +0 -3799
- bl_ui/properties_paint_common.py +0 -814
- bl_ui/properties_particle.py +0 -10938
- bl_ui/properties_physics_cloth.py +0 -2984
- bl_ui/properties_physics_common.py +0 -277
- bl_ui/properties_physics_dynamicpaint.py +0 -5431
- bl_ui/properties_physics_field.py +0 -2220
- bl_ui/properties_physics_fluid.py +0 -7296
- bl_ui/properties_physics_geometry_nodes.py +0 -214
- bl_ui/properties_physics_rigidbody.py +0 -1698
- bl_ui/properties_physics_rigidbody_constraint.py +0 -2734
- bl_ui/properties_physics_softbody.py +0 -3198
- bl_ui/properties_render.py +0 -12664
- bl_ui/properties_scene.py +0 -2872
- bl_ui/properties_texture.py +0 -5470
- bl_ui/properties_view_layer.py +0 -3493
- bl_ui/properties_workspace.py +0 -630
- bl_ui/properties_world.py +0 -1478
- bl_ui/space_clip.py +0 -14313
- bl_ui/space_console.py +0 -1221
- bl_ui/space_dopesheet.py +0 -5388
- bl_ui/space_filebrowser.py +0 -5996
- bl_ui/space_graph.py +0 -4053
- bl_ui/space_image.py +0 -14801
- bl_ui/space_info.py +0 -1216
- bl_ui/space_nla.py +0 -3460
- bl_ui/space_node.py +0 -6519
- bl_ui/space_outliner.py +0 -2864
- bl_ui/space_properties.py +0 -575
- bl_ui/space_sequencer.py +0 -15360
- bl_ui/space_spreadsheet.py +0 -226
- bl_ui/space_statusbar.py +0 -190
- bl_ui/space_text.py +0 -3223
- bl_ui/space_time.py +0 -1472
- bl_ui/space_toolsystem_common.py +0 -435
- bl_ui/space_toolsystem_toolbar.py +0 -1671
- bl_ui/space_topbar.py +0 -5296
- bl_ui/space_userpref.py +0 -17826
- bl_ui/space_view3d.py +0 -51846
- bl_ui/space_view3d_toolbar.py +0 -18993
- bl_ui/utils.py +0 -40
- bl_ui_utils/__init__.py +0 -6
- bl_ui_utils/bug_report_url.py +0 -12
- bl_ui_utils/layout.py +0 -12
- blend_render_info/__init__.py +0 -24
- blf/__init__.py +0 -231
- bmesh/__init__.py +0 -51
- bmesh/geometry.py +0 -23
- bmesh/ops.py +0 -1935
- bmesh/types.py +0 -1399
- bmesh/utils.py +0 -207
- bpy/__init__.py +0 -18
- bpy/app/__init__.py +0 -247
- bpy/app/handlers.py +0 -160
- bpy/app/icons.py +0 -42
- bpy/app/timers.py +0 -42
- bpy/app/translations.py +0 -107
- bpy/msgbus.py +0 -40
- bpy/ops/__init__.py +0 -81
- bpy/ops/action.py +0 -723
- bpy/ops/anim.py +0 -978
- bpy/ops/armature.py +0 -858
- bpy/ops/asset.py +0 -339
- bpy/ops/boid.py +0 -127
- bpy/ops/brush.py +0 -171
- bpy/ops/buttons.py +0 -255
- bpy/ops/cachefile.py +0 -241
- bpy/ops/camera.py +0 -60
- bpy/ops/clip.py +0 -1782
- bpy/ops/cloth.py +0 -31
- bpy/ops/collection.py +0 -95
- bpy/ops/console.py +0 -370
- bpy/ops/constraint.py +0 -391
- bpy/ops/curve.py +0 -1052
- bpy/ops/curves.py +0 -259
- bpy/ops/cycles.py +0 -67
- bpy/ops/dpaint.py +0 -87
- bpy/ops/ed.py +0 -276
- bpy/ops/export_anim.py +0 -45
- bpy/ops/export_mesh.py +0 -62
- bpy/ops/export_scene.py +0 -577
- bpy/ops/file.py +0 -787
- bpy/ops/fluid.py +0 -224
- bpy/ops/font.py +0 -537
- bpy/ops/geometry.py +0 -219
- bpy/ops/gizmogroup.py +0 -52
- bpy/ops/gpencil.py +0 -3247
- bpy/ops/graph.py +0 -1392
- bpy/ops/grease_pencil.py +0 -724
- bpy/ops/image.py +0 -1261
- bpy/ops/import_anim.py +0 -58
- bpy/ops/import_curve.py +0 -26
- bpy/ops/import_mesh.py +0 -50
- bpy/ops/import_scene.py +0 -191
- bpy/ops/info.py +0 -140
- bpy/ops/lattice.py +0 -153
- bpy/ops/marker.py +0 -238
- bpy/ops/mask.py +0 -747
- bpy/ops/material.py +0 -47
- bpy/ops/mball.py +0 -168
- bpy/ops/mesh.py +0 -4168
- bpy/ops/nla.py +0 -756
- bpy/ops/node.py +0 -1894
- bpy/ops/object.py +0 -5343
- bpy/ops/outliner.py +0 -1172
- bpy/ops/paint.py +0 -1067
- bpy/ops/paintcurve.py +0 -148
- bpy/ops/palette.py +0 -123
- bpy/ops/particle.py +0 -635
- bpy/ops/pose.py +0 -763
- bpy/ops/poselib.py +0 -173
- bpy/ops/preferences.py +0 -849
- bpy/ops/ptcache.py +0 -114
- bpy/ops/render.py +0 -262
- bpy/ops/rigidbody.py +0 -244
- bpy/ops/scene.py +0 -675
- bpy/ops/screen.py +0 -846
- bpy/ops/script.py +0 -60
- bpy/ops/sculpt.py +0 -862
- bpy/ops/sculpt_curves.py +0 -94
- bpy/ops/sequencer.py +0 -2165
- bpy/ops/sound.py +0 -395
- bpy/ops/spreadsheet.py +0 -76
- bpy/ops/surface.py +0 -215
- bpy/ops/text.py +0 -863
- bpy/ops/text_editor.py +0 -31
- bpy/ops/texture.py +0 -68
- bpy/ops/transform.py +0 -1545
- bpy/ops/ui.py +0 -536
- bpy/ops/uilist.py +0 -74
- bpy/ops/uv.py +0 -1251
- bpy/ops/view2d.py +0 -329
- bpy/ops/view3d.py +0 -1392
- bpy/ops/wm.py +0 -4821
- bpy/ops/workspace.py +0 -115
- bpy/ops/world.py +0 -19
- bpy/path.py +0 -194
- bpy/props.py +0 -509
- bpy/types.py +0 -131806
- bpy/utils/__init__.py +0 -429
- bpy/utils/previews.py +0 -73
- bpy/utils/units.py +0 -61
- bpy_extras/__init__.py +0 -18
- bpy_extras/anim_utils.py +0 -108
- bpy_extras/asset_utils.py +0 -39
- bpy_extras/bmesh_utils.py +0 -20
- bpy_extras/extensions/junction_module.py +0 -48
- bpy_extras/id_map_utils.py +0 -28
- bpy_extras/image_utils.py +0 -42
- bpy_extras/io_utils.py +0 -165
- bpy_extras/keyconfig_utils.py +0 -28
- bpy_extras/mesh_utils.py +0 -91
- bpy_extras/node_shader_utils.py +0 -562
- bpy_extras/node_utils.py +0 -28
- bpy_extras/object_utils.py +0 -87
- bpy_extras/view3d_utils.py +0 -90
- bpy_extras/wm_utils/progress_report.py +0 -98
- bpy_restrict_state/__init__.py +0 -24
- bpy_types/__init__.py +0 -5189
- console_python/__init__.py +0 -71
- console_shell/__init__.py +0 -44
- fake_bpy_module-20231205.dist-info/METADATA +0 -175
- fake_bpy_module-20231205.dist-info/RECORD +0 -356
- freestyle/chainingiterators.py +0 -306
- freestyle/functions.py +0 -1270
- freestyle/predicates.py +0 -535
- freestyle/shaders.py +0 -872
- freestyle/types.py +0 -2409
- freestyle/utils/ContextFunctions.py +0 -127
- freestyle/utils/__init__.py +0 -246
- gpu/capabilities.py +0 -186
- gpu/matrix.py +0 -162
- gpu/platform.py +0 -54
- gpu/select.py +0 -15
- gpu/shader.py +0 -38
- gpu/state.py +0 -214
- gpu/texture.py +0 -18
- gpu/types.py +0 -698
- gpu_extras/batch.py +0 -25
- gpu_extras/presets.py +0 -43
- graphviz_export/__init__.py +0 -21
- idprop/types.py +0 -98
- imbuf/__init__.py +0 -44
- imbuf/types.py +0 -70
- keyingsets_builtins/__init__.py +0 -4028
- keyingsets_utils/__init__.py +0 -116
- mathutils/__init__.py +0 -2917
- mathutils/bvhtree.py +0 -124
- mathutils/geometry.py +0 -526
- mathutils/interpolate.py +0 -16
- mathutils/kdtree.py +0 -77
- mathutils/noise.py +0 -342
- nodeitems_builtins/__init__.py +0 -69
- nodeitems_utils/__init__.py +0 -86
- rna_info/__init__.py +0 -343
- rna_keymap_ui/__init__.py +0 -52
- rna_prop_ui/__init__.py +0 -109
- rna_xml/__init__.py +0 -53
- sys_info/__init__.py +0 -12
- /bl_console_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_operators/bmesh/{__init__.py → __init__.pyi} +0 -0
- /bl_previews_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_rna_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_text_utils/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/extensions/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/wm_utils/{__init__.py → __init__.pyi} +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/top_level.txt +0 -0
- /freestyle/{__init__.py → __init__.pyi} +0 -0
- /gpu/{__init__.py → __init__.pyi} +0 -0
- /gpu_extras/{__init__.py → __init__.pyi} +0 -0
- /idprop/{__init__.py → __init__.pyi} +0 -0
mathutils/__init__.py
DELETED
|
@@ -1,2917 +0,0 @@
|
|
|
1
|
-
import sys
|
|
2
|
-
import typing
|
|
3
|
-
from . import kdtree
|
|
4
|
-
from . import geometry
|
|
5
|
-
from . import noise
|
|
6
|
-
from . import interpolate
|
|
7
|
-
from . import bvhtree
|
|
8
|
-
|
|
9
|
-
GenericType = typing.TypeVar("GenericType")
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class Color:
|
|
13
|
-
''' This object gives access to Colors in Blender. Most colors returned by Blender APIs are in scene linear color space, as defined by the OpenColorIO configuration. The notable exception is user interface theming colors, which are in sRGB color space. :arg rgb: (r, g, b) color values :type rgb: 3d vector
|
|
14
|
-
'''
|
|
15
|
-
|
|
16
|
-
b: float = None
|
|
17
|
-
''' Blue color channel.
|
|
18
|
-
|
|
19
|
-
:type: float
|
|
20
|
-
'''
|
|
21
|
-
|
|
22
|
-
g: float = None
|
|
23
|
-
''' Green color channel.
|
|
24
|
-
|
|
25
|
-
:type: float
|
|
26
|
-
'''
|
|
27
|
-
|
|
28
|
-
h: float = None
|
|
29
|
-
''' HSV Hue component in [0, 1].
|
|
30
|
-
|
|
31
|
-
:type: float
|
|
32
|
-
'''
|
|
33
|
-
|
|
34
|
-
hsv: typing.Union[typing.Sequence[float], 'Vector'] = None
|
|
35
|
-
''' HSV Values in [0, 1].
|
|
36
|
-
|
|
37
|
-
:type: typing.Union[typing.Sequence[float], 'Vector']
|
|
38
|
-
'''
|
|
39
|
-
|
|
40
|
-
is_frozen: bool = None
|
|
41
|
-
''' True when this object has been frozen (read-only).
|
|
42
|
-
|
|
43
|
-
:type: bool
|
|
44
|
-
'''
|
|
45
|
-
|
|
46
|
-
is_valid: bool = None
|
|
47
|
-
''' True when the owner of this data is valid.
|
|
48
|
-
|
|
49
|
-
:type: bool
|
|
50
|
-
'''
|
|
51
|
-
|
|
52
|
-
is_wrapped: bool = None
|
|
53
|
-
''' True when this object wraps external data (read-only).
|
|
54
|
-
|
|
55
|
-
:type: bool
|
|
56
|
-
'''
|
|
57
|
-
|
|
58
|
-
owner = None
|
|
59
|
-
''' The item this is wrapping or None (read-only).'''
|
|
60
|
-
|
|
61
|
-
r: float = None
|
|
62
|
-
''' Red color channel.
|
|
63
|
-
|
|
64
|
-
:type: float
|
|
65
|
-
'''
|
|
66
|
-
|
|
67
|
-
s: float = None
|
|
68
|
-
''' HSV Saturation component in [0, 1].
|
|
69
|
-
|
|
70
|
-
:type: float
|
|
71
|
-
'''
|
|
72
|
-
|
|
73
|
-
v: float = None
|
|
74
|
-
''' HSV Value component in [0, 1].
|
|
75
|
-
|
|
76
|
-
:type: float
|
|
77
|
-
'''
|
|
78
|
-
|
|
79
|
-
@staticmethod
|
|
80
|
-
def copy() -> 'Color':
|
|
81
|
-
''' Returns a copy of this color.
|
|
82
|
-
|
|
83
|
-
:rtype: 'Color'
|
|
84
|
-
:return: A copy of the color.
|
|
85
|
-
'''
|
|
86
|
-
pass
|
|
87
|
-
|
|
88
|
-
@staticmethod
|
|
89
|
-
def freeze() -> 'Color':
|
|
90
|
-
''' Make this object immutable. After this the object can be hashed, used in dictionaries & sets.
|
|
91
|
-
|
|
92
|
-
:rtype: 'Color'
|
|
93
|
-
:return: An instance of this object.
|
|
94
|
-
'''
|
|
95
|
-
pass
|
|
96
|
-
|
|
97
|
-
@staticmethod
|
|
98
|
-
def from_aces_to_scene_linear() -> 'Color':
|
|
99
|
-
''' Convert from ACES2065-1 linear to scene linear color space.
|
|
100
|
-
|
|
101
|
-
:rtype: 'Color'
|
|
102
|
-
:return: A color in scene linear color space.
|
|
103
|
-
'''
|
|
104
|
-
pass
|
|
105
|
-
|
|
106
|
-
@staticmethod
|
|
107
|
-
def from_rec709_linear_to_scene_linear() -> 'Color':
|
|
108
|
-
''' Convert from Rec.709 linear color space to scene linear color space.
|
|
109
|
-
|
|
110
|
-
:rtype: 'Color'
|
|
111
|
-
:return: A color in scene linear color space.
|
|
112
|
-
'''
|
|
113
|
-
pass
|
|
114
|
-
|
|
115
|
-
@staticmethod
|
|
116
|
-
def from_scene_linear_to_aces() -> 'Color':
|
|
117
|
-
''' Convert from scene linear to ACES2065-1 linear color space.
|
|
118
|
-
|
|
119
|
-
:rtype: 'Color'
|
|
120
|
-
:return: A color in ACES2065-1 linear color space.
|
|
121
|
-
'''
|
|
122
|
-
pass
|
|
123
|
-
|
|
124
|
-
@staticmethod
|
|
125
|
-
def from_scene_linear_to_rec709_linear() -> 'Color':
|
|
126
|
-
''' Convert from scene linear to Rec.709 linear color space.
|
|
127
|
-
|
|
128
|
-
:rtype: 'Color'
|
|
129
|
-
:return: A color in Rec.709 linear color space.
|
|
130
|
-
'''
|
|
131
|
-
pass
|
|
132
|
-
|
|
133
|
-
@staticmethod
|
|
134
|
-
def from_scene_linear_to_srgb() -> 'Color':
|
|
135
|
-
''' Convert from scene linear to sRGB color space.
|
|
136
|
-
|
|
137
|
-
:rtype: 'Color'
|
|
138
|
-
:return: A color in sRGB color space.
|
|
139
|
-
'''
|
|
140
|
-
pass
|
|
141
|
-
|
|
142
|
-
@staticmethod
|
|
143
|
-
def from_scene_linear_to_xyz_d65() -> 'Color':
|
|
144
|
-
''' Convert from scene linear to CIE XYZ (Illuminant D65) color space.
|
|
145
|
-
|
|
146
|
-
:rtype: 'Color'
|
|
147
|
-
:return: A color in XYZ color space.
|
|
148
|
-
'''
|
|
149
|
-
pass
|
|
150
|
-
|
|
151
|
-
@staticmethod
|
|
152
|
-
def from_srgb_to_scene_linear() -> 'Color':
|
|
153
|
-
''' Convert from sRGB to scene linear color space.
|
|
154
|
-
|
|
155
|
-
:rtype: 'Color'
|
|
156
|
-
:return: A color in scene linear color space.
|
|
157
|
-
'''
|
|
158
|
-
pass
|
|
159
|
-
|
|
160
|
-
@staticmethod
|
|
161
|
-
def from_xyz_d65_to_scene_linear() -> 'Color':
|
|
162
|
-
''' Convert from CIE XYZ (Illuminant D65) to scene linear color space.
|
|
163
|
-
|
|
164
|
-
:rtype: 'Color'
|
|
165
|
-
:return: A color in scene linear color space.
|
|
166
|
-
'''
|
|
167
|
-
pass
|
|
168
|
-
|
|
169
|
-
def __init__(self, rgb=(0.0, 0.0, 0.0)) -> typing.Any:
|
|
170
|
-
'''
|
|
171
|
-
|
|
172
|
-
:rtype: typing.Any
|
|
173
|
-
'''
|
|
174
|
-
pass
|
|
175
|
-
|
|
176
|
-
def __add__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
177
|
-
) -> 'Color':
|
|
178
|
-
'''
|
|
179
|
-
|
|
180
|
-
:param other:
|
|
181
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
182
|
-
:rtype: 'Color'
|
|
183
|
-
'''
|
|
184
|
-
pass
|
|
185
|
-
|
|
186
|
-
def __sub__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
187
|
-
) -> 'Color':
|
|
188
|
-
'''
|
|
189
|
-
|
|
190
|
-
:param other:
|
|
191
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
192
|
-
:rtype: 'Color'
|
|
193
|
-
'''
|
|
194
|
-
pass
|
|
195
|
-
|
|
196
|
-
def __mul__(self, other: typing.Union[int, float]) -> 'Color':
|
|
197
|
-
'''
|
|
198
|
-
|
|
199
|
-
:param other:
|
|
200
|
-
:type other: typing.Union[int, float]
|
|
201
|
-
:rtype: 'Color'
|
|
202
|
-
'''
|
|
203
|
-
pass
|
|
204
|
-
|
|
205
|
-
def __truediv__(self, other: typing.Union[int, float]) -> 'Color':
|
|
206
|
-
'''
|
|
207
|
-
|
|
208
|
-
:param other:
|
|
209
|
-
:type other: typing.Union[int, float]
|
|
210
|
-
:rtype: 'Color'
|
|
211
|
-
'''
|
|
212
|
-
pass
|
|
213
|
-
|
|
214
|
-
def __radd__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
215
|
-
) -> 'Color':
|
|
216
|
-
'''
|
|
217
|
-
|
|
218
|
-
:param other:
|
|
219
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
220
|
-
:rtype: 'Color'
|
|
221
|
-
'''
|
|
222
|
-
pass
|
|
223
|
-
|
|
224
|
-
def __rsub__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
225
|
-
) -> 'Color':
|
|
226
|
-
'''
|
|
227
|
-
|
|
228
|
-
:param other:
|
|
229
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
230
|
-
:rtype: 'Color'
|
|
231
|
-
'''
|
|
232
|
-
pass
|
|
233
|
-
|
|
234
|
-
def __rmul__(self, other: typing.Union[int, float]) -> 'Color':
|
|
235
|
-
'''
|
|
236
|
-
|
|
237
|
-
:param other:
|
|
238
|
-
:type other: typing.Union[int, float]
|
|
239
|
-
:rtype: 'Color'
|
|
240
|
-
'''
|
|
241
|
-
pass
|
|
242
|
-
|
|
243
|
-
def __rtruediv__(self, other: typing.Union[int, float]) -> 'Color':
|
|
244
|
-
'''
|
|
245
|
-
|
|
246
|
-
:param other:
|
|
247
|
-
:type other: typing.Union[int, float]
|
|
248
|
-
:rtype: 'Color'
|
|
249
|
-
'''
|
|
250
|
-
pass
|
|
251
|
-
|
|
252
|
-
def __iadd__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
253
|
-
) -> 'Color':
|
|
254
|
-
'''
|
|
255
|
-
|
|
256
|
-
:param other:
|
|
257
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
258
|
-
:rtype: 'Color'
|
|
259
|
-
'''
|
|
260
|
-
pass
|
|
261
|
-
|
|
262
|
-
def __isub__(self, other: typing.Union[typing.Sequence[float], 'Color']
|
|
263
|
-
) -> 'Color':
|
|
264
|
-
'''
|
|
265
|
-
|
|
266
|
-
:param other:
|
|
267
|
-
:type other: typing.Union[typing.Sequence[float], 'Color']
|
|
268
|
-
:rtype: 'Color'
|
|
269
|
-
'''
|
|
270
|
-
pass
|
|
271
|
-
|
|
272
|
-
def __imul__(self, other: typing.Union[int, float]) -> 'Color':
|
|
273
|
-
'''
|
|
274
|
-
|
|
275
|
-
:param other:
|
|
276
|
-
:type other: typing.Union[int, float]
|
|
277
|
-
:rtype: 'Color'
|
|
278
|
-
'''
|
|
279
|
-
pass
|
|
280
|
-
|
|
281
|
-
def __itruediv__(self, other: typing.Union[int, float]) -> 'Color':
|
|
282
|
-
'''
|
|
283
|
-
|
|
284
|
-
:param other:
|
|
285
|
-
:type other: typing.Union[int, float]
|
|
286
|
-
:rtype: 'Color'
|
|
287
|
-
'''
|
|
288
|
-
pass
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class Euler:
|
|
292
|
-
''' This object gives access to Eulers in Blender. :arg angles: Three angles, in radians. :type angles: 3d vector :arg order: Optional order of the angles, a permutation of ``XYZ``. :type order: str
|
|
293
|
-
'''
|
|
294
|
-
|
|
295
|
-
is_frozen: bool = None
|
|
296
|
-
''' True when this object has been frozen (read-only).
|
|
297
|
-
|
|
298
|
-
:type: bool
|
|
299
|
-
'''
|
|
300
|
-
|
|
301
|
-
is_valid: bool = None
|
|
302
|
-
''' True when the owner of this data is valid.
|
|
303
|
-
|
|
304
|
-
:type: bool
|
|
305
|
-
'''
|
|
306
|
-
|
|
307
|
-
is_wrapped: bool = None
|
|
308
|
-
''' True when this object wraps external data (read-only).
|
|
309
|
-
|
|
310
|
-
:type: bool
|
|
311
|
-
'''
|
|
312
|
-
|
|
313
|
-
order: str = None
|
|
314
|
-
''' Euler rotation order.
|
|
315
|
-
|
|
316
|
-
:type: str
|
|
317
|
-
'''
|
|
318
|
-
|
|
319
|
-
owner = None
|
|
320
|
-
''' The item this is wrapping or None (read-only).'''
|
|
321
|
-
|
|
322
|
-
x: float = None
|
|
323
|
-
''' Euler axis angle in radians.
|
|
324
|
-
|
|
325
|
-
:type: float
|
|
326
|
-
'''
|
|
327
|
-
|
|
328
|
-
y: float = None
|
|
329
|
-
''' Euler axis angle in radians.
|
|
330
|
-
|
|
331
|
-
:type: float
|
|
332
|
-
'''
|
|
333
|
-
|
|
334
|
-
z: float = None
|
|
335
|
-
''' Euler axis angle in radians.
|
|
336
|
-
|
|
337
|
-
:type: float
|
|
338
|
-
'''
|
|
339
|
-
|
|
340
|
-
@staticmethod
|
|
341
|
-
def copy() -> 'Euler':
|
|
342
|
-
''' Returns a copy of this euler.
|
|
343
|
-
|
|
344
|
-
:rtype: 'Euler'
|
|
345
|
-
:return: A copy of the euler.
|
|
346
|
-
'''
|
|
347
|
-
pass
|
|
348
|
-
|
|
349
|
-
@staticmethod
|
|
350
|
-
def freeze() -> 'Euler':
|
|
351
|
-
''' Make this object immutable. After this the object can be hashed, used in dictionaries & sets.
|
|
352
|
-
|
|
353
|
-
:rtype: 'Euler'
|
|
354
|
-
:return: An instance of this object.
|
|
355
|
-
'''
|
|
356
|
-
pass
|
|
357
|
-
|
|
358
|
-
def make_compatible(self, other):
|
|
359
|
-
''' Make this euler compatible with another, so interpolating between them works as intended.
|
|
360
|
-
|
|
361
|
-
'''
|
|
362
|
-
pass
|
|
363
|
-
|
|
364
|
-
def rotate(self,
|
|
365
|
-
other: typing.Union[typing.Sequence[float], 'Euler', typing.
|
|
366
|
-
Sequence[float], 'Quaternion', typing.
|
|
367
|
-
Sequence[float], 'Matrix']):
|
|
368
|
-
''' Rotates the euler by another mathutils value.
|
|
369
|
-
|
|
370
|
-
:param other: rotation component of mathutils value
|
|
371
|
-
:type other: typing.Union[typing.Sequence[float], 'Euler', typing.Sequence[float], 'Quaternion', typing.Sequence[float], 'Matrix']
|
|
372
|
-
'''
|
|
373
|
-
pass
|
|
374
|
-
|
|
375
|
-
def rotate_axis(self, axis: str, angle: float):
|
|
376
|
-
''' Rotates the euler a certain amount and returning a unique euler rotation (no 720 degree pitches).
|
|
377
|
-
|
|
378
|
-
:param axis: single character in ['X, 'Y', 'Z'].
|
|
379
|
-
:type axis: str
|
|
380
|
-
:param angle: angle in radians.
|
|
381
|
-
:type angle: float
|
|
382
|
-
'''
|
|
383
|
-
pass
|
|
384
|
-
|
|
385
|
-
def to_matrix(self) -> 'Matrix':
|
|
386
|
-
''' Return a matrix representation of the euler.
|
|
387
|
-
|
|
388
|
-
:rtype: 'Matrix'
|
|
389
|
-
:return: A 3x3 rotation matrix representation of the euler.
|
|
390
|
-
'''
|
|
391
|
-
pass
|
|
392
|
-
|
|
393
|
-
def to_quaternion(self) -> 'Quaternion':
|
|
394
|
-
''' Return a quaternion representation of the euler.
|
|
395
|
-
|
|
396
|
-
:rtype: 'Quaternion'
|
|
397
|
-
:return: Quaternion representation of the euler.
|
|
398
|
-
'''
|
|
399
|
-
pass
|
|
400
|
-
|
|
401
|
-
def zero(self):
|
|
402
|
-
''' Set all values to zero.
|
|
403
|
-
|
|
404
|
-
'''
|
|
405
|
-
pass
|
|
406
|
-
|
|
407
|
-
def __init__(self, angles=(0.0, 0.0, 0.0), order='XYZ') -> typing.Any:
|
|
408
|
-
'''
|
|
409
|
-
|
|
410
|
-
:rtype: typing.Any
|
|
411
|
-
'''
|
|
412
|
-
pass
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
class Matrix:
|
|
416
|
-
''' This object gives access to Matrices in Blender, supporting square and rectangular matrices from 2x2 up to 4x4. :arg rows: Sequence of rows. When omitted, a 4x4 identity matrix is constructed. :type rows: 2d number sequence
|
|
417
|
-
'''
|
|
418
|
-
|
|
419
|
-
col: 'Matrix' = None
|
|
420
|
-
''' Access the matrix by columns, 3x3 and 4x4 only, (read-only).
|
|
421
|
-
|
|
422
|
-
:type: 'Matrix'
|
|
423
|
-
'''
|
|
424
|
-
|
|
425
|
-
is_frozen: bool = None
|
|
426
|
-
''' True when this object has been frozen (read-only).
|
|
427
|
-
|
|
428
|
-
:type: bool
|
|
429
|
-
'''
|
|
430
|
-
|
|
431
|
-
is_identity: bool = None
|
|
432
|
-
''' True if this is an identity matrix (read-only).
|
|
433
|
-
|
|
434
|
-
:type: bool
|
|
435
|
-
'''
|
|
436
|
-
|
|
437
|
-
is_negative: bool = None
|
|
438
|
-
''' True if this matrix results in a negative scale, 3x3 and 4x4 only, (read-only).
|
|
439
|
-
|
|
440
|
-
:type: bool
|
|
441
|
-
'''
|
|
442
|
-
|
|
443
|
-
is_orthogonal: bool = None
|
|
444
|
-
''' True if this matrix is orthogonal, 3x3 and 4x4 only, (read-only).
|
|
445
|
-
|
|
446
|
-
:type: bool
|
|
447
|
-
'''
|
|
448
|
-
|
|
449
|
-
is_orthogonal_axis_vectors: bool = None
|
|
450
|
-
''' True if this matrix has got orthogonal axis vectors, 3x3 and 4x4 only, (read-only).
|
|
451
|
-
|
|
452
|
-
:type: bool
|
|
453
|
-
'''
|
|
454
|
-
|
|
455
|
-
is_valid: bool = None
|
|
456
|
-
''' True when the owner of this data is valid.
|
|
457
|
-
|
|
458
|
-
:type: bool
|
|
459
|
-
'''
|
|
460
|
-
|
|
461
|
-
is_wrapped: bool = None
|
|
462
|
-
''' True when this object wraps external data (read-only).
|
|
463
|
-
|
|
464
|
-
:type: bool
|
|
465
|
-
'''
|
|
466
|
-
|
|
467
|
-
median_scale: float = None
|
|
468
|
-
''' The average scale applied to each axis (read-only).
|
|
469
|
-
|
|
470
|
-
:type: float
|
|
471
|
-
'''
|
|
472
|
-
|
|
473
|
-
owner = None
|
|
474
|
-
''' The item this is wrapping or None (read-only).'''
|
|
475
|
-
|
|
476
|
-
row: 'Matrix' = None
|
|
477
|
-
''' Access the matrix by rows (default), (read-only).
|
|
478
|
-
|
|
479
|
-
:type: 'Matrix'
|
|
480
|
-
'''
|
|
481
|
-
|
|
482
|
-
translation: 'Vector' = None
|
|
483
|
-
''' The translation component of the matrix.
|
|
484
|
-
|
|
485
|
-
:type: 'Vector'
|
|
486
|
-
'''
|
|
487
|
-
|
|
488
|
-
@classmethod
|
|
489
|
-
def Diagonal(cls, vector: typing.Union[typing.Sequence[float], 'Vector']
|
|
490
|
-
) -> 'Matrix':
|
|
491
|
-
''' Create a diagonal (scaling) matrix using the values from the vector.
|
|
492
|
-
|
|
493
|
-
:param vector: The vector of values for the diagonal.
|
|
494
|
-
:type vector: typing.Union[typing.Sequence[float], 'Vector']
|
|
495
|
-
:rtype: 'Matrix'
|
|
496
|
-
:return: A diagonal matrix.
|
|
497
|
-
'''
|
|
498
|
-
pass
|
|
499
|
-
|
|
500
|
-
@classmethod
|
|
501
|
-
def Identity(cls, size: int) -> 'Matrix':
|
|
502
|
-
''' Create an identity matrix.
|
|
503
|
-
|
|
504
|
-
:param size: The size of the identity matrix to construct [2, 4].
|
|
505
|
-
:type size: int
|
|
506
|
-
:rtype: 'Matrix'
|
|
507
|
-
:return: A new identity matrix.
|
|
508
|
-
'''
|
|
509
|
-
pass
|
|
510
|
-
|
|
511
|
-
@classmethod
|
|
512
|
-
def LocRotScale(
|
|
513
|
-
cls, location: typing.Optional['Vector'], rotation: typing.
|
|
514
|
-
Optional[typing.Union[typing.Sequence[float], 'Quaternion', typing.
|
|
515
|
-
Sequence[float], 'Euler']],
|
|
516
|
-
scale: typing.Optional['Vector']) -> 'Matrix':
|
|
517
|
-
''' Create a matrix combining translation, rotation and scale, acting as the inverse of the decompose() method. Any of the inputs may be replaced with None if not needed.
|
|
518
|
-
|
|
519
|
-
:param location: The translation component.
|
|
520
|
-
:type location: typing.Optional['Vector']
|
|
521
|
-
:param rotation: The rotation component.
|
|
522
|
-
:type rotation: typing.Optional[typing.Union[typing.Sequence[float], 'Quaternion', typing.Sequence[float], 'Euler']]
|
|
523
|
-
:param scale: The scale component.
|
|
524
|
-
:type scale: typing.Optional['Vector']
|
|
525
|
-
:rtype: 'Matrix'
|
|
526
|
-
:return: Combined transformation matrix.
|
|
527
|
-
'''
|
|
528
|
-
pass
|
|
529
|
-
|
|
530
|
-
@classmethod
|
|
531
|
-
def OrthoProjection(
|
|
532
|
-
cls, axis: typing.Union[str, typing.Sequence[float], 'Vector'],
|
|
533
|
-
size: int) -> 'Matrix':
|
|
534
|
-
''' Create a matrix to represent an orthographic projection.
|
|
535
|
-
|
|
536
|
-
:param axis: ['X', 'Y', 'XY', 'XZ', 'YZ'], where a single axis is for a 2D matrix. Or a vector for an arbitrary axis
|
|
537
|
-
:type axis: typing.Union[str, typing.Sequence[float], 'Vector']
|
|
538
|
-
:param size: The size of the projection matrix to construct [2, 4].
|
|
539
|
-
:type size: int
|
|
540
|
-
:rtype: 'Matrix'
|
|
541
|
-
:return: A new projection matrix.
|
|
542
|
-
'''
|
|
543
|
-
pass
|
|
544
|
-
|
|
545
|
-
@classmethod
|
|
546
|
-
def Rotation(cls, angle: float, size: int,
|
|
547
|
-
axis: typing.Union[str, typing.Sequence[float], 'Vector']
|
|
548
|
-
) -> 'Matrix':
|
|
549
|
-
''' Create a matrix representing a rotation.
|
|
550
|
-
|
|
551
|
-
:param angle: The angle of rotation desired, in radians.
|
|
552
|
-
:type angle: float
|
|
553
|
-
:param size: The size of the rotation matrix to construct [2, 4].
|
|
554
|
-
:type size: int
|
|
555
|
-
:param axis: a string in ['X', 'Y', 'Z'] or a 3D Vector Object (optional when size is 2).
|
|
556
|
-
:type axis: typing.Union[str, typing.Sequence[float], 'Vector']
|
|
557
|
-
:rtype: 'Matrix'
|
|
558
|
-
:return: A new rotation matrix.
|
|
559
|
-
'''
|
|
560
|
-
pass
|
|
561
|
-
|
|
562
|
-
@classmethod
|
|
563
|
-
def Scale(
|
|
564
|
-
cls, factor: float, size: int,
|
|
565
|
-
axis: typing.Union[typing.Sequence[float], 'Vector']) -> 'Matrix':
|
|
566
|
-
''' Create a matrix representing a scaling.
|
|
567
|
-
|
|
568
|
-
:param factor: The factor of scaling to apply.
|
|
569
|
-
:type factor: float
|
|
570
|
-
:param size: The size of the scale matrix to construct [2, 4].
|
|
571
|
-
:type size: int
|
|
572
|
-
:param axis: Direction to influence scale. (optional).
|
|
573
|
-
:type axis: typing.Union[typing.Sequence[float], 'Vector']
|
|
574
|
-
:rtype: 'Matrix'
|
|
575
|
-
:return: A new scale matrix.
|
|
576
|
-
'''
|
|
577
|
-
pass
|
|
578
|
-
|
|
579
|
-
@classmethod
|
|
580
|
-
def Shear(cls, plane: str, size: int, factor: float) -> 'Matrix':
|
|
581
|
-
''' Create a matrix to represent an shear transformation.
|
|
582
|
-
|
|
583
|
-
:param plane: ['X', 'Y', 'XY', 'XZ', 'YZ'], where a single axis is for a 2D matrix only.
|
|
584
|
-
:type plane: str
|
|
585
|
-
:param size: The size of the shear matrix to construct [2, 4].
|
|
586
|
-
:type size: int
|
|
587
|
-
:param factor: The factor of shear to apply. For a 3 or 4 *size* matrix pass a pair of floats corresponding with the *plane* axis.
|
|
588
|
-
:type factor: float
|
|
589
|
-
:rtype: 'Matrix'
|
|
590
|
-
:return: A new shear matrix.
|
|
591
|
-
'''
|
|
592
|
-
pass
|
|
593
|
-
|
|
594
|
-
@classmethod
|
|
595
|
-
def Translation(cls, vector: typing.Union[typing.Sequence[float], 'Vector']
|
|
596
|
-
) -> 'Matrix':
|
|
597
|
-
''' Create a matrix representing a translation.
|
|
598
|
-
|
|
599
|
-
:param vector: The translation vector.
|
|
600
|
-
:type vector: typing.Union[typing.Sequence[float], 'Vector']
|
|
601
|
-
:rtype: 'Matrix'
|
|
602
|
-
:return: An identity matrix with a translation.
|
|
603
|
-
'''
|
|
604
|
-
pass
|
|
605
|
-
|
|
606
|
-
def adjugate(self):
|
|
607
|
-
''' Set the matrix to its adjugate. :raises ValueError: if the matrix cannot be adjugate.
|
|
608
|
-
|
|
609
|
-
'''
|
|
610
|
-
pass
|
|
611
|
-
|
|
612
|
-
def adjugated(self) -> 'Matrix':
|
|
613
|
-
''' Return an adjugated copy of the matrix. :raises ValueError: if the matrix cannot be adjugated
|
|
614
|
-
|
|
615
|
-
:rtype: 'Matrix'
|
|
616
|
-
:return: the adjugated matrix.
|
|
617
|
-
'''
|
|
618
|
-
pass
|
|
619
|
-
|
|
620
|
-
def copy(self) -> 'Matrix':
|
|
621
|
-
''' Returns a copy of this matrix.
|
|
622
|
-
|
|
623
|
-
:rtype: 'Matrix'
|
|
624
|
-
:return: an instance of itself
|
|
625
|
-
'''
|
|
626
|
-
pass
|
|
627
|
-
|
|
628
|
-
def decompose(self) -> 'Quaternion':
|
|
629
|
-
''' Return the translation, rotation, and scale components of this matrix.
|
|
630
|
-
|
|
631
|
-
:rtype: 'Quaternion'
|
|
632
|
-
:return: tuple of translation, rotation, and scale
|
|
633
|
-
'''
|
|
634
|
-
pass
|
|
635
|
-
|
|
636
|
-
def determinant(self) -> float:
|
|
637
|
-
''' Return the determinant of a matrix.
|
|
638
|
-
|
|
639
|
-
:rtype: float
|
|
640
|
-
:return: Return the determinant of a matrix.
|
|
641
|
-
'''
|
|
642
|
-
pass
|
|
643
|
-
|
|
644
|
-
@staticmethod
|
|
645
|
-
def freeze() -> 'Matrix':
|
|
646
|
-
''' Make this object immutable. After this the object can be hashed, used in dictionaries & sets.
|
|
647
|
-
|
|
648
|
-
:rtype: 'Matrix'
|
|
649
|
-
:return: An instance of this object.
|
|
650
|
-
'''
|
|
651
|
-
pass
|
|
652
|
-
|
|
653
|
-
def identity(self):
|
|
654
|
-
''' Set the matrix to the identity matrix.
|
|
655
|
-
|
|
656
|
-
'''
|
|
657
|
-
pass
|
|
658
|
-
|
|
659
|
-
def invert(
|
|
660
|
-
self,
|
|
661
|
-
fallback: typing.Union[typing.Sequence[float], 'Matrix'] = None):
|
|
662
|
-
''' Set the matrix to its inverse.
|
|
663
|
-
|
|
664
|
-
:param fallback: Set the matrix to this value when the inverse cannot be calculated (instead of raising a :exc:`ValueError` exception).
|
|
665
|
-
:type fallback: typing.Union[typing.Sequence[float], 'Matrix']
|
|
666
|
-
'''
|
|
667
|
-
pass
|
|
668
|
-
|
|
669
|
-
def invert_safe(self):
|
|
670
|
-
''' Set the matrix to its inverse, will never error. If degenerated (e.g. zero scale on an axis), add some epsilon to its diagonal, to get an invertible one. If tweaked matrix is still degenerated, set to the identity matrix instead.
|
|
671
|
-
|
|
672
|
-
'''
|
|
673
|
-
pass
|
|
674
|
-
|
|
675
|
-
def inverted(self, fallback: typing.Any = None) -> 'Matrix':
|
|
676
|
-
''' Return an inverted copy of the matrix.
|
|
677
|
-
|
|
678
|
-
:param fallback: return this when the inverse can't be calculated (instead of raising a :exc:`ValueError`).
|
|
679
|
-
:type fallback: typing.Any
|
|
680
|
-
:rtype: 'Matrix'
|
|
681
|
-
:return: the inverted matrix or fallback when given.
|
|
682
|
-
'''
|
|
683
|
-
pass
|
|
684
|
-
|
|
685
|
-
def inverted_safe(self) -> 'Matrix':
|
|
686
|
-
''' Return an inverted copy of the matrix, will never error. If degenerated (e.g. zero scale on an axis), add some epsilon to its diagonal, to get an invertible one. If tweaked matrix is still degenerated, return the identity matrix instead.
|
|
687
|
-
|
|
688
|
-
:rtype: 'Matrix'
|
|
689
|
-
:return: the inverted matrix.
|
|
690
|
-
'''
|
|
691
|
-
pass
|
|
692
|
-
|
|
693
|
-
@staticmethod
|
|
694
|
-
def lerp(other: typing.Union[typing.Sequence[float], 'Matrix'],
|
|
695
|
-
factor: float) -> 'Matrix':
|
|
696
|
-
''' Returns the interpolation of two matrices. Uses polar decomposition, see "Matrix Animation and Polar Decomposition", Shoemake and Duff, 1992.
|
|
697
|
-
|
|
698
|
-
:param other: value to interpolate with.
|
|
699
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
700
|
-
:param factor: The interpolation value in [0.0, 1.0].
|
|
701
|
-
:type factor: float
|
|
702
|
-
:rtype: 'Matrix'
|
|
703
|
-
:return: The interpolated matrix.
|
|
704
|
-
'''
|
|
705
|
-
pass
|
|
706
|
-
|
|
707
|
-
def normalize(self):
|
|
708
|
-
''' Normalize each of the matrix columns.
|
|
709
|
-
|
|
710
|
-
'''
|
|
711
|
-
pass
|
|
712
|
-
|
|
713
|
-
def normalized(self) -> 'Matrix':
|
|
714
|
-
''' Return a column normalized matrix
|
|
715
|
-
|
|
716
|
-
:rtype: 'Matrix'
|
|
717
|
-
:return: a column normalized matrix
|
|
718
|
-
'''
|
|
719
|
-
pass
|
|
720
|
-
|
|
721
|
-
def resize_4x4(self):
|
|
722
|
-
''' Resize the matrix to 4x4.
|
|
723
|
-
|
|
724
|
-
'''
|
|
725
|
-
pass
|
|
726
|
-
|
|
727
|
-
def rotate(self,
|
|
728
|
-
other: typing.Union[typing.Sequence[float], 'Euler', typing.
|
|
729
|
-
Sequence[float], 'Quaternion', typing.
|
|
730
|
-
Sequence[float], 'Matrix']):
|
|
731
|
-
''' Rotates the matrix by another mathutils value.
|
|
732
|
-
|
|
733
|
-
:param other: rotation component of mathutils value
|
|
734
|
-
:type other: typing.Union[typing.Sequence[float], 'Euler', typing.Sequence[float], 'Quaternion', typing.Sequence[float], 'Matrix']
|
|
735
|
-
'''
|
|
736
|
-
pass
|
|
737
|
-
|
|
738
|
-
def to_2x2(self) -> 'Matrix':
|
|
739
|
-
''' Return a 2x2 copy of this matrix.
|
|
740
|
-
|
|
741
|
-
:rtype: 'Matrix'
|
|
742
|
-
:return: a new matrix.
|
|
743
|
-
'''
|
|
744
|
-
pass
|
|
745
|
-
|
|
746
|
-
def to_3x3(self) -> 'Matrix':
|
|
747
|
-
''' Return a 3x3 copy of this matrix.
|
|
748
|
-
|
|
749
|
-
:rtype: 'Matrix'
|
|
750
|
-
:return: a new matrix.
|
|
751
|
-
'''
|
|
752
|
-
pass
|
|
753
|
-
|
|
754
|
-
def to_4x4(self) -> 'Matrix':
|
|
755
|
-
''' Return a 4x4 copy of this matrix.
|
|
756
|
-
|
|
757
|
-
:rtype: 'Matrix'
|
|
758
|
-
:return: a new matrix.
|
|
759
|
-
'''
|
|
760
|
-
pass
|
|
761
|
-
|
|
762
|
-
def to_euler(self, order: str,
|
|
763
|
-
euler_compat: typing.Union[typing.Sequence[float], 'Euler']
|
|
764
|
-
) -> 'Euler':
|
|
765
|
-
''' Return an Euler representation of the rotation matrix (3x3 or 4x4 matrix only).
|
|
766
|
-
|
|
767
|
-
:param order: Optional rotation order argument in ['XYZ', 'XZY', 'YXZ', 'YZX', 'ZXY', 'ZYX'].
|
|
768
|
-
:type order: str
|
|
769
|
-
:param euler_compat: Optional euler argument the new euler will be made compatible with (no axis flipping between them). Useful for converting a series of matrices to animation curves.
|
|
770
|
-
:type euler_compat: typing.Union[typing.Sequence[float], 'Euler']
|
|
771
|
-
:rtype: 'Euler'
|
|
772
|
-
:return: Euler representation of the matrix.
|
|
773
|
-
'''
|
|
774
|
-
pass
|
|
775
|
-
|
|
776
|
-
def to_quaternion(self) -> 'Quaternion':
|
|
777
|
-
''' Return a quaternion representation of the rotation matrix.
|
|
778
|
-
|
|
779
|
-
:rtype: 'Quaternion'
|
|
780
|
-
:return: Quaternion representation of the rotation matrix.
|
|
781
|
-
'''
|
|
782
|
-
pass
|
|
783
|
-
|
|
784
|
-
def to_scale(self) -> 'Vector':
|
|
785
|
-
''' Return the scale part of a 3x3 or 4x4 matrix.
|
|
786
|
-
|
|
787
|
-
:rtype: 'Vector'
|
|
788
|
-
:return: Return the scale of a matrix.
|
|
789
|
-
'''
|
|
790
|
-
pass
|
|
791
|
-
|
|
792
|
-
def to_translation(self) -> 'Vector':
|
|
793
|
-
''' Return the translation part of a 4 row matrix.
|
|
794
|
-
|
|
795
|
-
:rtype: 'Vector'
|
|
796
|
-
:return: Return the translation of a matrix.
|
|
797
|
-
'''
|
|
798
|
-
pass
|
|
799
|
-
|
|
800
|
-
def transpose(self):
|
|
801
|
-
''' Set the matrix to its transpose.
|
|
802
|
-
|
|
803
|
-
'''
|
|
804
|
-
pass
|
|
805
|
-
|
|
806
|
-
def transposed(self) -> 'Matrix':
|
|
807
|
-
''' Return a new, transposed matrix.
|
|
808
|
-
|
|
809
|
-
:rtype: 'Matrix'
|
|
810
|
-
:return: a transposed matrix
|
|
811
|
-
'''
|
|
812
|
-
pass
|
|
813
|
-
|
|
814
|
-
def zero(self) -> 'Matrix':
|
|
815
|
-
''' Set all the matrix values to zero.
|
|
816
|
-
|
|
817
|
-
:rtype: 'Matrix'
|
|
818
|
-
'''
|
|
819
|
-
pass
|
|
820
|
-
|
|
821
|
-
def __init__(self,
|
|
822
|
-
rows=((1.0, 0.0, 0.0, 0.0), (0.0, 1.0, 0.0, 0.0),
|
|
823
|
-
(0.0, 0.0, 1.0, 0.0), (0.0, 0.0, 0.0,
|
|
824
|
-
1.0))) -> typing.Any:
|
|
825
|
-
'''
|
|
826
|
-
|
|
827
|
-
:rtype: typing.Any
|
|
828
|
-
'''
|
|
829
|
-
pass
|
|
830
|
-
|
|
831
|
-
def __getitem__(self, key: int) -> 'Vector':
|
|
832
|
-
'''
|
|
833
|
-
|
|
834
|
-
:param key:
|
|
835
|
-
:type key: int
|
|
836
|
-
:rtype: 'Vector'
|
|
837
|
-
'''
|
|
838
|
-
pass
|
|
839
|
-
|
|
840
|
-
def __len__(self) -> int:
|
|
841
|
-
'''
|
|
842
|
-
|
|
843
|
-
:rtype: int
|
|
844
|
-
'''
|
|
845
|
-
pass
|
|
846
|
-
|
|
847
|
-
def __add__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
848
|
-
) -> 'Matrix':
|
|
849
|
-
'''
|
|
850
|
-
|
|
851
|
-
:param other:
|
|
852
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
853
|
-
:rtype: 'Matrix'
|
|
854
|
-
'''
|
|
855
|
-
pass
|
|
856
|
-
|
|
857
|
-
def __sub__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
858
|
-
) -> 'Matrix':
|
|
859
|
-
'''
|
|
860
|
-
|
|
861
|
-
:param other:
|
|
862
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
863
|
-
:rtype: 'Matrix'
|
|
864
|
-
'''
|
|
865
|
-
pass
|
|
866
|
-
|
|
867
|
-
def __mul__(self, other: typing.Union[int, float]) -> 'Matrix':
|
|
868
|
-
'''
|
|
869
|
-
|
|
870
|
-
:param other:
|
|
871
|
-
:type other: typing.Union[int, float]
|
|
872
|
-
:rtype: 'Matrix'
|
|
873
|
-
'''
|
|
874
|
-
pass
|
|
875
|
-
|
|
876
|
-
def __matmul__(
|
|
877
|
-
self, other: typing.Union[typing.Sequence[float], 'Matrix', typing.
|
|
878
|
-
Sequence[float], 'Vector']
|
|
879
|
-
) -> typing.Union['Matrix', 'Vector']:
|
|
880
|
-
'''
|
|
881
|
-
|
|
882
|
-
:param other:
|
|
883
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix', typing.Sequence[float], 'Vector']
|
|
884
|
-
:rtype: typing.Union['Matrix', 'Vector']
|
|
885
|
-
'''
|
|
886
|
-
pass
|
|
887
|
-
|
|
888
|
-
def __radd__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
889
|
-
) -> 'Matrix':
|
|
890
|
-
'''
|
|
891
|
-
|
|
892
|
-
:param other:
|
|
893
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
894
|
-
:rtype: 'Matrix'
|
|
895
|
-
'''
|
|
896
|
-
pass
|
|
897
|
-
|
|
898
|
-
def __rsub__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
899
|
-
) -> 'Matrix':
|
|
900
|
-
'''
|
|
901
|
-
|
|
902
|
-
:param other:
|
|
903
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
904
|
-
:rtype: 'Matrix'
|
|
905
|
-
'''
|
|
906
|
-
pass
|
|
907
|
-
|
|
908
|
-
def __rmul__(self, other: typing.Union[int, float]) -> 'Matrix':
|
|
909
|
-
'''
|
|
910
|
-
|
|
911
|
-
:param other:
|
|
912
|
-
:type other: typing.Union[int, float]
|
|
913
|
-
:rtype: 'Matrix'
|
|
914
|
-
'''
|
|
915
|
-
pass
|
|
916
|
-
|
|
917
|
-
def __rmatmul__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
918
|
-
) -> 'Matrix':
|
|
919
|
-
'''
|
|
920
|
-
|
|
921
|
-
:param other:
|
|
922
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
923
|
-
:rtype: 'Matrix'
|
|
924
|
-
'''
|
|
925
|
-
pass
|
|
926
|
-
|
|
927
|
-
def __imul__(self, other: typing.Union[int, float]) -> 'Matrix':
|
|
928
|
-
'''
|
|
929
|
-
|
|
930
|
-
:param other:
|
|
931
|
-
:type other: typing.Union[int, float]
|
|
932
|
-
:rtype: 'Matrix'
|
|
933
|
-
'''
|
|
934
|
-
pass
|
|
935
|
-
|
|
936
|
-
def __imatmul__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
937
|
-
) -> 'Matrix':
|
|
938
|
-
'''
|
|
939
|
-
|
|
940
|
-
:param other:
|
|
941
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
942
|
-
:rtype: 'Matrix'
|
|
943
|
-
'''
|
|
944
|
-
pass
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
class Quaternion:
|
|
948
|
-
''' This object gives access to Quaternions in Blender. :arg seq: size 3 or 4 :type seq: `Vector` :arg angle: rotation angle, in radians :type angle: float The constructor takes arguments in various forms: (), *no args* Create an identity quaternion (*wxyz*) Create a quaternion from a ``(w, x, y, z)`` vector. (*exponential_map*) Create a quaternion from a 3d exponential map vector. .. seealso:: :meth:`to_exponential_map` (*axis, angle*) Create a quaternion representing a rotation of *angle* radians over *axis*. .. seealso:: :meth:`to_axis_angle`
|
|
949
|
-
'''
|
|
950
|
-
|
|
951
|
-
angle: float = None
|
|
952
|
-
''' Angle of the quaternion.
|
|
953
|
-
|
|
954
|
-
:type: float
|
|
955
|
-
'''
|
|
956
|
-
|
|
957
|
-
axis: typing.Union[typing.Sequence[float], 'Vector'] = None
|
|
958
|
-
''' Quaternion axis as a vector.
|
|
959
|
-
|
|
960
|
-
:type: typing.Union[typing.Sequence[float], 'Vector']
|
|
961
|
-
'''
|
|
962
|
-
|
|
963
|
-
is_frozen: bool = None
|
|
964
|
-
''' True when this object has been frozen (read-only).
|
|
965
|
-
|
|
966
|
-
:type: bool
|
|
967
|
-
'''
|
|
968
|
-
|
|
969
|
-
is_valid: bool = None
|
|
970
|
-
''' True when the owner of this data is valid.
|
|
971
|
-
|
|
972
|
-
:type: bool
|
|
973
|
-
'''
|
|
974
|
-
|
|
975
|
-
is_wrapped: bool = None
|
|
976
|
-
''' True when this object wraps external data (read-only).
|
|
977
|
-
|
|
978
|
-
:type: bool
|
|
979
|
-
'''
|
|
980
|
-
|
|
981
|
-
magnitude: float = None
|
|
982
|
-
''' Size of the quaternion (read-only).
|
|
983
|
-
|
|
984
|
-
:type: float
|
|
985
|
-
'''
|
|
986
|
-
|
|
987
|
-
owner = None
|
|
988
|
-
''' The item this is wrapping or None (read-only).'''
|
|
989
|
-
|
|
990
|
-
w: float = None
|
|
991
|
-
''' Quaternion axis value.
|
|
992
|
-
|
|
993
|
-
:type: float
|
|
994
|
-
'''
|
|
995
|
-
|
|
996
|
-
x: float = None
|
|
997
|
-
''' Quaternion axis value.
|
|
998
|
-
|
|
999
|
-
:type: float
|
|
1000
|
-
'''
|
|
1001
|
-
|
|
1002
|
-
y: float = None
|
|
1003
|
-
''' Quaternion axis value.
|
|
1004
|
-
|
|
1005
|
-
:type: float
|
|
1006
|
-
'''
|
|
1007
|
-
|
|
1008
|
-
z: float = None
|
|
1009
|
-
''' Quaternion axis value.
|
|
1010
|
-
|
|
1011
|
-
:type: float
|
|
1012
|
-
'''
|
|
1013
|
-
|
|
1014
|
-
@staticmethod
|
|
1015
|
-
def conjugate():
|
|
1016
|
-
''' Set the quaternion to its conjugate (negate x, y, z).
|
|
1017
|
-
|
|
1018
|
-
'''
|
|
1019
|
-
pass
|
|
1020
|
-
|
|
1021
|
-
@staticmethod
|
|
1022
|
-
def conjugated() -> 'Quaternion':
|
|
1023
|
-
''' Return a new conjugated quaternion.
|
|
1024
|
-
|
|
1025
|
-
:rtype: 'Quaternion'
|
|
1026
|
-
:return: a new quaternion.
|
|
1027
|
-
'''
|
|
1028
|
-
pass
|
|
1029
|
-
|
|
1030
|
-
@staticmethod
|
|
1031
|
-
def copy() -> 'Quaternion':
|
|
1032
|
-
''' Returns a copy of this quaternion.
|
|
1033
|
-
|
|
1034
|
-
:rtype: 'Quaternion'
|
|
1035
|
-
:return: A copy of the quaternion.
|
|
1036
|
-
'''
|
|
1037
|
-
pass
|
|
1038
|
-
|
|
1039
|
-
def cross(self, other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1040
|
-
) -> 'Quaternion':
|
|
1041
|
-
''' Return the cross product of this quaternion and another.
|
|
1042
|
-
|
|
1043
|
-
:param other: The other quaternion to perform the cross product with.
|
|
1044
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1045
|
-
:rtype: 'Quaternion'
|
|
1046
|
-
:return: The cross product.
|
|
1047
|
-
'''
|
|
1048
|
-
pass
|
|
1049
|
-
|
|
1050
|
-
def dot(self, other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1051
|
-
) -> float:
|
|
1052
|
-
''' Return the dot product of this quaternion and another.
|
|
1053
|
-
|
|
1054
|
-
:param other: The other quaternion to perform the dot product with.
|
|
1055
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1056
|
-
:rtype: float
|
|
1057
|
-
:return: The dot product.
|
|
1058
|
-
'''
|
|
1059
|
-
pass
|
|
1060
|
-
|
|
1061
|
-
@staticmethod
|
|
1062
|
-
def freeze() -> 'Quaternion':
|
|
1063
|
-
''' Make this object immutable. After this the object can be hashed, used in dictionaries & sets.
|
|
1064
|
-
|
|
1065
|
-
:rtype: 'Quaternion'
|
|
1066
|
-
:return: An instance of this object.
|
|
1067
|
-
'''
|
|
1068
|
-
pass
|
|
1069
|
-
|
|
1070
|
-
@staticmethod
|
|
1071
|
-
def identity() -> 'Quaternion':
|
|
1072
|
-
''' Set the quaternion to an identity quaternion.
|
|
1073
|
-
|
|
1074
|
-
:rtype: 'Quaternion'
|
|
1075
|
-
'''
|
|
1076
|
-
pass
|
|
1077
|
-
|
|
1078
|
-
@staticmethod
|
|
1079
|
-
def invert():
|
|
1080
|
-
''' Set the quaternion to its inverse.
|
|
1081
|
-
|
|
1082
|
-
'''
|
|
1083
|
-
pass
|
|
1084
|
-
|
|
1085
|
-
@staticmethod
|
|
1086
|
-
def inverted() -> 'Quaternion':
|
|
1087
|
-
''' Return a new, inverted quaternion.
|
|
1088
|
-
|
|
1089
|
-
:rtype: 'Quaternion'
|
|
1090
|
-
:return: the inverted value.
|
|
1091
|
-
'''
|
|
1092
|
-
pass
|
|
1093
|
-
|
|
1094
|
-
def make_compatible(self, other):
|
|
1095
|
-
''' Make this quaternion compatible with another, so interpolating between them works as intended.
|
|
1096
|
-
|
|
1097
|
-
'''
|
|
1098
|
-
pass
|
|
1099
|
-
|
|
1100
|
-
@staticmethod
|
|
1101
|
-
def negate() -> 'Quaternion':
|
|
1102
|
-
''' Set the quaternion to its negative.
|
|
1103
|
-
|
|
1104
|
-
:rtype: 'Quaternion'
|
|
1105
|
-
'''
|
|
1106
|
-
pass
|
|
1107
|
-
|
|
1108
|
-
@staticmethod
|
|
1109
|
-
def normalize():
|
|
1110
|
-
''' Normalize the quaternion.
|
|
1111
|
-
|
|
1112
|
-
'''
|
|
1113
|
-
pass
|
|
1114
|
-
|
|
1115
|
-
@staticmethod
|
|
1116
|
-
def normalized() -> 'Quaternion':
|
|
1117
|
-
''' Return a new normalized quaternion.
|
|
1118
|
-
|
|
1119
|
-
:rtype: 'Quaternion'
|
|
1120
|
-
:return: a normalized copy.
|
|
1121
|
-
'''
|
|
1122
|
-
pass
|
|
1123
|
-
|
|
1124
|
-
def rotate(self,
|
|
1125
|
-
other: typing.Union[typing.Sequence[float], 'Euler', typing.
|
|
1126
|
-
Sequence[float], 'Quaternion', typing.
|
|
1127
|
-
Sequence[float], 'Matrix']):
|
|
1128
|
-
''' Rotates the quaternion by another mathutils value.
|
|
1129
|
-
|
|
1130
|
-
:param other: rotation component of mathutils value
|
|
1131
|
-
:type other: typing.Union[typing.Sequence[float], 'Euler', typing.Sequence[float], 'Quaternion', typing.Sequence[float], 'Matrix']
|
|
1132
|
-
'''
|
|
1133
|
-
pass
|
|
1134
|
-
|
|
1135
|
-
@staticmethod
|
|
1136
|
-
def rotation_difference(
|
|
1137
|
-
other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1138
|
-
) -> 'Quaternion':
|
|
1139
|
-
''' Returns a quaternion representing the rotational difference.
|
|
1140
|
-
|
|
1141
|
-
:param other: second quaternion.
|
|
1142
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1143
|
-
:rtype: 'Quaternion'
|
|
1144
|
-
:return: the rotational difference between the two quat rotations.
|
|
1145
|
-
'''
|
|
1146
|
-
pass
|
|
1147
|
-
|
|
1148
|
-
@staticmethod
|
|
1149
|
-
def slerp(other: typing.Union[typing.Sequence[float], 'Quaternion'],
|
|
1150
|
-
factor: float) -> 'Quaternion':
|
|
1151
|
-
''' Returns the interpolation of two quaternions.
|
|
1152
|
-
|
|
1153
|
-
:param other: value to interpolate with.
|
|
1154
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1155
|
-
:param factor: The interpolation value in [0.0, 1.0].
|
|
1156
|
-
:type factor: float
|
|
1157
|
-
:rtype: 'Quaternion'
|
|
1158
|
-
:return: The interpolated rotation.
|
|
1159
|
-
'''
|
|
1160
|
-
pass
|
|
1161
|
-
|
|
1162
|
-
def to_axis_angle(self) -> typing.Tuple['Vector', 'float']:
|
|
1163
|
-
''' Return the axis, angle representation of the quaternion.
|
|
1164
|
-
|
|
1165
|
-
:rtype: typing.Tuple['Vector', 'float']
|
|
1166
|
-
:return: axis, angle.
|
|
1167
|
-
'''
|
|
1168
|
-
pass
|
|
1169
|
-
|
|
1170
|
-
def to_euler(self, order: str,
|
|
1171
|
-
euler_compat: typing.Union[typing.Sequence[float], 'Euler']
|
|
1172
|
-
) -> 'Euler':
|
|
1173
|
-
''' Return Euler representation of the quaternion.
|
|
1174
|
-
|
|
1175
|
-
:param order: Optional rotation order argument in ['XYZ', 'XZY', 'YXZ', 'YZX', 'ZXY', 'ZYX'].
|
|
1176
|
-
:type order: str
|
|
1177
|
-
:param euler_compat: Optional euler argument the new euler will be made compatible with (no axis flipping between them). Useful for converting a series of matrices to animation curves.
|
|
1178
|
-
:type euler_compat: typing.Union[typing.Sequence[float], 'Euler']
|
|
1179
|
-
:rtype: 'Euler'
|
|
1180
|
-
:return: Euler representation of the quaternion.
|
|
1181
|
-
'''
|
|
1182
|
-
pass
|
|
1183
|
-
|
|
1184
|
-
def to_exponential_map(self) -> 'Vector':
|
|
1185
|
-
''' Return the exponential map representation of the quaternion. This representation consist of the rotation axis multiplied by the rotation angle. Such a representation is useful for interpolation between multiple orientations. To convert back to a quaternion, pass it to the `Quaternion` constructor.
|
|
1186
|
-
|
|
1187
|
-
:rtype: 'Vector'
|
|
1188
|
-
:return: exponential map.
|
|
1189
|
-
'''
|
|
1190
|
-
pass
|
|
1191
|
-
|
|
1192
|
-
def to_matrix(self) -> 'Matrix':
|
|
1193
|
-
''' Return a matrix representation of the quaternion.
|
|
1194
|
-
|
|
1195
|
-
:rtype: 'Matrix'
|
|
1196
|
-
:return: A 3x3 rotation matrix representation of the quaternion.
|
|
1197
|
-
'''
|
|
1198
|
-
pass
|
|
1199
|
-
|
|
1200
|
-
def to_swing_twist(
|
|
1201
|
-
self, axis: typing.Any) -> typing.Tuple['Quaternion', 'float']:
|
|
1202
|
-
''' Split the rotation into a swing quaternion with the specified axis fixed at zero, and the remaining twist rotation angle.
|
|
1203
|
-
|
|
1204
|
-
:param axis: twist axis as a string in ['X', 'Y', 'Z']
|
|
1205
|
-
:type axis: typing.Any
|
|
1206
|
-
:rtype: typing.Tuple['Quaternion', 'float']
|
|
1207
|
-
:return: swing, twist angle.
|
|
1208
|
-
'''
|
|
1209
|
-
pass
|
|
1210
|
-
|
|
1211
|
-
def __init__(self, seq=(1.0, 0.0, 0.0, 0.0)) -> typing.Any:
|
|
1212
|
-
'''
|
|
1213
|
-
|
|
1214
|
-
:rtype: typing.Any
|
|
1215
|
-
'''
|
|
1216
|
-
pass
|
|
1217
|
-
|
|
1218
|
-
def __len__(self) -> int:
|
|
1219
|
-
'''
|
|
1220
|
-
|
|
1221
|
-
:rtype: int
|
|
1222
|
-
'''
|
|
1223
|
-
pass
|
|
1224
|
-
|
|
1225
|
-
def __getitem__(self, key: int) -> float:
|
|
1226
|
-
'''
|
|
1227
|
-
|
|
1228
|
-
:param key:
|
|
1229
|
-
:type key: int
|
|
1230
|
-
:rtype: float
|
|
1231
|
-
'''
|
|
1232
|
-
pass
|
|
1233
|
-
|
|
1234
|
-
def __setitem__(self, key: int, value: float) -> float:
|
|
1235
|
-
'''
|
|
1236
|
-
|
|
1237
|
-
:param key:
|
|
1238
|
-
:type key: int
|
|
1239
|
-
:param value:
|
|
1240
|
-
:type value: float
|
|
1241
|
-
:rtype: float
|
|
1242
|
-
'''
|
|
1243
|
-
pass
|
|
1244
|
-
|
|
1245
|
-
def __add__(self, other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1246
|
-
) -> 'Quaternion':
|
|
1247
|
-
'''
|
|
1248
|
-
|
|
1249
|
-
:param other:
|
|
1250
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1251
|
-
:rtype: 'Quaternion'
|
|
1252
|
-
'''
|
|
1253
|
-
pass
|
|
1254
|
-
|
|
1255
|
-
def __sub__(self, other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1256
|
-
) -> 'Quaternion':
|
|
1257
|
-
'''
|
|
1258
|
-
|
|
1259
|
-
:param other:
|
|
1260
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1261
|
-
:rtype: 'Quaternion'
|
|
1262
|
-
'''
|
|
1263
|
-
pass
|
|
1264
|
-
|
|
1265
|
-
def __mul__(self, other: typing.Union[int, float, typing.
|
|
1266
|
-
Sequence[float], 'Quaternion']
|
|
1267
|
-
) -> 'Quaternion':
|
|
1268
|
-
'''
|
|
1269
|
-
|
|
1270
|
-
:param other:
|
|
1271
|
-
:type other: typing.Union[int, float, typing.Sequence[float], 'Quaternion']
|
|
1272
|
-
:rtype: 'Quaternion'
|
|
1273
|
-
'''
|
|
1274
|
-
pass
|
|
1275
|
-
|
|
1276
|
-
def __matmul__(
|
|
1277
|
-
self, other: typing.Union[typing.Sequence[float], 'Vector', typing.
|
|
1278
|
-
Sequence[float], 'Quaternion']
|
|
1279
|
-
) -> typing.Union['Vector', 'Quaternion']:
|
|
1280
|
-
'''
|
|
1281
|
-
|
|
1282
|
-
:param other:
|
|
1283
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector', typing.Sequence[float], 'Quaternion']
|
|
1284
|
-
:rtype: typing.Union['Vector', 'Quaternion']
|
|
1285
|
-
'''
|
|
1286
|
-
pass
|
|
1287
|
-
|
|
1288
|
-
def __radd__(self,
|
|
1289
|
-
other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1290
|
-
) -> 'Quaternion':
|
|
1291
|
-
'''
|
|
1292
|
-
|
|
1293
|
-
:param other:
|
|
1294
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1295
|
-
:rtype: 'Quaternion'
|
|
1296
|
-
'''
|
|
1297
|
-
pass
|
|
1298
|
-
|
|
1299
|
-
def __rsub__(self,
|
|
1300
|
-
other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1301
|
-
) -> 'Quaternion':
|
|
1302
|
-
'''
|
|
1303
|
-
|
|
1304
|
-
:param other:
|
|
1305
|
-
:type other: typing.Union[typing.Sequence[float], 'Quaternion']
|
|
1306
|
-
:rtype: 'Quaternion'
|
|
1307
|
-
'''
|
|
1308
|
-
pass
|
|
1309
|
-
|
|
1310
|
-
def __rmul__(self, other: typing.Union[int, float, typing.
|
|
1311
|
-
Sequence[float], 'Quaternion']
|
|
1312
|
-
) -> 'Quaternion':
|
|
1313
|
-
'''
|
|
1314
|
-
|
|
1315
|
-
:param other:
|
|
1316
|
-
:type other: typing.Union[int, float, typing.Sequence[float], 'Quaternion']
|
|
1317
|
-
:rtype: 'Quaternion'
|
|
1318
|
-
'''
|
|
1319
|
-
pass
|
|
1320
|
-
|
|
1321
|
-
def __rmatmul__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
1322
|
-
) -> 'Vector':
|
|
1323
|
-
'''
|
|
1324
|
-
|
|
1325
|
-
:param other:
|
|
1326
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
1327
|
-
:rtype: 'Vector'
|
|
1328
|
-
'''
|
|
1329
|
-
pass
|
|
1330
|
-
|
|
1331
|
-
def __imul__(self, other: typing.Union[int, float, typing.
|
|
1332
|
-
Sequence[float], 'Quaternion']
|
|
1333
|
-
) -> 'Quaternion':
|
|
1334
|
-
'''
|
|
1335
|
-
|
|
1336
|
-
:param other:
|
|
1337
|
-
:type other: typing.Union[int, float, typing.Sequence[float], 'Quaternion']
|
|
1338
|
-
:rtype: 'Quaternion'
|
|
1339
|
-
'''
|
|
1340
|
-
pass
|
|
1341
|
-
|
|
1342
|
-
def __imatmul__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
1343
|
-
) -> 'Vector':
|
|
1344
|
-
'''
|
|
1345
|
-
|
|
1346
|
-
:param other:
|
|
1347
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
1348
|
-
:rtype: 'Vector'
|
|
1349
|
-
'''
|
|
1350
|
-
pass
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
class Vector:
|
|
1354
|
-
''' This object gives access to Vectors in Blender. :arg seq: Components of the vector, must be a sequence of at least two :type seq: sequence of numbers
|
|
1355
|
-
'''
|
|
1356
|
-
|
|
1357
|
-
is_frozen: bool = None
|
|
1358
|
-
''' True when this object has been frozen (read-only).
|
|
1359
|
-
|
|
1360
|
-
:type: bool
|
|
1361
|
-
'''
|
|
1362
|
-
|
|
1363
|
-
is_valid: bool = None
|
|
1364
|
-
''' True when the owner of this data is valid.
|
|
1365
|
-
|
|
1366
|
-
:type: bool
|
|
1367
|
-
'''
|
|
1368
|
-
|
|
1369
|
-
is_wrapped: bool = None
|
|
1370
|
-
''' True when this object wraps external data (read-only).
|
|
1371
|
-
|
|
1372
|
-
:type: bool
|
|
1373
|
-
'''
|
|
1374
|
-
|
|
1375
|
-
length: float = None
|
|
1376
|
-
''' Vector Length.
|
|
1377
|
-
|
|
1378
|
-
:type: float
|
|
1379
|
-
'''
|
|
1380
|
-
|
|
1381
|
-
length_squared: float = None
|
|
1382
|
-
''' Vector length squared (v.dot(v)).
|
|
1383
|
-
|
|
1384
|
-
:type: float
|
|
1385
|
-
'''
|
|
1386
|
-
|
|
1387
|
-
magnitude: float = None
|
|
1388
|
-
''' Vector Length.
|
|
1389
|
-
|
|
1390
|
-
:type: float
|
|
1391
|
-
'''
|
|
1392
|
-
|
|
1393
|
-
owner = None
|
|
1394
|
-
''' The item this is wrapping or None (read-only).'''
|
|
1395
|
-
|
|
1396
|
-
w: float = None
|
|
1397
|
-
''' Vector W axis (4D Vectors only).
|
|
1398
|
-
|
|
1399
|
-
:type: float
|
|
1400
|
-
'''
|
|
1401
|
-
|
|
1402
|
-
ww = None
|
|
1403
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1404
|
-
|
|
1405
|
-
www = None
|
|
1406
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1407
|
-
|
|
1408
|
-
wwww = None
|
|
1409
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1410
|
-
|
|
1411
|
-
wwwx = None
|
|
1412
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1413
|
-
|
|
1414
|
-
wwwy = None
|
|
1415
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1416
|
-
|
|
1417
|
-
wwwz = None
|
|
1418
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1419
|
-
|
|
1420
|
-
wwx = None
|
|
1421
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1422
|
-
|
|
1423
|
-
wwxw = None
|
|
1424
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1425
|
-
|
|
1426
|
-
wwxx = None
|
|
1427
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1428
|
-
|
|
1429
|
-
wwxy = None
|
|
1430
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1431
|
-
|
|
1432
|
-
wwxz = None
|
|
1433
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1434
|
-
|
|
1435
|
-
wwy = None
|
|
1436
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1437
|
-
|
|
1438
|
-
wwyw = None
|
|
1439
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1440
|
-
|
|
1441
|
-
wwyx = None
|
|
1442
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1443
|
-
|
|
1444
|
-
wwyy = None
|
|
1445
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1446
|
-
|
|
1447
|
-
wwyz = None
|
|
1448
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1449
|
-
|
|
1450
|
-
wwz = None
|
|
1451
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1452
|
-
|
|
1453
|
-
wwzw = None
|
|
1454
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1455
|
-
|
|
1456
|
-
wwzx = None
|
|
1457
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1458
|
-
|
|
1459
|
-
wwzy = None
|
|
1460
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1461
|
-
|
|
1462
|
-
wwzz = None
|
|
1463
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1464
|
-
|
|
1465
|
-
wx = None
|
|
1466
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1467
|
-
|
|
1468
|
-
wxw = None
|
|
1469
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1470
|
-
|
|
1471
|
-
wxww = None
|
|
1472
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1473
|
-
|
|
1474
|
-
wxwx = None
|
|
1475
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1476
|
-
|
|
1477
|
-
wxwy = None
|
|
1478
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1479
|
-
|
|
1480
|
-
wxwz = None
|
|
1481
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1482
|
-
|
|
1483
|
-
wxx = None
|
|
1484
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1485
|
-
|
|
1486
|
-
wxxw = None
|
|
1487
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1488
|
-
|
|
1489
|
-
wxxx = None
|
|
1490
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1491
|
-
|
|
1492
|
-
wxxy = None
|
|
1493
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1494
|
-
|
|
1495
|
-
wxxz = None
|
|
1496
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1497
|
-
|
|
1498
|
-
wxy = None
|
|
1499
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1500
|
-
|
|
1501
|
-
wxyw = None
|
|
1502
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1503
|
-
|
|
1504
|
-
wxyx = None
|
|
1505
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1506
|
-
|
|
1507
|
-
wxyy = None
|
|
1508
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1509
|
-
|
|
1510
|
-
wxyz = None
|
|
1511
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1512
|
-
|
|
1513
|
-
wxz = None
|
|
1514
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1515
|
-
|
|
1516
|
-
wxzw = None
|
|
1517
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1518
|
-
|
|
1519
|
-
wxzx = None
|
|
1520
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1521
|
-
|
|
1522
|
-
wxzy = None
|
|
1523
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1524
|
-
|
|
1525
|
-
wxzz = None
|
|
1526
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1527
|
-
|
|
1528
|
-
wy = None
|
|
1529
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1530
|
-
|
|
1531
|
-
wyw = None
|
|
1532
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1533
|
-
|
|
1534
|
-
wyww = None
|
|
1535
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1536
|
-
|
|
1537
|
-
wywx = None
|
|
1538
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1539
|
-
|
|
1540
|
-
wywy = None
|
|
1541
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1542
|
-
|
|
1543
|
-
wywz = None
|
|
1544
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1545
|
-
|
|
1546
|
-
wyx = None
|
|
1547
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1548
|
-
|
|
1549
|
-
wyxw = None
|
|
1550
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1551
|
-
|
|
1552
|
-
wyxx = None
|
|
1553
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1554
|
-
|
|
1555
|
-
wyxy = None
|
|
1556
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1557
|
-
|
|
1558
|
-
wyxz = None
|
|
1559
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1560
|
-
|
|
1561
|
-
wyy = None
|
|
1562
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1563
|
-
|
|
1564
|
-
wyyw = None
|
|
1565
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1566
|
-
|
|
1567
|
-
wyyx = None
|
|
1568
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1569
|
-
|
|
1570
|
-
wyyy = None
|
|
1571
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1572
|
-
|
|
1573
|
-
wyyz = None
|
|
1574
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1575
|
-
|
|
1576
|
-
wyz = None
|
|
1577
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1578
|
-
|
|
1579
|
-
wyzw = None
|
|
1580
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1581
|
-
|
|
1582
|
-
wyzx = None
|
|
1583
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1584
|
-
|
|
1585
|
-
wyzy = None
|
|
1586
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1587
|
-
|
|
1588
|
-
wyzz = None
|
|
1589
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1590
|
-
|
|
1591
|
-
wz = None
|
|
1592
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1593
|
-
|
|
1594
|
-
wzw = None
|
|
1595
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1596
|
-
|
|
1597
|
-
wzww = None
|
|
1598
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1599
|
-
|
|
1600
|
-
wzwx = None
|
|
1601
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1602
|
-
|
|
1603
|
-
wzwy = None
|
|
1604
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1605
|
-
|
|
1606
|
-
wzwz = None
|
|
1607
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1608
|
-
|
|
1609
|
-
wzx = None
|
|
1610
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1611
|
-
|
|
1612
|
-
wzxw = None
|
|
1613
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1614
|
-
|
|
1615
|
-
wzxx = None
|
|
1616
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1617
|
-
|
|
1618
|
-
wzxy = None
|
|
1619
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1620
|
-
|
|
1621
|
-
wzxz = None
|
|
1622
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1623
|
-
|
|
1624
|
-
wzy = None
|
|
1625
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1626
|
-
|
|
1627
|
-
wzyw = None
|
|
1628
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1629
|
-
|
|
1630
|
-
wzyx = None
|
|
1631
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1632
|
-
|
|
1633
|
-
wzyy = None
|
|
1634
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1635
|
-
|
|
1636
|
-
wzyz = None
|
|
1637
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1638
|
-
|
|
1639
|
-
wzz = None
|
|
1640
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1641
|
-
|
|
1642
|
-
wzzw = None
|
|
1643
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1644
|
-
|
|
1645
|
-
wzzx = None
|
|
1646
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1647
|
-
|
|
1648
|
-
wzzy = None
|
|
1649
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1650
|
-
|
|
1651
|
-
wzzz = None
|
|
1652
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1653
|
-
|
|
1654
|
-
x: float = None
|
|
1655
|
-
''' Vector X axis.
|
|
1656
|
-
|
|
1657
|
-
:type: float
|
|
1658
|
-
'''
|
|
1659
|
-
|
|
1660
|
-
xw = None
|
|
1661
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1662
|
-
|
|
1663
|
-
xww = None
|
|
1664
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1665
|
-
|
|
1666
|
-
xwww = None
|
|
1667
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1668
|
-
|
|
1669
|
-
xwwx = None
|
|
1670
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1671
|
-
|
|
1672
|
-
xwwy = None
|
|
1673
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1674
|
-
|
|
1675
|
-
xwwz = None
|
|
1676
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1677
|
-
|
|
1678
|
-
xwx = None
|
|
1679
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1680
|
-
|
|
1681
|
-
xwxw = None
|
|
1682
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1683
|
-
|
|
1684
|
-
xwxx = None
|
|
1685
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1686
|
-
|
|
1687
|
-
xwxy = None
|
|
1688
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1689
|
-
|
|
1690
|
-
xwxz = None
|
|
1691
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1692
|
-
|
|
1693
|
-
xwy = None
|
|
1694
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1695
|
-
|
|
1696
|
-
xwyw = None
|
|
1697
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1698
|
-
|
|
1699
|
-
xwyx = None
|
|
1700
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1701
|
-
|
|
1702
|
-
xwyy = None
|
|
1703
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1704
|
-
|
|
1705
|
-
xwyz = None
|
|
1706
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1707
|
-
|
|
1708
|
-
xwz = None
|
|
1709
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1710
|
-
|
|
1711
|
-
xwzw = None
|
|
1712
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1713
|
-
|
|
1714
|
-
xwzx = None
|
|
1715
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1716
|
-
|
|
1717
|
-
xwzy = None
|
|
1718
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1719
|
-
|
|
1720
|
-
xwzz = None
|
|
1721
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1722
|
-
|
|
1723
|
-
xx = None
|
|
1724
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1725
|
-
|
|
1726
|
-
xxw = None
|
|
1727
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1728
|
-
|
|
1729
|
-
xxww = None
|
|
1730
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1731
|
-
|
|
1732
|
-
xxwx = None
|
|
1733
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1734
|
-
|
|
1735
|
-
xxwy = None
|
|
1736
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1737
|
-
|
|
1738
|
-
xxwz = None
|
|
1739
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1740
|
-
|
|
1741
|
-
xxx = None
|
|
1742
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1743
|
-
|
|
1744
|
-
xxxw = None
|
|
1745
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1746
|
-
|
|
1747
|
-
xxxx = None
|
|
1748
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1749
|
-
|
|
1750
|
-
xxxy = None
|
|
1751
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1752
|
-
|
|
1753
|
-
xxxz = None
|
|
1754
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1755
|
-
|
|
1756
|
-
xxy = None
|
|
1757
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1758
|
-
|
|
1759
|
-
xxyw = None
|
|
1760
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1761
|
-
|
|
1762
|
-
xxyx = None
|
|
1763
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1764
|
-
|
|
1765
|
-
xxyy = None
|
|
1766
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1767
|
-
|
|
1768
|
-
xxyz = None
|
|
1769
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1770
|
-
|
|
1771
|
-
xxz = None
|
|
1772
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1773
|
-
|
|
1774
|
-
xxzw = None
|
|
1775
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1776
|
-
|
|
1777
|
-
xxzx = None
|
|
1778
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1779
|
-
|
|
1780
|
-
xxzy = None
|
|
1781
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1782
|
-
|
|
1783
|
-
xxzz = None
|
|
1784
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1785
|
-
|
|
1786
|
-
xy = None
|
|
1787
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1788
|
-
|
|
1789
|
-
xyw = None
|
|
1790
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1791
|
-
|
|
1792
|
-
xyww = None
|
|
1793
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1794
|
-
|
|
1795
|
-
xywx = None
|
|
1796
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1797
|
-
|
|
1798
|
-
xywy = None
|
|
1799
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1800
|
-
|
|
1801
|
-
xywz = None
|
|
1802
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1803
|
-
|
|
1804
|
-
xyx = None
|
|
1805
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1806
|
-
|
|
1807
|
-
xyxw = None
|
|
1808
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1809
|
-
|
|
1810
|
-
xyxx = None
|
|
1811
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1812
|
-
|
|
1813
|
-
xyxy = None
|
|
1814
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1815
|
-
|
|
1816
|
-
xyxz = None
|
|
1817
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1818
|
-
|
|
1819
|
-
xyy = None
|
|
1820
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1821
|
-
|
|
1822
|
-
xyyw = None
|
|
1823
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1824
|
-
|
|
1825
|
-
xyyx = None
|
|
1826
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1827
|
-
|
|
1828
|
-
xyyy = None
|
|
1829
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1830
|
-
|
|
1831
|
-
xyyz = None
|
|
1832
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1833
|
-
|
|
1834
|
-
xyz = None
|
|
1835
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1836
|
-
|
|
1837
|
-
xyzw = None
|
|
1838
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1839
|
-
|
|
1840
|
-
xyzx = None
|
|
1841
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1842
|
-
|
|
1843
|
-
xyzy = None
|
|
1844
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1845
|
-
|
|
1846
|
-
xyzz = None
|
|
1847
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1848
|
-
|
|
1849
|
-
xz = None
|
|
1850
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1851
|
-
|
|
1852
|
-
xzw = None
|
|
1853
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1854
|
-
|
|
1855
|
-
xzww = None
|
|
1856
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1857
|
-
|
|
1858
|
-
xzwx = None
|
|
1859
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1860
|
-
|
|
1861
|
-
xzwy = None
|
|
1862
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1863
|
-
|
|
1864
|
-
xzwz = None
|
|
1865
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1866
|
-
|
|
1867
|
-
xzx = None
|
|
1868
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1869
|
-
|
|
1870
|
-
xzxw = None
|
|
1871
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1872
|
-
|
|
1873
|
-
xzxx = None
|
|
1874
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1875
|
-
|
|
1876
|
-
xzxy = None
|
|
1877
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1878
|
-
|
|
1879
|
-
xzxz = None
|
|
1880
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1881
|
-
|
|
1882
|
-
xzy = None
|
|
1883
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1884
|
-
|
|
1885
|
-
xzyw = None
|
|
1886
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1887
|
-
|
|
1888
|
-
xzyx = None
|
|
1889
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1890
|
-
|
|
1891
|
-
xzyy = None
|
|
1892
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1893
|
-
|
|
1894
|
-
xzyz = None
|
|
1895
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1896
|
-
|
|
1897
|
-
xzz = None
|
|
1898
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1899
|
-
|
|
1900
|
-
xzzw = None
|
|
1901
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1902
|
-
|
|
1903
|
-
xzzx = None
|
|
1904
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1905
|
-
|
|
1906
|
-
xzzy = None
|
|
1907
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1908
|
-
|
|
1909
|
-
xzzz = None
|
|
1910
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1911
|
-
|
|
1912
|
-
y: float = None
|
|
1913
|
-
''' Vector Y axis.
|
|
1914
|
-
|
|
1915
|
-
:type: float
|
|
1916
|
-
'''
|
|
1917
|
-
|
|
1918
|
-
yw = None
|
|
1919
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1920
|
-
|
|
1921
|
-
yww = None
|
|
1922
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1923
|
-
|
|
1924
|
-
ywww = None
|
|
1925
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1926
|
-
|
|
1927
|
-
ywwx = None
|
|
1928
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1929
|
-
|
|
1930
|
-
ywwy = None
|
|
1931
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1932
|
-
|
|
1933
|
-
ywwz = None
|
|
1934
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1935
|
-
|
|
1936
|
-
ywx = None
|
|
1937
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1938
|
-
|
|
1939
|
-
ywxw = None
|
|
1940
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1941
|
-
|
|
1942
|
-
ywxx = None
|
|
1943
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1944
|
-
|
|
1945
|
-
ywxy = None
|
|
1946
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1947
|
-
|
|
1948
|
-
ywxz = None
|
|
1949
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1950
|
-
|
|
1951
|
-
ywy = None
|
|
1952
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1953
|
-
|
|
1954
|
-
ywyw = None
|
|
1955
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1956
|
-
|
|
1957
|
-
ywyx = None
|
|
1958
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1959
|
-
|
|
1960
|
-
ywyy = None
|
|
1961
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1962
|
-
|
|
1963
|
-
ywyz = None
|
|
1964
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1965
|
-
|
|
1966
|
-
ywz = None
|
|
1967
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1968
|
-
|
|
1969
|
-
ywzw = None
|
|
1970
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1971
|
-
|
|
1972
|
-
ywzx = None
|
|
1973
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1974
|
-
|
|
1975
|
-
ywzy = None
|
|
1976
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1977
|
-
|
|
1978
|
-
ywzz = None
|
|
1979
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1980
|
-
|
|
1981
|
-
yx = None
|
|
1982
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1983
|
-
|
|
1984
|
-
yxw = None
|
|
1985
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1986
|
-
|
|
1987
|
-
yxww = None
|
|
1988
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1989
|
-
|
|
1990
|
-
yxwx = None
|
|
1991
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1992
|
-
|
|
1993
|
-
yxwy = None
|
|
1994
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1995
|
-
|
|
1996
|
-
yxwz = None
|
|
1997
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
1998
|
-
|
|
1999
|
-
yxx = None
|
|
2000
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2001
|
-
|
|
2002
|
-
yxxw = None
|
|
2003
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2004
|
-
|
|
2005
|
-
yxxx = None
|
|
2006
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2007
|
-
|
|
2008
|
-
yxxy = None
|
|
2009
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2010
|
-
|
|
2011
|
-
yxxz = None
|
|
2012
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2013
|
-
|
|
2014
|
-
yxy = None
|
|
2015
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2016
|
-
|
|
2017
|
-
yxyw = None
|
|
2018
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2019
|
-
|
|
2020
|
-
yxyx = None
|
|
2021
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2022
|
-
|
|
2023
|
-
yxyy = None
|
|
2024
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2025
|
-
|
|
2026
|
-
yxyz = None
|
|
2027
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2028
|
-
|
|
2029
|
-
yxz = None
|
|
2030
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2031
|
-
|
|
2032
|
-
yxzw = None
|
|
2033
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2034
|
-
|
|
2035
|
-
yxzx = None
|
|
2036
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2037
|
-
|
|
2038
|
-
yxzy = None
|
|
2039
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2040
|
-
|
|
2041
|
-
yxzz = None
|
|
2042
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2043
|
-
|
|
2044
|
-
yy = None
|
|
2045
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2046
|
-
|
|
2047
|
-
yyw = None
|
|
2048
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2049
|
-
|
|
2050
|
-
yyww = None
|
|
2051
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2052
|
-
|
|
2053
|
-
yywx = None
|
|
2054
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2055
|
-
|
|
2056
|
-
yywy = None
|
|
2057
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2058
|
-
|
|
2059
|
-
yywz = None
|
|
2060
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2061
|
-
|
|
2062
|
-
yyx = None
|
|
2063
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2064
|
-
|
|
2065
|
-
yyxw = None
|
|
2066
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2067
|
-
|
|
2068
|
-
yyxx = None
|
|
2069
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2070
|
-
|
|
2071
|
-
yyxy = None
|
|
2072
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2073
|
-
|
|
2074
|
-
yyxz = None
|
|
2075
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2076
|
-
|
|
2077
|
-
yyy = None
|
|
2078
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2079
|
-
|
|
2080
|
-
yyyw = None
|
|
2081
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2082
|
-
|
|
2083
|
-
yyyx = None
|
|
2084
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2085
|
-
|
|
2086
|
-
yyyy = None
|
|
2087
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2088
|
-
|
|
2089
|
-
yyyz = None
|
|
2090
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2091
|
-
|
|
2092
|
-
yyz = None
|
|
2093
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2094
|
-
|
|
2095
|
-
yyzw = None
|
|
2096
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2097
|
-
|
|
2098
|
-
yyzx = None
|
|
2099
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2100
|
-
|
|
2101
|
-
yyzy = None
|
|
2102
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2103
|
-
|
|
2104
|
-
yyzz = None
|
|
2105
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2106
|
-
|
|
2107
|
-
yz = None
|
|
2108
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2109
|
-
|
|
2110
|
-
yzw = None
|
|
2111
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2112
|
-
|
|
2113
|
-
yzww = None
|
|
2114
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2115
|
-
|
|
2116
|
-
yzwx = None
|
|
2117
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2118
|
-
|
|
2119
|
-
yzwy = None
|
|
2120
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2121
|
-
|
|
2122
|
-
yzwz = None
|
|
2123
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2124
|
-
|
|
2125
|
-
yzx = None
|
|
2126
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2127
|
-
|
|
2128
|
-
yzxw = None
|
|
2129
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2130
|
-
|
|
2131
|
-
yzxx = None
|
|
2132
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2133
|
-
|
|
2134
|
-
yzxy = None
|
|
2135
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2136
|
-
|
|
2137
|
-
yzxz = None
|
|
2138
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2139
|
-
|
|
2140
|
-
yzy = None
|
|
2141
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2142
|
-
|
|
2143
|
-
yzyw = None
|
|
2144
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2145
|
-
|
|
2146
|
-
yzyx = None
|
|
2147
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2148
|
-
|
|
2149
|
-
yzyy = None
|
|
2150
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2151
|
-
|
|
2152
|
-
yzyz = None
|
|
2153
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2154
|
-
|
|
2155
|
-
yzz = None
|
|
2156
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2157
|
-
|
|
2158
|
-
yzzw = None
|
|
2159
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2160
|
-
|
|
2161
|
-
yzzx = None
|
|
2162
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2163
|
-
|
|
2164
|
-
yzzy = None
|
|
2165
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2166
|
-
|
|
2167
|
-
yzzz = None
|
|
2168
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2169
|
-
|
|
2170
|
-
z: float = None
|
|
2171
|
-
''' Vector Z axis (3D Vectors only).
|
|
2172
|
-
|
|
2173
|
-
:type: float
|
|
2174
|
-
'''
|
|
2175
|
-
|
|
2176
|
-
zw = None
|
|
2177
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2178
|
-
|
|
2179
|
-
zww = None
|
|
2180
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2181
|
-
|
|
2182
|
-
zwww = None
|
|
2183
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2184
|
-
|
|
2185
|
-
zwwx = None
|
|
2186
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2187
|
-
|
|
2188
|
-
zwwy = None
|
|
2189
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2190
|
-
|
|
2191
|
-
zwwz = None
|
|
2192
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2193
|
-
|
|
2194
|
-
zwx = None
|
|
2195
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2196
|
-
|
|
2197
|
-
zwxw = None
|
|
2198
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2199
|
-
|
|
2200
|
-
zwxx = None
|
|
2201
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2202
|
-
|
|
2203
|
-
zwxy = None
|
|
2204
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2205
|
-
|
|
2206
|
-
zwxz = None
|
|
2207
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2208
|
-
|
|
2209
|
-
zwy = None
|
|
2210
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2211
|
-
|
|
2212
|
-
zwyw = None
|
|
2213
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2214
|
-
|
|
2215
|
-
zwyx = None
|
|
2216
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2217
|
-
|
|
2218
|
-
zwyy = None
|
|
2219
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2220
|
-
|
|
2221
|
-
zwyz = None
|
|
2222
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2223
|
-
|
|
2224
|
-
zwz = None
|
|
2225
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2226
|
-
|
|
2227
|
-
zwzw = None
|
|
2228
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2229
|
-
|
|
2230
|
-
zwzx = None
|
|
2231
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2232
|
-
|
|
2233
|
-
zwzy = None
|
|
2234
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2235
|
-
|
|
2236
|
-
zwzz = None
|
|
2237
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2238
|
-
|
|
2239
|
-
zx = None
|
|
2240
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2241
|
-
|
|
2242
|
-
zxw = None
|
|
2243
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2244
|
-
|
|
2245
|
-
zxww = None
|
|
2246
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2247
|
-
|
|
2248
|
-
zxwx = None
|
|
2249
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2250
|
-
|
|
2251
|
-
zxwy = None
|
|
2252
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2253
|
-
|
|
2254
|
-
zxwz = None
|
|
2255
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2256
|
-
|
|
2257
|
-
zxx = None
|
|
2258
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2259
|
-
|
|
2260
|
-
zxxw = None
|
|
2261
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2262
|
-
|
|
2263
|
-
zxxx = None
|
|
2264
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2265
|
-
|
|
2266
|
-
zxxy = None
|
|
2267
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2268
|
-
|
|
2269
|
-
zxxz = None
|
|
2270
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2271
|
-
|
|
2272
|
-
zxy = None
|
|
2273
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2274
|
-
|
|
2275
|
-
zxyw = None
|
|
2276
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2277
|
-
|
|
2278
|
-
zxyx = None
|
|
2279
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2280
|
-
|
|
2281
|
-
zxyy = None
|
|
2282
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2283
|
-
|
|
2284
|
-
zxyz = None
|
|
2285
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2286
|
-
|
|
2287
|
-
zxz = None
|
|
2288
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2289
|
-
|
|
2290
|
-
zxzw = None
|
|
2291
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2292
|
-
|
|
2293
|
-
zxzx = None
|
|
2294
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2295
|
-
|
|
2296
|
-
zxzy = None
|
|
2297
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2298
|
-
|
|
2299
|
-
zxzz = None
|
|
2300
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2301
|
-
|
|
2302
|
-
zy = None
|
|
2303
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2304
|
-
|
|
2305
|
-
zyw = None
|
|
2306
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2307
|
-
|
|
2308
|
-
zyww = None
|
|
2309
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2310
|
-
|
|
2311
|
-
zywx = None
|
|
2312
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2313
|
-
|
|
2314
|
-
zywy = None
|
|
2315
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2316
|
-
|
|
2317
|
-
zywz = None
|
|
2318
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2319
|
-
|
|
2320
|
-
zyx = None
|
|
2321
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2322
|
-
|
|
2323
|
-
zyxw = None
|
|
2324
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2325
|
-
|
|
2326
|
-
zyxx = None
|
|
2327
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2328
|
-
|
|
2329
|
-
zyxy = None
|
|
2330
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2331
|
-
|
|
2332
|
-
zyxz = None
|
|
2333
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2334
|
-
|
|
2335
|
-
zyy = None
|
|
2336
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2337
|
-
|
|
2338
|
-
zyyw = None
|
|
2339
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2340
|
-
|
|
2341
|
-
zyyx = None
|
|
2342
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2343
|
-
|
|
2344
|
-
zyyy = None
|
|
2345
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2346
|
-
|
|
2347
|
-
zyyz = None
|
|
2348
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2349
|
-
|
|
2350
|
-
zyz = None
|
|
2351
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2352
|
-
|
|
2353
|
-
zyzw = None
|
|
2354
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2355
|
-
|
|
2356
|
-
zyzx = None
|
|
2357
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2358
|
-
|
|
2359
|
-
zyzy = None
|
|
2360
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2361
|
-
|
|
2362
|
-
zyzz = None
|
|
2363
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2364
|
-
|
|
2365
|
-
zz = None
|
|
2366
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2367
|
-
|
|
2368
|
-
zzw = None
|
|
2369
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2370
|
-
|
|
2371
|
-
zzww = None
|
|
2372
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2373
|
-
|
|
2374
|
-
zzwx = None
|
|
2375
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2376
|
-
|
|
2377
|
-
zzwy = None
|
|
2378
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2379
|
-
|
|
2380
|
-
zzwz = None
|
|
2381
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2382
|
-
|
|
2383
|
-
zzx = None
|
|
2384
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2385
|
-
|
|
2386
|
-
zzxw = None
|
|
2387
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2388
|
-
|
|
2389
|
-
zzxx = None
|
|
2390
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2391
|
-
|
|
2392
|
-
zzxy = None
|
|
2393
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2394
|
-
|
|
2395
|
-
zzxz = None
|
|
2396
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2397
|
-
|
|
2398
|
-
zzy = None
|
|
2399
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2400
|
-
|
|
2401
|
-
zzyw = None
|
|
2402
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2403
|
-
|
|
2404
|
-
zzyx = None
|
|
2405
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2406
|
-
|
|
2407
|
-
zzyy = None
|
|
2408
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2409
|
-
|
|
2410
|
-
zzyz = None
|
|
2411
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2412
|
-
|
|
2413
|
-
zzz = None
|
|
2414
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2415
|
-
|
|
2416
|
-
zzzw = None
|
|
2417
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2418
|
-
|
|
2419
|
-
zzzx = None
|
|
2420
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2421
|
-
|
|
2422
|
-
zzzy = None
|
|
2423
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2424
|
-
|
|
2425
|
-
zzzz = None
|
|
2426
|
-
''' Undocumented, consider `contributing <https://developer.blender.org/>`__.'''
|
|
2427
|
-
|
|
2428
|
-
@classmethod
|
|
2429
|
-
def Fill(cls, size: int, fill: float = 0.0):
|
|
2430
|
-
''' Create a vector of length size with all values set to fill.
|
|
2431
|
-
|
|
2432
|
-
:param size: The length of the vector to be created.
|
|
2433
|
-
:type size: int
|
|
2434
|
-
:param fill: The value used to fill the vector.
|
|
2435
|
-
:type fill: float
|
|
2436
|
-
'''
|
|
2437
|
-
pass
|
|
2438
|
-
|
|
2439
|
-
@classmethod
|
|
2440
|
-
def Linspace(cls, start: int, stop: int, size: int):
|
|
2441
|
-
''' Create a vector of the specified size which is filled with linearly spaced values between start and stop values.
|
|
2442
|
-
|
|
2443
|
-
:param start: The start of the range used to fill the vector.
|
|
2444
|
-
:type start: int
|
|
2445
|
-
:param stop: The end of the range used to fill the vector.
|
|
2446
|
-
:type stop: int
|
|
2447
|
-
:param size: The size of the vector to be created.
|
|
2448
|
-
:type size: int
|
|
2449
|
-
'''
|
|
2450
|
-
pass
|
|
2451
|
-
|
|
2452
|
-
@classmethod
|
|
2453
|
-
def Range(cls, start: int, stop: int, step: int = 1):
|
|
2454
|
-
''' Create a filled with a range of values.
|
|
2455
|
-
|
|
2456
|
-
:param start: The start of the range used to fill the vector.
|
|
2457
|
-
:type start: int
|
|
2458
|
-
:param stop: The end of the range used to fill the vector.
|
|
2459
|
-
:type stop: int
|
|
2460
|
-
:param step: The step between successive values in the vector.
|
|
2461
|
-
:type step: int
|
|
2462
|
-
'''
|
|
2463
|
-
pass
|
|
2464
|
-
|
|
2465
|
-
@classmethod
|
|
2466
|
-
def Repeat(cls, vector, size: int):
|
|
2467
|
-
''' Create a vector by repeating the values in vector until the required size is reached.
|
|
2468
|
-
|
|
2469
|
-
:param tuple: The vector to draw values from.
|
|
2470
|
-
:type tuple: typing.Union[typing.Sequence[float], 'Vector']
|
|
2471
|
-
:param size: The size of the vector to be created.
|
|
2472
|
-
:type size: int
|
|
2473
|
-
'''
|
|
2474
|
-
pass
|
|
2475
|
-
|
|
2476
|
-
@staticmethod
|
|
2477
|
-
def angle(other: typing.Union[typing.Sequence[float], 'Vector'],
|
|
2478
|
-
fallback: typing.Any = None) -> float:
|
|
2479
|
-
''' Return the angle between two vectors.
|
|
2480
|
-
|
|
2481
|
-
:param other: another vector to compare the angle with
|
|
2482
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2483
|
-
:param fallback: return this when the angle can't be calculated (zero length vector), (instead of raising a :exc:`ValueError`).
|
|
2484
|
-
:type fallback: typing.Any
|
|
2485
|
-
:rtype: float
|
|
2486
|
-
:return: angle in radians or fallback when given
|
|
2487
|
-
'''
|
|
2488
|
-
pass
|
|
2489
|
-
|
|
2490
|
-
@staticmethod
|
|
2491
|
-
def angle_signed(other: typing.Union[typing.Sequence[float], 'Vector'],
|
|
2492
|
-
fallback: typing.Any) -> float:
|
|
2493
|
-
''' Return the signed angle between two 2D vectors (clockwise is positive).
|
|
2494
|
-
|
|
2495
|
-
:param other: another vector to compare the angle with
|
|
2496
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2497
|
-
:param fallback: return this when the angle can't be calculated (zero length vector), (instead of raising a :exc:`ValueError`).
|
|
2498
|
-
:type fallback: typing.Any
|
|
2499
|
-
:rtype: float
|
|
2500
|
-
:return: angle in radians or fallback when given
|
|
2501
|
-
'''
|
|
2502
|
-
pass
|
|
2503
|
-
|
|
2504
|
-
@staticmethod
|
|
2505
|
-
def copy() -> 'Vector':
|
|
2506
|
-
''' Returns a copy of this vector.
|
|
2507
|
-
|
|
2508
|
-
:rtype: 'Vector'
|
|
2509
|
-
:return: A copy of the vector.
|
|
2510
|
-
'''
|
|
2511
|
-
pass
|
|
2512
|
-
|
|
2513
|
-
def cross(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2514
|
-
) -> 'Vector':
|
|
2515
|
-
''' Return the cross product of this vector and another.
|
|
2516
|
-
|
|
2517
|
-
:param other: The other vector to perform the cross product with.
|
|
2518
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2519
|
-
:rtype: 'Vector'
|
|
2520
|
-
:return: The cross product.
|
|
2521
|
-
'''
|
|
2522
|
-
pass
|
|
2523
|
-
|
|
2524
|
-
def dot(self,
|
|
2525
|
-
other: typing.Union[typing.Sequence[float], 'Vector']) -> float:
|
|
2526
|
-
''' Return the dot product of this vector and another.
|
|
2527
|
-
|
|
2528
|
-
:param other: The other vector to perform the dot product with.
|
|
2529
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2530
|
-
:rtype: float
|
|
2531
|
-
:return: The dot product.
|
|
2532
|
-
'''
|
|
2533
|
-
pass
|
|
2534
|
-
|
|
2535
|
-
@staticmethod
|
|
2536
|
-
def freeze() -> 'Vector':
|
|
2537
|
-
''' Make this object immutable. After this the object can be hashed, used in dictionaries & sets.
|
|
2538
|
-
|
|
2539
|
-
:rtype: 'Vector'
|
|
2540
|
-
:return: An instance of this object.
|
|
2541
|
-
'''
|
|
2542
|
-
pass
|
|
2543
|
-
|
|
2544
|
-
@staticmethod
|
|
2545
|
-
def lerp(other: typing.Union[typing.Sequence[float], 'Vector'],
|
|
2546
|
-
factor: float) -> 'Vector':
|
|
2547
|
-
''' Returns the interpolation of two vectors.
|
|
2548
|
-
|
|
2549
|
-
:param other: value to interpolate with.
|
|
2550
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2551
|
-
:param factor: The interpolation value in [0.0, 1.0].
|
|
2552
|
-
:type factor: float
|
|
2553
|
-
:rtype: 'Vector'
|
|
2554
|
-
:return: The interpolated vector.
|
|
2555
|
-
'''
|
|
2556
|
-
pass
|
|
2557
|
-
|
|
2558
|
-
def negate(self):
|
|
2559
|
-
''' Set all values to their negative.
|
|
2560
|
-
|
|
2561
|
-
'''
|
|
2562
|
-
pass
|
|
2563
|
-
|
|
2564
|
-
def normalize(self):
|
|
2565
|
-
''' Normalize the vector, making the length of the vector always 1.0.
|
|
2566
|
-
|
|
2567
|
-
'''
|
|
2568
|
-
pass
|
|
2569
|
-
|
|
2570
|
-
def normalized(self) -> 'Vector':
|
|
2571
|
-
''' Return a new, normalized vector.
|
|
2572
|
-
|
|
2573
|
-
:rtype: 'Vector'
|
|
2574
|
-
:return: a normalized copy of the vector
|
|
2575
|
-
'''
|
|
2576
|
-
pass
|
|
2577
|
-
|
|
2578
|
-
def orthogonal(self) -> 'Vector':
|
|
2579
|
-
''' Return a perpendicular vector.
|
|
2580
|
-
|
|
2581
|
-
:rtype: 'Vector'
|
|
2582
|
-
:return: a new vector 90 degrees from this vector.
|
|
2583
|
-
'''
|
|
2584
|
-
pass
|
|
2585
|
-
|
|
2586
|
-
@staticmethod
|
|
2587
|
-
def project(
|
|
2588
|
-
other: typing.Union[typing.Sequence[float], 'Vector']) -> 'Vector':
|
|
2589
|
-
''' Return the projection of this vector onto the *other*.
|
|
2590
|
-
|
|
2591
|
-
:param other: second vector.
|
|
2592
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2593
|
-
:rtype: 'Vector'
|
|
2594
|
-
:return: the parallel projection vector
|
|
2595
|
-
'''
|
|
2596
|
-
pass
|
|
2597
|
-
|
|
2598
|
-
def reflect(self, mirror: typing.Union[typing.Sequence[float], 'Vector']
|
|
2599
|
-
) -> 'Vector':
|
|
2600
|
-
''' Return the reflection vector from the *mirror* argument.
|
|
2601
|
-
|
|
2602
|
-
:param mirror: This vector could be a normal from the reflecting surface.
|
|
2603
|
-
:type mirror: typing.Union[typing.Sequence[float], 'Vector']
|
|
2604
|
-
:rtype: 'Vector'
|
|
2605
|
-
:return: The reflected vector matching the size of this vector.
|
|
2606
|
-
'''
|
|
2607
|
-
pass
|
|
2608
|
-
|
|
2609
|
-
def resize(self, size=3):
|
|
2610
|
-
''' Resize the vector to have size number of elements.
|
|
2611
|
-
|
|
2612
|
-
'''
|
|
2613
|
-
pass
|
|
2614
|
-
|
|
2615
|
-
def resize_2d(self):
|
|
2616
|
-
''' Resize the vector to 2D (x, y).
|
|
2617
|
-
|
|
2618
|
-
'''
|
|
2619
|
-
pass
|
|
2620
|
-
|
|
2621
|
-
def resize_3d(self):
|
|
2622
|
-
''' Resize the vector to 3D (x, y, z).
|
|
2623
|
-
|
|
2624
|
-
'''
|
|
2625
|
-
pass
|
|
2626
|
-
|
|
2627
|
-
def resize_4d(self):
|
|
2628
|
-
''' Resize the vector to 4D (x, y, z, w).
|
|
2629
|
-
|
|
2630
|
-
'''
|
|
2631
|
-
pass
|
|
2632
|
-
|
|
2633
|
-
def resized(self, size=3) -> 'Vector':
|
|
2634
|
-
''' Return a resized copy of the vector with size number of elements.
|
|
2635
|
-
|
|
2636
|
-
:rtype: 'Vector'
|
|
2637
|
-
:return: a new vector
|
|
2638
|
-
'''
|
|
2639
|
-
pass
|
|
2640
|
-
|
|
2641
|
-
@staticmethod
|
|
2642
|
-
def rotate(other: typing.Union[typing.Sequence[float], 'Euler', typing.
|
|
2643
|
-
Sequence[float], 'Quaternion', typing.
|
|
2644
|
-
Sequence[float], 'Matrix']):
|
|
2645
|
-
''' Rotate the vector by a rotation value.
|
|
2646
|
-
|
|
2647
|
-
:param other: rotation component of mathutils value
|
|
2648
|
-
:type other: typing.Union[typing.Sequence[float], 'Euler', typing.Sequence[float], 'Quaternion', typing.Sequence[float], 'Matrix']
|
|
2649
|
-
'''
|
|
2650
|
-
pass
|
|
2651
|
-
|
|
2652
|
-
@staticmethod
|
|
2653
|
-
def rotation_difference(
|
|
2654
|
-
other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2655
|
-
) -> 'Quaternion':
|
|
2656
|
-
''' Returns a quaternion representing the rotational difference between this vector and another.
|
|
2657
|
-
|
|
2658
|
-
:param other: second vector.
|
|
2659
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2660
|
-
:rtype: 'Quaternion'
|
|
2661
|
-
:return: the rotational difference between the two vectors.
|
|
2662
|
-
'''
|
|
2663
|
-
pass
|
|
2664
|
-
|
|
2665
|
-
@staticmethod
|
|
2666
|
-
def slerp(other: typing.Union[typing.Sequence[float], 'Vector'],
|
|
2667
|
-
factor: float,
|
|
2668
|
-
fallback: typing.Any = None) -> 'Vector':
|
|
2669
|
-
''' Returns the interpolation of two non-zero vectors (spherical coordinates).
|
|
2670
|
-
|
|
2671
|
-
:param other: value to interpolate with.
|
|
2672
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2673
|
-
:param factor: The interpolation value typically in [0.0, 1.0].
|
|
2674
|
-
:type factor: float
|
|
2675
|
-
:param fallback: return this when the vector can't be calculated (zero length vector or direct opposites), (instead of raising a :exc:`ValueError`).
|
|
2676
|
-
:type fallback: typing.Any
|
|
2677
|
-
:rtype: 'Vector'
|
|
2678
|
-
:return: The interpolated vector.
|
|
2679
|
-
'''
|
|
2680
|
-
pass
|
|
2681
|
-
|
|
2682
|
-
def to_2d(self) -> 'Vector':
|
|
2683
|
-
''' Return a 2d copy of the vector.
|
|
2684
|
-
|
|
2685
|
-
:rtype: 'Vector'
|
|
2686
|
-
:return: a new vector
|
|
2687
|
-
'''
|
|
2688
|
-
pass
|
|
2689
|
-
|
|
2690
|
-
def to_3d(self) -> 'Vector':
|
|
2691
|
-
''' Return a 3d copy of the vector.
|
|
2692
|
-
|
|
2693
|
-
:rtype: 'Vector'
|
|
2694
|
-
:return: a new vector
|
|
2695
|
-
'''
|
|
2696
|
-
pass
|
|
2697
|
-
|
|
2698
|
-
def to_4d(self) -> 'Vector':
|
|
2699
|
-
''' Return a 4d copy of the vector.
|
|
2700
|
-
|
|
2701
|
-
:rtype: 'Vector'
|
|
2702
|
-
:return: a new vector
|
|
2703
|
-
'''
|
|
2704
|
-
pass
|
|
2705
|
-
|
|
2706
|
-
def to_track_quat(self, track: str, up: str) -> 'Quaternion':
|
|
2707
|
-
''' Return a quaternion rotation from the vector and the track and up axis.
|
|
2708
|
-
|
|
2709
|
-
:param track: Track axis in ['X', 'Y', 'Z', '-X', '-Y', '-Z'].
|
|
2710
|
-
:type track: str
|
|
2711
|
-
:param up: Up axis in ['X', 'Y', 'Z'].
|
|
2712
|
-
:type up: str
|
|
2713
|
-
:rtype: 'Quaternion'
|
|
2714
|
-
:return: rotation from the vector and the track and up axis.
|
|
2715
|
-
'''
|
|
2716
|
-
pass
|
|
2717
|
-
|
|
2718
|
-
def to_tuple(self, precision: int = -1) -> typing.Tuple:
|
|
2719
|
-
''' Return this vector as a tuple with.
|
|
2720
|
-
|
|
2721
|
-
:param precision: The number to round the value to in [-1, 21].
|
|
2722
|
-
:type precision: int
|
|
2723
|
-
:rtype: typing.Tuple
|
|
2724
|
-
:return: the values of the vector rounded by *precision*
|
|
2725
|
-
'''
|
|
2726
|
-
pass
|
|
2727
|
-
|
|
2728
|
-
def zero(self):
|
|
2729
|
-
''' Set all values to zero.
|
|
2730
|
-
|
|
2731
|
-
'''
|
|
2732
|
-
pass
|
|
2733
|
-
|
|
2734
|
-
def __init__(self, seq=(0.0, 0.0, 0.0)) -> typing.Any:
|
|
2735
|
-
'''
|
|
2736
|
-
|
|
2737
|
-
:rtype: typing.Any
|
|
2738
|
-
'''
|
|
2739
|
-
pass
|
|
2740
|
-
|
|
2741
|
-
def __len__(self) -> int:
|
|
2742
|
-
'''
|
|
2743
|
-
|
|
2744
|
-
:rtype: int
|
|
2745
|
-
'''
|
|
2746
|
-
pass
|
|
2747
|
-
|
|
2748
|
-
def __getitem__(self, key: int) -> float:
|
|
2749
|
-
'''
|
|
2750
|
-
|
|
2751
|
-
:param key:
|
|
2752
|
-
:type key: int
|
|
2753
|
-
:rtype: float
|
|
2754
|
-
'''
|
|
2755
|
-
pass
|
|
2756
|
-
|
|
2757
|
-
def __setitem__(self, key: int, value: float) -> float:
|
|
2758
|
-
'''
|
|
2759
|
-
|
|
2760
|
-
:param key:
|
|
2761
|
-
:type key: int
|
|
2762
|
-
:param value:
|
|
2763
|
-
:type value: float
|
|
2764
|
-
:rtype: float
|
|
2765
|
-
'''
|
|
2766
|
-
pass
|
|
2767
|
-
|
|
2768
|
-
def __neg__(self) -> 'Vector':
|
|
2769
|
-
'''
|
|
2770
|
-
|
|
2771
|
-
:rtype: 'Vector'
|
|
2772
|
-
'''
|
|
2773
|
-
pass
|
|
2774
|
-
|
|
2775
|
-
def __add__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2776
|
-
) -> 'Vector':
|
|
2777
|
-
'''
|
|
2778
|
-
|
|
2779
|
-
:param other:
|
|
2780
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2781
|
-
:rtype: 'Vector'
|
|
2782
|
-
'''
|
|
2783
|
-
pass
|
|
2784
|
-
|
|
2785
|
-
def __sub__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2786
|
-
) -> 'Vector':
|
|
2787
|
-
'''
|
|
2788
|
-
|
|
2789
|
-
:param other:
|
|
2790
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2791
|
-
:rtype: 'Vector'
|
|
2792
|
-
'''
|
|
2793
|
-
pass
|
|
2794
|
-
|
|
2795
|
-
def __mul__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2796
|
-
'''
|
|
2797
|
-
|
|
2798
|
-
:param other:
|
|
2799
|
-
:type other: typing.Union[int, float]
|
|
2800
|
-
:rtype: 'Vector'
|
|
2801
|
-
'''
|
|
2802
|
-
pass
|
|
2803
|
-
|
|
2804
|
-
def __truediv__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2805
|
-
'''
|
|
2806
|
-
|
|
2807
|
-
:param other:
|
|
2808
|
-
:type other: typing.Union[int, float]
|
|
2809
|
-
:rtype: 'Vector'
|
|
2810
|
-
'''
|
|
2811
|
-
pass
|
|
2812
|
-
|
|
2813
|
-
def __matmul__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2814
|
-
) -> 'Vector':
|
|
2815
|
-
'''
|
|
2816
|
-
|
|
2817
|
-
:param other:
|
|
2818
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2819
|
-
:rtype: 'Vector'
|
|
2820
|
-
'''
|
|
2821
|
-
pass
|
|
2822
|
-
|
|
2823
|
-
def __radd__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2824
|
-
) -> 'Vector':
|
|
2825
|
-
'''
|
|
2826
|
-
|
|
2827
|
-
:param other:
|
|
2828
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2829
|
-
:rtype: 'Vector'
|
|
2830
|
-
'''
|
|
2831
|
-
pass
|
|
2832
|
-
|
|
2833
|
-
def __rsub__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2834
|
-
) -> 'Vector':
|
|
2835
|
-
'''
|
|
2836
|
-
|
|
2837
|
-
:param other:
|
|
2838
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2839
|
-
:rtype: 'Vector'
|
|
2840
|
-
'''
|
|
2841
|
-
pass
|
|
2842
|
-
|
|
2843
|
-
def __rmul__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2844
|
-
'''
|
|
2845
|
-
|
|
2846
|
-
:param other:
|
|
2847
|
-
:type other: typing.Union[int, float]
|
|
2848
|
-
:rtype: 'Vector'
|
|
2849
|
-
'''
|
|
2850
|
-
pass
|
|
2851
|
-
|
|
2852
|
-
def __rtruediv__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2853
|
-
'''
|
|
2854
|
-
|
|
2855
|
-
:param other:
|
|
2856
|
-
:type other: typing.Union[int, float]
|
|
2857
|
-
:rtype: 'Vector'
|
|
2858
|
-
'''
|
|
2859
|
-
pass
|
|
2860
|
-
|
|
2861
|
-
def __rmatmul__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2862
|
-
) -> 'Vector':
|
|
2863
|
-
'''
|
|
2864
|
-
|
|
2865
|
-
:param other:
|
|
2866
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2867
|
-
:rtype: 'Vector'
|
|
2868
|
-
'''
|
|
2869
|
-
pass
|
|
2870
|
-
|
|
2871
|
-
def __iadd__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2872
|
-
) -> 'Vector':
|
|
2873
|
-
'''
|
|
2874
|
-
|
|
2875
|
-
:param other:
|
|
2876
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2877
|
-
:rtype: 'Vector'
|
|
2878
|
-
'''
|
|
2879
|
-
pass
|
|
2880
|
-
|
|
2881
|
-
def __isub__(self, other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2882
|
-
) -> 'Vector':
|
|
2883
|
-
'''
|
|
2884
|
-
|
|
2885
|
-
:param other:
|
|
2886
|
-
:type other: typing.Union[typing.Sequence[float], 'Vector']
|
|
2887
|
-
:rtype: 'Vector'
|
|
2888
|
-
'''
|
|
2889
|
-
pass
|
|
2890
|
-
|
|
2891
|
-
def __imul__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2892
|
-
'''
|
|
2893
|
-
|
|
2894
|
-
:param other:
|
|
2895
|
-
:type other: typing.Union[int, float]
|
|
2896
|
-
:rtype: 'Vector'
|
|
2897
|
-
'''
|
|
2898
|
-
pass
|
|
2899
|
-
|
|
2900
|
-
def __itruediv__(self, other: typing.Union[int, float]) -> 'Vector':
|
|
2901
|
-
'''
|
|
2902
|
-
|
|
2903
|
-
:param other:
|
|
2904
|
-
:type other: typing.Union[int, float]
|
|
2905
|
-
:rtype: 'Vector'
|
|
2906
|
-
'''
|
|
2907
|
-
pass
|
|
2908
|
-
|
|
2909
|
-
def __imatmul__(self, other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2910
|
-
) -> 'Vector':
|
|
2911
|
-
'''
|
|
2912
|
-
|
|
2913
|
-
:param other:
|
|
2914
|
-
:type other: typing.Union[typing.Sequence[float], 'Matrix']
|
|
2915
|
-
:rtype: 'Vector'
|
|
2916
|
-
'''
|
|
2917
|
-
pass
|