fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
mathutils/__init__.pyi
CHANGED
|
@@ -40,143 +40,126 @@ class Color:
|
|
|
40
40
|
"""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."""
|
|
41
41
|
|
|
42
42
|
b: float
|
|
43
|
-
""" Blue color channel.
|
|
44
|
-
|
|
45
|
-
:type: float
|
|
46
|
-
"""
|
|
43
|
+
""" Blue color channel."""
|
|
47
44
|
|
|
48
45
|
g: float
|
|
49
|
-
""" Green color channel.
|
|
50
|
-
|
|
51
|
-
:type: float
|
|
52
|
-
"""
|
|
46
|
+
""" Green color channel."""
|
|
53
47
|
|
|
54
48
|
h: float
|
|
55
|
-
""" HSV Hue component in [0, 1].
|
|
49
|
+
""" HSV Hue component in [0, 1]."""
|
|
56
50
|
|
|
57
|
-
:
|
|
58
|
-
"""
|
|
59
|
-
|
|
60
|
-
hsv: Vector | collections.abc.Sequence[float]
|
|
61
|
-
""" HSV Values in [0, 1].
|
|
62
|
-
|
|
63
|
-
:type: Vector | collections.abc.Sequence[float]
|
|
64
|
-
"""
|
|
51
|
+
hsv: tuple[float, float, float]
|
|
52
|
+
""" HSV Values in [0, 1]."""
|
|
65
53
|
|
|
66
54
|
is_frozen: bool
|
|
67
|
-
""" True when this object has been frozen (read-only).
|
|
68
|
-
|
|
69
|
-
:type: bool
|
|
70
|
-
"""
|
|
55
|
+
""" True when this object has been frozen (read-only)."""
|
|
71
56
|
|
|
72
57
|
is_valid: bool
|
|
73
|
-
""" True when the owner of this data is valid.
|
|
74
|
-
|
|
75
|
-
:type: bool
|
|
76
|
-
"""
|
|
58
|
+
""" True when the owner of this data is valid."""
|
|
77
59
|
|
|
78
60
|
is_wrapped: bool
|
|
79
|
-
""" True when this object wraps external data (read-only).
|
|
80
|
-
|
|
81
|
-
:type: bool
|
|
82
|
-
"""
|
|
61
|
+
""" True when this object wraps external data (read-only)."""
|
|
83
62
|
|
|
84
63
|
owner: typing.Any
|
|
85
64
|
""" The item this is wrapping or None (read-only)."""
|
|
86
65
|
|
|
87
66
|
r: float
|
|
88
|
-
""" Red color channel.
|
|
89
|
-
|
|
90
|
-
:type: float
|
|
91
|
-
"""
|
|
67
|
+
""" Red color channel."""
|
|
92
68
|
|
|
93
69
|
s: float
|
|
94
|
-
""" HSV Saturation component in [0, 1].
|
|
95
|
-
|
|
96
|
-
:type: float
|
|
97
|
-
"""
|
|
70
|
+
""" HSV Saturation component in [0, 1]."""
|
|
98
71
|
|
|
99
72
|
v: float
|
|
100
|
-
""" HSV Value component in [0, 1].
|
|
101
|
-
|
|
102
|
-
:type: float
|
|
103
|
-
"""
|
|
73
|
+
""" HSV Value component in [0, 1]."""
|
|
104
74
|
|
|
105
75
|
def copy(self) -> typing_extensions.Self:
|
|
106
76
|
"""Returns a copy of this color.
|
|
107
77
|
|
|
108
78
|
:return: A copy of the color.
|
|
109
|
-
:rtype: typing_extensions.Self
|
|
110
79
|
"""
|
|
111
80
|
|
|
112
81
|
def freeze(self) -> typing_extensions.Self:
|
|
113
82
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
114
83
|
|
|
115
84
|
:return: An instance of this object.
|
|
116
|
-
:rtype: typing_extensions.Self
|
|
117
85
|
"""
|
|
118
86
|
|
|
119
87
|
def from_aces_to_scene_linear(self) -> typing_extensions.Self:
|
|
120
88
|
"""Convert from ACES2065-1 linear to scene linear color space.
|
|
121
89
|
|
|
122
90
|
:return: A color in scene linear color space.
|
|
123
|
-
|
|
91
|
+
"""
|
|
92
|
+
|
|
93
|
+
def from_acescg_to_scene_linear(self) -> typing_extensions.Self:
|
|
94
|
+
"""Convert from ACEScg linear to scene linear color space.
|
|
95
|
+
|
|
96
|
+
:return: A color in scene linear color space.
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
def from_rec2020_linear_to_scene_linear(self) -> typing_extensions.Self:
|
|
100
|
+
"""Convert from Rec.2020 linear color space to scene linear color space.
|
|
101
|
+
|
|
102
|
+
:return: A color in scene linear color space.
|
|
124
103
|
"""
|
|
125
104
|
|
|
126
105
|
def from_rec709_linear_to_scene_linear(self) -> typing_extensions.Self:
|
|
127
106
|
"""Convert from Rec.709 linear color space to scene linear color space.
|
|
128
107
|
|
|
129
108
|
:return: A color in scene linear color space.
|
|
130
|
-
:rtype: typing_extensions.Self
|
|
131
109
|
"""
|
|
132
110
|
|
|
133
111
|
def from_scene_linear_to_aces(self) -> typing_extensions.Self:
|
|
134
112
|
"""Convert from scene linear to ACES2065-1 linear color space.
|
|
135
113
|
|
|
136
114
|
:return: A color in ACES2065-1 linear color space.
|
|
137
|
-
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
def from_scene_linear_to_acescg(self) -> typing_extensions.Self:
|
|
118
|
+
"""Convert from scene linear to ACEScg linear color space.
|
|
119
|
+
|
|
120
|
+
:return: A color in ACEScg linear color space.
|
|
121
|
+
"""
|
|
122
|
+
|
|
123
|
+
def from_scene_linear_to_rec2020_linear(self) -> typing_extensions.Self:
|
|
124
|
+
"""Convert from scene linear to Rec.2020 linear color space.
|
|
125
|
+
|
|
126
|
+
:return: A color in Rec.2020 linear color space.
|
|
138
127
|
"""
|
|
139
128
|
|
|
140
129
|
def from_scene_linear_to_rec709_linear(self) -> typing_extensions.Self:
|
|
141
130
|
"""Convert from scene linear to Rec.709 linear color space.
|
|
142
131
|
|
|
143
132
|
:return: A color in Rec.709 linear color space.
|
|
144
|
-
:rtype: typing_extensions.Self
|
|
145
133
|
"""
|
|
146
134
|
|
|
147
135
|
def from_scene_linear_to_srgb(self) -> typing_extensions.Self:
|
|
148
136
|
"""Convert from scene linear to sRGB color space.
|
|
149
137
|
|
|
150
138
|
:return: A color in sRGB color space.
|
|
151
|
-
:rtype: typing_extensions.Self
|
|
152
139
|
"""
|
|
153
140
|
|
|
154
141
|
def from_scene_linear_to_xyz_d65(self) -> typing_extensions.Self:
|
|
155
142
|
"""Convert from scene linear to CIE XYZ (Illuminant D65) color space.
|
|
156
143
|
|
|
157
144
|
:return: A color in XYZ color space.
|
|
158
|
-
:rtype: typing_extensions.Self
|
|
159
145
|
"""
|
|
160
146
|
|
|
161
147
|
def from_srgb_to_scene_linear(self) -> typing_extensions.Self:
|
|
162
148
|
"""Convert from sRGB to scene linear color space.
|
|
163
149
|
|
|
164
150
|
:return: A color in scene linear color space.
|
|
165
|
-
:rtype: typing_extensions.Self
|
|
166
151
|
"""
|
|
167
152
|
|
|
168
153
|
def from_xyz_d65_to_scene_linear(self) -> typing_extensions.Self:
|
|
169
154
|
"""Convert from CIE XYZ (Illuminant D65) to scene linear color space.
|
|
170
155
|
|
|
171
156
|
:return: A color in scene linear color space.
|
|
172
|
-
:rtype: typing_extensions.Self
|
|
173
157
|
"""
|
|
174
158
|
|
|
175
159
|
def __init__(self, rgb: collections.abc.Sequence[float] = (0.0, 0.0, 0.0)) -> None:
|
|
176
160
|
"""
|
|
177
161
|
|
|
178
162
|
:param rgb:
|
|
179
|
-
:type rgb: collections.abc.Sequence[float]
|
|
180
163
|
"""
|
|
181
164
|
|
|
182
165
|
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
@@ -185,7 +168,6 @@ class Color:
|
|
|
185
168
|
:param instance:
|
|
186
169
|
:param owner:
|
|
187
170
|
:return:
|
|
188
|
-
:rtype: typing_extensions.Self
|
|
189
171
|
"""
|
|
190
172
|
|
|
191
173
|
def __set__(
|
|
@@ -195,7 +177,6 @@ class Color:
|
|
|
195
177
|
|
|
196
178
|
:param instance:
|
|
197
179
|
:param value:
|
|
198
|
-
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
199
180
|
"""
|
|
200
181
|
|
|
201
182
|
def __add__(
|
|
@@ -204,9 +185,7 @@ class Color:
|
|
|
204
185
|
"""
|
|
205
186
|
|
|
206
187
|
:param other:
|
|
207
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
208
188
|
:return:
|
|
209
|
-
:rtype: typing_extensions.Self
|
|
210
189
|
"""
|
|
211
190
|
|
|
212
191
|
def __sub__(
|
|
@@ -215,27 +194,21 @@ class Color:
|
|
|
215
194
|
"""
|
|
216
195
|
|
|
217
196
|
:param other:
|
|
218
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
219
197
|
:return:
|
|
220
|
-
:rtype: typing_extensions.Self
|
|
221
198
|
"""
|
|
222
199
|
|
|
223
200
|
def __mul__(self, other: float) -> typing_extensions.Self:
|
|
224
201
|
"""
|
|
225
202
|
|
|
226
203
|
:param other:
|
|
227
|
-
:type other: float
|
|
228
204
|
:return:
|
|
229
|
-
:rtype: typing_extensions.Self
|
|
230
205
|
"""
|
|
231
206
|
|
|
232
207
|
def __truediv__(self, other: float) -> typing_extensions.Self:
|
|
233
208
|
"""
|
|
234
209
|
|
|
235
210
|
:param other:
|
|
236
|
-
:type other: float
|
|
237
211
|
:return:
|
|
238
|
-
:rtype: typing_extensions.Self
|
|
239
212
|
"""
|
|
240
213
|
|
|
241
214
|
def __radd__(
|
|
@@ -244,9 +217,7 @@ class Color:
|
|
|
244
217
|
"""
|
|
245
218
|
|
|
246
219
|
:param other:
|
|
247
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
248
220
|
:return:
|
|
249
|
-
:rtype: typing_extensions.Self
|
|
250
221
|
"""
|
|
251
222
|
|
|
252
223
|
def __rsub__(
|
|
@@ -255,27 +226,21 @@ class Color:
|
|
|
255
226
|
"""
|
|
256
227
|
|
|
257
228
|
:param other:
|
|
258
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
259
229
|
:return:
|
|
260
|
-
:rtype: typing_extensions.Self
|
|
261
230
|
"""
|
|
262
231
|
|
|
263
232
|
def __rmul__(self, other: float) -> typing_extensions.Self:
|
|
264
233
|
"""
|
|
265
234
|
|
|
266
235
|
:param other:
|
|
267
|
-
:type other: float
|
|
268
236
|
:return:
|
|
269
|
-
:rtype: typing_extensions.Self
|
|
270
237
|
"""
|
|
271
238
|
|
|
272
239
|
def __rtruediv__(self, other: float) -> typing_extensions.Self:
|
|
273
240
|
"""
|
|
274
241
|
|
|
275
242
|
:param other:
|
|
276
|
-
:type other: float
|
|
277
243
|
:return:
|
|
278
|
-
:rtype: typing_extensions.Self
|
|
279
244
|
"""
|
|
280
245
|
|
|
281
246
|
def __iadd__(
|
|
@@ -284,9 +249,7 @@ class Color:
|
|
|
284
249
|
"""
|
|
285
250
|
|
|
286
251
|
:param other:
|
|
287
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
288
252
|
:return:
|
|
289
|
-
:rtype: typing_extensions.Self
|
|
290
253
|
"""
|
|
291
254
|
|
|
292
255
|
def __isub__(
|
|
@@ -295,27 +258,21 @@ class Color:
|
|
|
295
258
|
"""
|
|
296
259
|
|
|
297
260
|
:param other:
|
|
298
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
299
261
|
:return:
|
|
300
|
-
:rtype: typing_extensions.Self
|
|
301
262
|
"""
|
|
302
263
|
|
|
303
264
|
def __imul__(self, other: float) -> typing_extensions.Self:
|
|
304
265
|
"""
|
|
305
266
|
|
|
306
267
|
:param other:
|
|
307
|
-
:type other: float
|
|
308
268
|
:return:
|
|
309
|
-
:rtype: typing_extensions.Self
|
|
310
269
|
"""
|
|
311
270
|
|
|
312
271
|
def __itruediv__(self, other: float) -> typing_extensions.Self:
|
|
313
272
|
"""
|
|
314
273
|
|
|
315
274
|
:param other:
|
|
316
|
-
:type other: float
|
|
317
275
|
:return:
|
|
318
|
-
:rtype: typing_extensions.Self
|
|
319
276
|
"""
|
|
320
277
|
|
|
321
278
|
@typing.overload
|
|
@@ -323,9 +280,7 @@ class Color:
|
|
|
323
280
|
"""
|
|
324
281
|
|
|
325
282
|
:param key:
|
|
326
|
-
:type key: int
|
|
327
283
|
:return:
|
|
328
|
-
:rtype: float
|
|
329
284
|
"""
|
|
330
285
|
|
|
331
286
|
@typing.overload
|
|
@@ -333,9 +288,7 @@ class Color:
|
|
|
333
288
|
"""
|
|
334
289
|
|
|
335
290
|
:param key:
|
|
336
|
-
:type key: slice
|
|
337
291
|
:return:
|
|
338
|
-
:rtype: tuple[float, ...]
|
|
339
292
|
"""
|
|
340
293
|
|
|
341
294
|
@typing.overload
|
|
@@ -343,9 +296,7 @@ class Color:
|
|
|
343
296
|
"""
|
|
344
297
|
|
|
345
298
|
:param key:
|
|
346
|
-
:type key: int
|
|
347
299
|
:param value:
|
|
348
|
-
:type value: float
|
|
349
300
|
"""
|
|
350
301
|
|
|
351
302
|
@typing.overload
|
|
@@ -355,75 +306,57 @@ class Color:
|
|
|
355
306
|
"""
|
|
356
307
|
|
|
357
308
|
:param key:
|
|
358
|
-
:type key: slice
|
|
359
309
|
:param value:
|
|
360
|
-
:type value: collections.abc.Iterable[float] | Color
|
|
361
310
|
"""
|
|
362
311
|
|
|
363
312
|
class Euler:
|
|
364
313
|
"""This object gives access to Eulers in Blender.`Euler angles <https://en.wikipedia.org/wiki/Euler_angles>`__ on Wikipedia."""
|
|
365
314
|
|
|
366
315
|
is_frozen: bool
|
|
367
|
-
""" True when this object has been frozen (read-only).
|
|
368
|
-
|
|
369
|
-
:type: bool
|
|
370
|
-
"""
|
|
316
|
+
""" True when this object has been frozen (read-only)."""
|
|
371
317
|
|
|
372
318
|
is_valid: bool
|
|
373
|
-
""" True when the owner of this data is valid.
|
|
374
|
-
|
|
375
|
-
:type: bool
|
|
376
|
-
"""
|
|
319
|
+
""" True when the owner of this data is valid."""
|
|
377
320
|
|
|
378
321
|
is_wrapped: bool
|
|
379
|
-
""" True when this object wraps external data (read-only).
|
|
380
|
-
|
|
381
|
-
:type: bool
|
|
382
|
-
"""
|
|
322
|
+
""" True when this object wraps external data (read-only)."""
|
|
383
323
|
|
|
384
|
-
order: typing.
|
|
324
|
+
order: typing.Literal["XYZ", "XZY", "YXZ", "YZX", "ZXY", "ZYX"]
|
|
385
325
|
""" Euler rotation order."""
|
|
386
326
|
|
|
387
327
|
owner: typing.Any
|
|
388
328
|
""" The item this is wrapping or None (read-only)."""
|
|
389
329
|
|
|
390
330
|
x: float
|
|
391
|
-
""" Euler axis angle in radians.
|
|
392
|
-
|
|
393
|
-
:type: float
|
|
394
|
-
"""
|
|
331
|
+
""" Euler axis angle in radians."""
|
|
395
332
|
|
|
396
333
|
y: float
|
|
397
|
-
""" Euler axis angle in radians.
|
|
398
|
-
|
|
399
|
-
:type: float
|
|
400
|
-
"""
|
|
334
|
+
""" Euler axis angle in radians."""
|
|
401
335
|
|
|
402
336
|
z: float
|
|
403
|
-
""" Euler axis angle in radians.
|
|
404
|
-
|
|
405
|
-
:type: float
|
|
406
|
-
"""
|
|
337
|
+
""" Euler axis angle in radians."""
|
|
407
338
|
|
|
408
339
|
def copy(self) -> typing_extensions.Self:
|
|
409
340
|
"""Returns a copy of this euler.
|
|
410
341
|
|
|
411
342
|
:return: A copy of the euler.
|
|
412
|
-
:rtype: typing_extensions.Self
|
|
413
343
|
"""
|
|
414
344
|
|
|
415
345
|
def freeze(self) -> typing_extensions.Self:
|
|
416
346
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
417
347
|
|
|
418
348
|
:return: An instance of this object.
|
|
419
|
-
:rtype: typing_extensions.Self
|
|
420
349
|
"""
|
|
421
350
|
|
|
422
|
-
def make_compatible(
|
|
351
|
+
def make_compatible(
|
|
352
|
+
self,
|
|
353
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
354
|
+
/,
|
|
355
|
+
) -> None:
|
|
423
356
|
"""Make this euler compatible with another,
|
|
424
357
|
so interpolating between them works as intended.
|
|
425
358
|
|
|
426
|
-
:param other:
|
|
359
|
+
:param other: Other euler rotation.
|
|
427
360
|
"""
|
|
428
361
|
|
|
429
362
|
def rotate(
|
|
@@ -433,35 +366,36 @@ class Euler:
|
|
|
433
366
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
434
367
|
| collections.abc.Sequence[float]
|
|
435
368
|
| typing_extensions.Self,
|
|
369
|
+
/,
|
|
436
370
|
) -> None:
|
|
437
371
|
"""Rotates the euler by another mathutils value.
|
|
438
372
|
|
|
439
373
|
:param other: rotation component of mathutils value
|
|
440
|
-
:type other: Matrix | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
441
374
|
"""
|
|
442
375
|
|
|
443
|
-
def rotate_axis(
|
|
376
|
+
def rotate_axis(
|
|
377
|
+
self,
|
|
378
|
+
axis: typing.Literal["X", "Y", "Z"],
|
|
379
|
+
angle: float,
|
|
380
|
+
/,
|
|
381
|
+
) -> None:
|
|
444
382
|
"""Rotates the euler a certain amount and returning a unique euler rotation
|
|
445
383
|
(no 720 degree pitches).
|
|
446
384
|
|
|
447
|
-
:param axis:
|
|
448
|
-
:type axis: str
|
|
385
|
+
:param axis: An axis string.
|
|
449
386
|
:param angle: angle in radians.
|
|
450
|
-
:type angle: float
|
|
451
387
|
"""
|
|
452
388
|
|
|
453
389
|
def to_matrix(self) -> Matrix:
|
|
454
390
|
"""Return a matrix representation of the euler.
|
|
455
391
|
|
|
456
392
|
:return: A 3x3 rotation matrix representation of the euler.
|
|
457
|
-
:rtype: Matrix
|
|
458
393
|
"""
|
|
459
394
|
|
|
460
395
|
def to_quaternion(self) -> Quaternion:
|
|
461
396
|
"""Return a quaternion representation of the euler.
|
|
462
397
|
|
|
463
398
|
:return: Quaternion representation of the euler.
|
|
464
|
-
:rtype: Quaternion
|
|
465
399
|
"""
|
|
466
400
|
|
|
467
401
|
def zero(self) -> None:
|
|
@@ -475,9 +409,7 @@ class Euler:
|
|
|
475
409
|
"""
|
|
476
410
|
|
|
477
411
|
:param angles:
|
|
478
|
-
:type angles: collections.abc.Sequence[float]
|
|
479
412
|
:param order:
|
|
480
|
-
:type order: str
|
|
481
413
|
"""
|
|
482
414
|
|
|
483
415
|
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
@@ -486,7 +418,6 @@ class Euler:
|
|
|
486
418
|
:param instance:
|
|
487
419
|
:param owner:
|
|
488
420
|
:return:
|
|
489
|
-
:rtype: typing_extensions.Self
|
|
490
421
|
"""
|
|
491
422
|
|
|
492
423
|
def __set__(
|
|
@@ -496,7 +427,6 @@ class Euler:
|
|
|
496
427
|
|
|
497
428
|
:param instance:
|
|
498
429
|
:param value:
|
|
499
|
-
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
500
430
|
"""
|
|
501
431
|
|
|
502
432
|
@typing.overload
|
|
@@ -504,9 +434,7 @@ class Euler:
|
|
|
504
434
|
"""
|
|
505
435
|
|
|
506
436
|
:param key:
|
|
507
|
-
:type key: int
|
|
508
437
|
:return:
|
|
509
|
-
:rtype: float
|
|
510
438
|
"""
|
|
511
439
|
|
|
512
440
|
@typing.overload
|
|
@@ -514,9 +442,7 @@ class Euler:
|
|
|
514
442
|
"""
|
|
515
443
|
|
|
516
444
|
:param key:
|
|
517
|
-
:type key: slice
|
|
518
445
|
:return:
|
|
519
|
-
:rtype: tuple[float, ...]
|
|
520
446
|
"""
|
|
521
447
|
|
|
522
448
|
@typing.overload
|
|
@@ -524,9 +450,7 @@ class Euler:
|
|
|
524
450
|
"""
|
|
525
451
|
|
|
526
452
|
:param key:
|
|
527
|
-
:type key: int
|
|
528
453
|
:param value:
|
|
529
|
-
:type value: float
|
|
530
454
|
"""
|
|
531
455
|
|
|
532
456
|
@typing.overload
|
|
@@ -536,9 +460,7 @@ class Euler:
|
|
|
536
460
|
"""
|
|
537
461
|
|
|
538
462
|
:param key:
|
|
539
|
-
:type key: slice
|
|
540
463
|
:param value:
|
|
541
|
-
:type value: collections.abc.Iterable[float] | Euler
|
|
542
464
|
"""
|
|
543
465
|
|
|
544
466
|
class Matrix:
|
|
@@ -550,52 +472,28 @@ class Matrix:
|
|
|
550
472
|
""" Access the matrix by columns, 3x3 and 4x4 only, (read-only)."""
|
|
551
473
|
|
|
552
474
|
is_frozen: bool
|
|
553
|
-
""" True when this object has been frozen (read-only).
|
|
554
|
-
|
|
555
|
-
:type: bool
|
|
556
|
-
"""
|
|
475
|
+
""" True when this object has been frozen (read-only)."""
|
|
557
476
|
|
|
558
477
|
is_identity: bool
|
|
559
|
-
""" True if this is an identity matrix (read-only).
|
|
560
|
-
|
|
561
|
-
:type: bool
|
|
562
|
-
"""
|
|
478
|
+
""" True if this is an identity matrix (read-only)."""
|
|
563
479
|
|
|
564
480
|
is_negative: bool
|
|
565
|
-
""" True if this matrix results in a negative scale, 3x3 and 4x4 only, (read-only).
|
|
566
|
-
|
|
567
|
-
:type: bool
|
|
568
|
-
"""
|
|
481
|
+
""" True if this matrix results in a negative scale, 3x3 and 4x4 only, (read-only)."""
|
|
569
482
|
|
|
570
483
|
is_orthogonal: bool
|
|
571
|
-
""" True if this matrix is orthogonal, 3x3 and 4x4 only, (read-only).
|
|
572
|
-
|
|
573
|
-
:type: bool
|
|
574
|
-
"""
|
|
484
|
+
""" True if this matrix is orthogonal, 3x3 and 4x4 only, (read-only)."""
|
|
575
485
|
|
|
576
486
|
is_orthogonal_axis_vectors: bool
|
|
577
|
-
""" True if this matrix has got orthogonal axis vectors, 3x3 and 4x4 only, (read-only).
|
|
578
|
-
|
|
579
|
-
:type: bool
|
|
580
|
-
"""
|
|
487
|
+
""" True if this matrix has got orthogonal axis vectors, 3x3 and 4x4 only, (read-only)."""
|
|
581
488
|
|
|
582
489
|
is_valid: bool
|
|
583
|
-
""" True when the owner of this data is valid.
|
|
584
|
-
|
|
585
|
-
:type: bool
|
|
586
|
-
"""
|
|
490
|
+
""" True when the owner of this data is valid."""
|
|
587
491
|
|
|
588
492
|
is_wrapped: bool
|
|
589
|
-
""" True when this object wraps external data (read-only).
|
|
590
|
-
|
|
591
|
-
:type: bool
|
|
592
|
-
"""
|
|
493
|
+
""" True when this object wraps external data (read-only)."""
|
|
593
494
|
|
|
594
495
|
median_scale: float
|
|
595
|
-
""" The average scale applied to each axis (read-only).
|
|
596
|
-
|
|
597
|
-
:type: float
|
|
598
|
-
"""
|
|
496
|
+
""" The average scale applied to each axis (read-only)."""
|
|
599
497
|
|
|
600
498
|
owner: typing.Any
|
|
601
499
|
""" The item this is wrapping or None (read-only)."""
|
|
@@ -604,31 +502,30 @@ class Matrix:
|
|
|
604
502
|
""" Access the matrix by rows (default), (read-only)."""
|
|
605
503
|
|
|
606
504
|
translation: Vector
|
|
607
|
-
""" The translation component of the matrix.
|
|
608
|
-
|
|
609
|
-
:type: Vector
|
|
610
|
-
"""
|
|
505
|
+
""" The translation component of the matrix."""
|
|
611
506
|
|
|
612
507
|
@classmethod
|
|
613
508
|
def Diagonal(
|
|
614
|
-
cls,
|
|
509
|
+
cls,
|
|
510
|
+
vector: Vector | collections.abc.Sequence[float],
|
|
511
|
+
/,
|
|
615
512
|
) -> typing_extensions.Self:
|
|
616
513
|
"""Create a diagonal (scaling) matrix using the values from the vector.
|
|
617
514
|
|
|
618
515
|
:param vector: The vector of values for the diagonal.
|
|
619
|
-
:type vector: Vector | collections.abc.Sequence[float]
|
|
620
516
|
:return: A diagonal matrix.
|
|
621
|
-
:rtype: typing_extensions.Self
|
|
622
517
|
"""
|
|
623
518
|
|
|
624
519
|
@classmethod
|
|
625
|
-
def Identity(
|
|
520
|
+
def Identity(
|
|
521
|
+
cls,
|
|
522
|
+
size: int,
|
|
523
|
+
/,
|
|
524
|
+
) -> typing_extensions.Self:
|
|
626
525
|
"""Create an identity matrix.
|
|
627
526
|
|
|
628
527
|
:param size: The size of the identity matrix to construct [2, 4].
|
|
629
|
-
:type size: int
|
|
630
528
|
:return: A new identity matrix.
|
|
631
|
-
:rtype: typing_extensions.Self
|
|
632
529
|
"""
|
|
633
530
|
|
|
634
531
|
@classmethod
|
|
@@ -642,34 +539,33 @@ class Matrix:
|
|
|
642
539
|
| collections.abc.Sequence[float]
|
|
643
540
|
| typing_extensions.Self,
|
|
644
541
|
scale: None | Vector | collections.abc.Sequence[float],
|
|
542
|
+
/,
|
|
645
543
|
) -> typing_extensions.Self:
|
|
646
544
|
"""Create a matrix combining translation, rotation and scale,
|
|
647
545
|
acting as the inverse of the decompose() method.Any of the inputs may be replaced with None if not needed.
|
|
648
546
|
|
|
649
547
|
:param location: The translation component.
|
|
650
|
-
:type location: None | Vector | collections.abc.Sequence[float]
|
|
651
548
|
:param rotation: The rotation component as a 3x3 matrix, quaternion, euler or None for no rotation.
|
|
652
|
-
:type rotation: Euler | None | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
653
549
|
:param scale: The scale component.
|
|
654
|
-
:type scale: None | Vector | collections.abc.Sequence[float]
|
|
655
550
|
:return: Combined transformation as a 4x4 matrix.
|
|
656
|
-
:rtype: typing_extensions.Self
|
|
657
551
|
"""
|
|
658
552
|
|
|
659
553
|
@classmethod
|
|
660
554
|
def OrthoProjection(
|
|
661
|
-
cls,
|
|
555
|
+
cls,
|
|
556
|
+
axis: Vector
|
|
557
|
+
| collections.abc.Sequence[float]
|
|
558
|
+
| typing.Literal["X", "Y", "XY", "XZ", "YZ"],
|
|
559
|
+
size: int,
|
|
560
|
+
/,
|
|
662
561
|
) -> typing_extensions.Self:
|
|
663
562
|
"""Create a matrix to represent an orthographic projection.
|
|
664
563
|
|
|
665
|
-
:param axis:
|
|
564
|
+
:param axis: An axis string,
|
|
666
565
|
where a single axis is for a 2D matrix.
|
|
667
566
|
Or a vector for an arbitrary axis
|
|
668
|
-
:type axis: Vector | collections.abc.Sequence[float] | str
|
|
669
567
|
:param size: The size of the projection matrix to construct [2, 4].
|
|
670
|
-
:type size: int
|
|
671
568
|
:return: A new projection matrix.
|
|
672
|
-
:rtype: typing_extensions.Self
|
|
673
569
|
"""
|
|
674
570
|
|
|
675
571
|
@classmethod
|
|
@@ -677,19 +573,19 @@ class Matrix:
|
|
|
677
573
|
cls,
|
|
678
574
|
angle: float,
|
|
679
575
|
size: int,
|
|
680
|
-
axis: Vector
|
|
576
|
+
axis: Vector
|
|
577
|
+
| collections.abc.Sequence[float]
|
|
578
|
+
| typing.Literal["X", "Y", "Z"]
|
|
579
|
+
| None = [],
|
|
580
|
+
/,
|
|
681
581
|
) -> typing_extensions.Self:
|
|
682
582
|
"""Create a matrix representing a rotation.
|
|
683
583
|
|
|
684
584
|
:param angle: The angle of rotation desired, in radians.
|
|
685
|
-
:type angle: float
|
|
686
585
|
:param size: The size of the rotation matrix to construct [2, 4].
|
|
687
|
-
:
|
|
688
|
-
:param axis: a string in ['X', 'Y', 'Z'] or a 3D Vector Object
|
|
586
|
+
:param axis: an axis string or a 3D Vector Object
|
|
689
587
|
(optional when size is 2).
|
|
690
|
-
:type axis: Vector | collections.abc.Sequence[float] | str | None
|
|
691
588
|
:return: A new rotation matrix.
|
|
692
|
-
:rtype: typing_extensions.Self
|
|
693
589
|
"""
|
|
694
590
|
|
|
695
591
|
@classmethod
|
|
@@ -698,46 +594,43 @@ class Matrix:
|
|
|
698
594
|
factor: float,
|
|
699
595
|
size: int,
|
|
700
596
|
axis: Vector | collections.abc.Sequence[float] | None = [],
|
|
597
|
+
/,
|
|
701
598
|
) -> typing_extensions.Self:
|
|
702
599
|
"""Create a matrix representing a scaling.
|
|
703
600
|
|
|
704
601
|
:param factor: The factor of scaling to apply.
|
|
705
|
-
:type factor: float
|
|
706
602
|
:param size: The size of the scale matrix to construct [2, 4].
|
|
707
|
-
:type size: int
|
|
708
603
|
:param axis: Direction to influence scale. (optional).
|
|
709
|
-
:type axis: Vector | collections.abc.Sequence[float] | None
|
|
710
604
|
:return: A new scale matrix.
|
|
711
|
-
:rtype: typing_extensions.Self
|
|
712
605
|
"""
|
|
713
606
|
|
|
714
607
|
@classmethod
|
|
715
608
|
def Shear(
|
|
716
|
-
cls,
|
|
609
|
+
cls,
|
|
610
|
+
plane: typing.Literal["X", "Y", "XY", "XZ", "YZ"],
|
|
611
|
+
size: int,
|
|
612
|
+
factor: collections.abc.Sequence[float] | float,
|
|
613
|
+
/,
|
|
717
614
|
) -> typing_extensions.Self:
|
|
718
|
-
"""Create a matrix to represent
|
|
615
|
+
"""Create a matrix to represent a shear transformation.
|
|
719
616
|
|
|
720
|
-
:param plane:
|
|
617
|
+
:param plane: An axis string,
|
|
721
618
|
where a single axis is for a 2D matrix only.
|
|
722
|
-
:type plane: str
|
|
723
619
|
:param size: The size of the shear matrix to construct [2, 4].
|
|
724
|
-
:type size: int
|
|
725
620
|
:param factor: The factor of shear to apply. For a 2 size matrix use a single float. For a 3 or 4 size matrix pass a pair of floats corresponding with the plane axis.
|
|
726
|
-
:type factor: collections.abc.Sequence[float] | float
|
|
727
621
|
:return: A new shear matrix.
|
|
728
|
-
:rtype: typing_extensions.Self
|
|
729
622
|
"""
|
|
730
623
|
|
|
731
624
|
@classmethod
|
|
732
625
|
def Translation(
|
|
733
|
-
cls,
|
|
626
|
+
cls,
|
|
627
|
+
vector: Vector | collections.abc.Sequence[float],
|
|
628
|
+
/,
|
|
734
629
|
) -> typing_extensions.Self:
|
|
735
630
|
"""Create a matrix representing a translation.
|
|
736
631
|
|
|
737
632
|
:param vector: The translation vector.
|
|
738
|
-
:type vector: Vector | collections.abc.Sequence[float]
|
|
739
633
|
:return: An identity matrix with a translation.
|
|
740
|
-
:rtype: typing_extensions.Self
|
|
741
634
|
"""
|
|
742
635
|
|
|
743
636
|
def adjugate(self) -> None:
|
|
@@ -747,35 +640,30 @@ class Matrix:
|
|
|
747
640
|
"""Return an adjugated copy of the matrix.
|
|
748
641
|
|
|
749
642
|
:return: the adjugated matrix.
|
|
750
|
-
:rtype: typing_extensions.Self
|
|
751
643
|
"""
|
|
752
644
|
|
|
753
645
|
def copy(self) -> typing_extensions.Self:
|
|
754
646
|
"""Returns a copy of this matrix.
|
|
755
647
|
|
|
756
648
|
:return: an instance of itself
|
|
757
|
-
:rtype: typing_extensions.Self
|
|
758
649
|
"""
|
|
759
650
|
|
|
760
651
|
def decompose(self) -> tuple[Vector, Quaternion, Vector]:
|
|
761
652
|
"""Return the translation, rotation, and scale components of this matrix.
|
|
762
653
|
|
|
763
654
|
:return: Tuple of translation, rotation, and scale.
|
|
764
|
-
:rtype: tuple[Vector, Quaternion, Vector]
|
|
765
655
|
"""
|
|
766
656
|
|
|
767
657
|
def determinant(self) -> float:
|
|
768
658
|
"""Return the determinant of a matrix.`Determinant <https://en.wikipedia.org/wiki/Determinant>`__ on Wikipedia.
|
|
769
659
|
|
|
770
660
|
:return: Return the determinant of a matrix.
|
|
771
|
-
:rtype: float
|
|
772
661
|
"""
|
|
773
662
|
|
|
774
663
|
def freeze(self) -> typing_extensions.Self:
|
|
775
664
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
776
665
|
|
|
777
666
|
:return: An instance of this object.
|
|
778
|
-
:rtype: typing_extensions.Self
|
|
779
667
|
"""
|
|
780
668
|
|
|
781
669
|
def identity(self) -> None:
|
|
@@ -786,12 +674,12 @@ class Matrix:
|
|
|
786
674
|
fallback: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
787
675
|
| typing_extensions.Self
|
|
788
676
|
| None = None,
|
|
677
|
+
/,
|
|
789
678
|
) -> None:
|
|
790
679
|
"""Set the matrix to its inverse.`Inverse matrix <https://en.wikipedia.org/wiki/Inverse_matrix>`__ on Wikipedia.
|
|
791
680
|
|
|
792
681
|
:param fallback: Set the matrix to this value when the inverse cannot be calculated
|
|
793
682
|
(instead of raising a `ValueError` exception).
|
|
794
|
-
:type fallback: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self | None
|
|
795
683
|
"""
|
|
796
684
|
|
|
797
685
|
def invert_safe(self) -> None:
|
|
@@ -802,15 +690,15 @@ class Matrix:
|
|
|
802
690
|
"""
|
|
803
691
|
|
|
804
692
|
def inverted(
|
|
805
|
-
self,
|
|
693
|
+
self,
|
|
694
|
+
fallback: typing.Any | None = None,
|
|
695
|
+
/,
|
|
806
696
|
) -> typing.Any | typing_extensions.Self:
|
|
807
697
|
"""Return an inverted copy of the matrix.
|
|
808
698
|
|
|
809
|
-
:param fallback: return this when the inverse
|
|
699
|
+
:param fallback: return this when the inverse cant be calculated
|
|
810
700
|
(instead of raising a `ValueError`).
|
|
811
|
-
:type fallback: typing.Any | None
|
|
812
701
|
:return: The inverted matrix or fallback when given.
|
|
813
|
-
:rtype: typing.Any | typing_extensions.Self
|
|
814
702
|
"""
|
|
815
703
|
|
|
816
704
|
def inverted_safe(self) -> typing_extensions.Self:
|
|
@@ -819,7 +707,6 @@ class Matrix:
|
|
|
819
707
|
If tweaked matrix is still degenerated, return the identity matrix instead.
|
|
820
708
|
|
|
821
709
|
:return: the inverted matrix.
|
|
822
|
-
:rtype: typing_extensions.Self
|
|
823
710
|
"""
|
|
824
711
|
|
|
825
712
|
def lerp(
|
|
@@ -827,15 +714,13 @@ class Matrix:
|
|
|
827
714
|
other: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
828
715
|
| typing_extensions.Self,
|
|
829
716
|
factor: float,
|
|
717
|
+
/,
|
|
830
718
|
) -> typing_extensions.Self:
|
|
831
719
|
"""Returns the interpolation of two matrices. Uses polar decomposition, see "Matrix Animation and Polar Decomposition", Shoemake and Duff, 1992.
|
|
832
720
|
|
|
833
721
|
:param other: value to interpolate with.
|
|
834
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
835
722
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
836
|
-
:type factor: float
|
|
837
723
|
:return: The interpolated matrix.
|
|
838
|
-
:rtype: typing_extensions.Self
|
|
839
724
|
"""
|
|
840
725
|
|
|
841
726
|
def normalize(self) -> None:
|
|
@@ -845,7 +730,6 @@ class Matrix:
|
|
|
845
730
|
"""Return a column normalized matrix
|
|
846
731
|
|
|
847
732
|
:return: a column normalized matrix
|
|
848
|
-
:rtype: typing_extensions.Self
|
|
849
733
|
"""
|
|
850
734
|
|
|
851
735
|
def resize_4x4(self) -> None:
|
|
@@ -858,72 +742,63 @@ class Matrix:
|
|
|
858
742
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
859
743
|
| collections.abc.Sequence[float]
|
|
860
744
|
| typing_extensions.Self,
|
|
745
|
+
/,
|
|
861
746
|
) -> None:
|
|
862
747
|
"""Rotates the matrix by another mathutils value.
|
|
863
748
|
|
|
864
749
|
:param other: rotation component of mathutils value
|
|
865
|
-
:type other: Euler | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
866
750
|
"""
|
|
867
751
|
|
|
868
752
|
def to_2x2(self) -> typing_extensions.Self:
|
|
869
753
|
"""Return a 2x2 copy of this matrix.
|
|
870
754
|
|
|
871
755
|
:return: a new matrix.
|
|
872
|
-
:rtype: typing_extensions.Self
|
|
873
756
|
"""
|
|
874
757
|
|
|
875
758
|
def to_3x3(self) -> typing_extensions.Self:
|
|
876
759
|
"""Return a 3x3 copy of this matrix.
|
|
877
760
|
|
|
878
761
|
:return: a new matrix.
|
|
879
|
-
:rtype: typing_extensions.Self
|
|
880
762
|
"""
|
|
881
763
|
|
|
882
764
|
def to_4x4(self) -> typing_extensions.Self:
|
|
883
765
|
"""Return a 4x4 copy of this matrix.
|
|
884
766
|
|
|
885
767
|
:return: a new matrix.
|
|
886
|
-
:rtype: typing_extensions.Self
|
|
887
768
|
"""
|
|
888
769
|
|
|
889
770
|
def to_euler(
|
|
890
771
|
self,
|
|
891
|
-
order
|
|
892
|
-
euler_compat: Euler | collections.abc.Sequence[float] | None =
|
|
772
|
+
order="XYZ",
|
|
773
|
+
euler_compat: Euler | collections.abc.Sequence[float] | None = None,
|
|
774
|
+
/,
|
|
893
775
|
) -> Euler:
|
|
894
776
|
"""Return an Euler representation of the rotation matrix
|
|
895
777
|
(3x3 or 4x4 matrix only).
|
|
896
778
|
|
|
897
|
-
:param order:
|
|
898
|
-
['XYZ', 'XZY', 'YXZ', 'YZX', 'ZXY', 'ZYX'].
|
|
899
|
-
:type order: str | None
|
|
779
|
+
:param order: A rotation order string. :type order: Literal[XYZ, XZY, YXZ, YZX, ZXY, ZYX]
|
|
900
780
|
:param euler_compat: Optional euler argument the new euler will be made
|
|
901
781
|
compatible with (no axis flipping between them).
|
|
902
782
|
Useful for converting a series of matrices to animation curves.
|
|
903
|
-
:type euler_compat: Euler | collections.abc.Sequence[float] | None
|
|
904
783
|
:return: Euler representation of the matrix.
|
|
905
|
-
:rtype: Euler
|
|
906
784
|
"""
|
|
907
785
|
|
|
908
786
|
def to_quaternion(self) -> Quaternion:
|
|
909
787
|
"""Return a quaternion representation of the rotation matrix.
|
|
910
788
|
|
|
911
789
|
:return: Quaternion representation of the rotation matrix.
|
|
912
|
-
:rtype: Quaternion
|
|
913
790
|
"""
|
|
914
791
|
|
|
915
792
|
def to_scale(self) -> Vector:
|
|
916
793
|
"""Return the scale part of a 3x3 or 4x4 matrix.
|
|
917
794
|
|
|
918
795
|
:return: Return the scale of a matrix.
|
|
919
|
-
:rtype: Vector
|
|
920
796
|
"""
|
|
921
797
|
|
|
922
798
|
def to_translation(self) -> Vector:
|
|
923
799
|
"""Return the translation part of a 4 row matrix.
|
|
924
800
|
|
|
925
801
|
:return: Return the translation of a matrix.
|
|
926
|
-
:rtype: Vector
|
|
927
802
|
"""
|
|
928
803
|
|
|
929
804
|
def transpose(self) -> None:
|
|
@@ -933,7 +808,6 @@ class Matrix:
|
|
|
933
808
|
"""Return a new, transposed matrix.
|
|
934
809
|
|
|
935
810
|
:return: a transposed matrix
|
|
936
|
-
:rtype: typing_extensions.Self
|
|
937
811
|
"""
|
|
938
812
|
|
|
939
813
|
def zero(self) -> None:
|
|
@@ -951,7 +825,6 @@ class Matrix:
|
|
|
951
825
|
"""
|
|
952
826
|
|
|
953
827
|
:param rows:
|
|
954
|
-
:type rows: collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
955
828
|
"""
|
|
956
829
|
|
|
957
830
|
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
@@ -960,7 +833,6 @@ class Matrix:
|
|
|
960
833
|
:param instance:
|
|
961
834
|
:param owner:
|
|
962
835
|
:return:
|
|
963
|
-
:rtype: typing_extensions.Self
|
|
964
836
|
"""
|
|
965
837
|
|
|
966
838
|
def __set__(
|
|
@@ -973,7 +845,6 @@ class Matrix:
|
|
|
973
845
|
|
|
974
846
|
:param instance:
|
|
975
847
|
:param value:
|
|
976
|
-
:type value: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
977
848
|
"""
|
|
978
849
|
|
|
979
850
|
@typing.overload
|
|
@@ -981,9 +852,7 @@ class Matrix:
|
|
|
981
852
|
"""
|
|
982
853
|
|
|
983
854
|
:param key:
|
|
984
|
-
:type key: int
|
|
985
855
|
:return:
|
|
986
|
-
:rtype: Vector
|
|
987
856
|
"""
|
|
988
857
|
|
|
989
858
|
@typing.overload
|
|
@@ -991,9 +860,7 @@ class Matrix:
|
|
|
991
860
|
"""
|
|
992
861
|
|
|
993
862
|
:param key:
|
|
994
|
-
:type key: slice
|
|
995
863
|
:return:
|
|
996
|
-
:rtype: tuple[Vector, ...]
|
|
997
864
|
"""
|
|
998
865
|
|
|
999
866
|
@typing.overload
|
|
@@ -1003,9 +870,7 @@ class Matrix:
|
|
|
1003
870
|
"""
|
|
1004
871
|
|
|
1005
872
|
:param key:
|
|
1006
|
-
:type key: int
|
|
1007
873
|
:param value:
|
|
1008
|
-
:type value: Vector | collections.abc.Iterable[float]
|
|
1009
874
|
"""
|
|
1010
875
|
|
|
1011
876
|
@typing.overload
|
|
@@ -1018,16 +883,13 @@ class Matrix:
|
|
|
1018
883
|
"""
|
|
1019
884
|
|
|
1020
885
|
:param key:
|
|
1021
|
-
:type key: slice
|
|
1022
886
|
:param value:
|
|
1023
|
-
:type value: collections.abc.Iterable[Vector | collections.abc.Iterable[float]] | Matrix
|
|
1024
887
|
"""
|
|
1025
888
|
|
|
1026
889
|
def __len__(self) -> int:
|
|
1027
890
|
"""
|
|
1028
891
|
|
|
1029
892
|
:return:
|
|
1030
|
-
:rtype: int
|
|
1031
893
|
"""
|
|
1032
894
|
|
|
1033
895
|
def __add__(
|
|
@@ -1038,9 +900,7 @@ class Matrix:
|
|
|
1038
900
|
"""
|
|
1039
901
|
|
|
1040
902
|
:param other:
|
|
1041
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1042
903
|
:return:
|
|
1043
|
-
:rtype: typing_extensions.Self
|
|
1044
904
|
"""
|
|
1045
905
|
|
|
1046
906
|
def __sub__(
|
|
@@ -1051,18 +911,14 @@ class Matrix:
|
|
|
1051
911
|
"""
|
|
1052
912
|
|
|
1053
913
|
:param other:
|
|
1054
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1055
914
|
:return:
|
|
1056
|
-
:rtype: typing_extensions.Self
|
|
1057
915
|
"""
|
|
1058
916
|
|
|
1059
917
|
def __mul__(self, other: float) -> typing_extensions.Self:
|
|
1060
918
|
"""
|
|
1061
919
|
|
|
1062
920
|
:param other:
|
|
1063
|
-
:type other: float
|
|
1064
921
|
:return:
|
|
1065
|
-
:rtype: typing_extensions.Self
|
|
1066
922
|
"""
|
|
1067
923
|
|
|
1068
924
|
@typing.overload
|
|
@@ -1074,9 +930,7 @@ class Matrix:
|
|
|
1074
930
|
"""
|
|
1075
931
|
|
|
1076
932
|
:param other:
|
|
1077
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1078
933
|
:return:
|
|
1079
|
-
:rtype: typing_extensions.Self
|
|
1080
934
|
"""
|
|
1081
935
|
|
|
1082
936
|
@typing.overload
|
|
@@ -1084,9 +938,7 @@ class Matrix:
|
|
|
1084
938
|
"""
|
|
1085
939
|
|
|
1086
940
|
:param other:
|
|
1087
|
-
:type other: Vector | collections.abc.Sequence[float]
|
|
1088
941
|
:return:
|
|
1089
|
-
:rtype: Vector
|
|
1090
942
|
"""
|
|
1091
943
|
|
|
1092
944
|
def __radd__(
|
|
@@ -1097,9 +949,7 @@ class Matrix:
|
|
|
1097
949
|
"""
|
|
1098
950
|
|
|
1099
951
|
:param other:
|
|
1100
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1101
952
|
:return:
|
|
1102
|
-
:rtype: typing_extensions.Self
|
|
1103
953
|
"""
|
|
1104
954
|
|
|
1105
955
|
def __rsub__(
|
|
@@ -1110,94 +960,58 @@ class Matrix:
|
|
|
1110
960
|
"""
|
|
1111
961
|
|
|
1112
962
|
:param other:
|
|
1113
|
-
:type other: collections.abc.Sequence[collections.abc.Sequence[float]] | typing_extensions.Self
|
|
1114
963
|
:return:
|
|
1115
|
-
:rtype: typing_extensions.Self
|
|
1116
964
|
"""
|
|
1117
965
|
|
|
1118
966
|
def __rmul__(self, other: float) -> typing_extensions.Self:
|
|
1119
967
|
"""
|
|
1120
968
|
|
|
1121
969
|
:param other:
|
|
1122
|
-
:type other: float
|
|
1123
970
|
:return:
|
|
1124
|
-
:rtype: typing_extensions.Self
|
|
1125
971
|
"""
|
|
1126
972
|
|
|
1127
973
|
def __imul__(self, other: float) -> typing_extensions.Self:
|
|
1128
974
|
"""
|
|
1129
975
|
|
|
1130
976
|
:param other:
|
|
1131
|
-
:type other: float
|
|
1132
977
|
:return:
|
|
1133
|
-
:rtype: typing_extensions.Self
|
|
1134
978
|
"""
|
|
1135
979
|
|
|
1136
980
|
class Quaternion:
|
|
1137
981
|
"""This object gives access to Quaternions in Blender.The constructor takes arguments in various forms:"""
|
|
1138
982
|
|
|
1139
983
|
angle: float
|
|
1140
|
-
""" Angle of the quaternion.
|
|
1141
|
-
|
|
1142
|
-
:type: float
|
|
1143
|
-
"""
|
|
984
|
+
""" Angle of the quaternion."""
|
|
1144
985
|
|
|
1145
986
|
axis: Vector
|
|
1146
|
-
""" Quaternion axis as a vector.
|
|
1147
|
-
|
|
1148
|
-
:type: Vector
|
|
1149
|
-
"""
|
|
987
|
+
""" Quaternion axis as a vector."""
|
|
1150
988
|
|
|
1151
989
|
is_frozen: bool
|
|
1152
|
-
""" True when this object has been frozen (read-only).
|
|
1153
|
-
|
|
1154
|
-
:type: bool
|
|
1155
|
-
"""
|
|
990
|
+
""" True when this object has been frozen (read-only)."""
|
|
1156
991
|
|
|
1157
992
|
is_valid: bool
|
|
1158
|
-
""" True when the owner of this data is valid.
|
|
1159
|
-
|
|
1160
|
-
:type: bool
|
|
1161
|
-
"""
|
|
993
|
+
""" True when the owner of this data is valid."""
|
|
1162
994
|
|
|
1163
995
|
is_wrapped: bool
|
|
1164
|
-
""" True when this object wraps external data (read-only).
|
|
1165
|
-
|
|
1166
|
-
:type: bool
|
|
1167
|
-
"""
|
|
996
|
+
""" True when this object wraps external data (read-only)."""
|
|
1168
997
|
|
|
1169
998
|
magnitude: float
|
|
1170
|
-
""" Size of the quaternion (read-only).
|
|
1171
|
-
|
|
1172
|
-
:type: float
|
|
1173
|
-
"""
|
|
999
|
+
""" Size of the quaternion (read-only)."""
|
|
1174
1000
|
|
|
1175
1001
|
owner: typing.Any
|
|
1176
1002
|
""" The item this is wrapping or None (read-only)."""
|
|
1177
1003
|
|
|
1178
1004
|
w: float
|
|
1179
|
-
""" Quaternion axis value.
|
|
1180
|
-
|
|
1181
|
-
:type: float
|
|
1182
|
-
"""
|
|
1005
|
+
""" Quaternion axis value."""
|
|
1183
1006
|
|
|
1184
1007
|
x: float
|
|
1185
|
-
""" Quaternion axis value.
|
|
1186
|
-
|
|
1187
|
-
:type: float
|
|
1188
|
-
"""
|
|
1008
|
+
""" Quaternion axis value."""
|
|
1189
1009
|
|
|
1190
1010
|
y: float
|
|
1191
|
-
""" Quaternion axis value.
|
|
1192
|
-
|
|
1193
|
-
:type: float
|
|
1194
|
-
"""
|
|
1011
|
+
""" Quaternion axis value."""
|
|
1195
1012
|
|
|
1196
1013
|
z: float
|
|
1197
|
-
""" Quaternion axis value.
|
|
1198
|
-
|
|
1199
|
-
:type: float
|
|
1200
|
-
"""
|
|
1014
|
+
""" Quaternion axis value."""
|
|
1201
1015
|
|
|
1202
1016
|
def conjugate(self) -> None:
|
|
1203
1017
|
"""Set the quaternion to its conjugate (negate x, y, z)."""
|
|
@@ -1206,43 +1020,40 @@ class Quaternion:
|
|
|
1206
1020
|
"""Return a new conjugated quaternion.
|
|
1207
1021
|
|
|
1208
1022
|
:return: a new quaternion.
|
|
1209
|
-
:rtype: typing_extensions.Self
|
|
1210
1023
|
"""
|
|
1211
1024
|
|
|
1212
1025
|
def copy(self) -> typing_extensions.Self:
|
|
1213
1026
|
"""Returns a copy of this quaternion.
|
|
1214
1027
|
|
|
1215
1028
|
:return: A copy of the quaternion.
|
|
1216
|
-
:rtype: typing_extensions.Self
|
|
1217
1029
|
"""
|
|
1218
1030
|
|
|
1219
1031
|
def cross(
|
|
1220
|
-
self,
|
|
1032
|
+
self,
|
|
1033
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1034
|
+
/,
|
|
1221
1035
|
) -> typing_extensions.Self:
|
|
1222
1036
|
"""Return the cross product of this quaternion and another.
|
|
1223
1037
|
|
|
1224
1038
|
:param other: The other quaternion to perform the cross product with.
|
|
1225
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1226
1039
|
:return: The cross product.
|
|
1227
|
-
:rtype: typing_extensions.Self
|
|
1228
1040
|
"""
|
|
1229
1041
|
|
|
1230
1042
|
def dot(
|
|
1231
|
-
self,
|
|
1043
|
+
self,
|
|
1044
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1045
|
+
/,
|
|
1232
1046
|
) -> float:
|
|
1233
1047
|
"""Return the dot product of this quaternion and another.
|
|
1234
1048
|
|
|
1235
1049
|
:param other: The other quaternion to perform the dot product with.
|
|
1236
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1237
1050
|
:return: The dot product.
|
|
1238
|
-
:rtype: float
|
|
1239
1051
|
"""
|
|
1240
1052
|
|
|
1241
1053
|
def freeze(self) -> typing_extensions.Self:
|
|
1242
1054
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
1243
1055
|
|
|
1244
1056
|
:return: An instance of this object.
|
|
1245
|
-
:rtype: typing_extensions.Self
|
|
1246
1057
|
"""
|
|
1247
1058
|
|
|
1248
1059
|
def identity(self) -> None:
|
|
@@ -1255,14 +1066,17 @@ class Quaternion:
|
|
|
1255
1066
|
"""Return a new, inverted quaternion.
|
|
1256
1067
|
|
|
1257
1068
|
:return: the inverted value.
|
|
1258
|
-
:rtype: typing_extensions.Self
|
|
1259
1069
|
"""
|
|
1260
1070
|
|
|
1261
|
-
def make_compatible(
|
|
1071
|
+
def make_compatible(
|
|
1072
|
+
self,
|
|
1073
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1074
|
+
/,
|
|
1075
|
+
) -> None:
|
|
1262
1076
|
"""Make this quaternion compatible with another,
|
|
1263
1077
|
so interpolating between them works as intended.
|
|
1264
1078
|
|
|
1265
|
-
:param other:
|
|
1079
|
+
:param other: The other quaternion to make compatible with.
|
|
1266
1080
|
"""
|
|
1267
1081
|
|
|
1268
1082
|
def negate(self) -> None:
|
|
@@ -1275,7 +1089,6 @@ class Quaternion:
|
|
|
1275
1089
|
"""Return a new normalized quaternion.
|
|
1276
1090
|
|
|
1277
1091
|
:return: a normalized copy.
|
|
1278
|
-
:rtype: typing_extensions.Self
|
|
1279
1092
|
"""
|
|
1280
1093
|
|
|
1281
1094
|
def rotate(
|
|
@@ -1285,66 +1098,60 @@ class Quaternion:
|
|
|
1285
1098
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
1286
1099
|
| collections.abc.Sequence[float]
|
|
1287
1100
|
| typing_extensions.Self,
|
|
1101
|
+
/,
|
|
1288
1102
|
) -> None:
|
|
1289
1103
|
"""Rotates the quaternion by another mathutils value.
|
|
1290
1104
|
|
|
1291
1105
|
:param other: rotation component of mathutils value
|
|
1292
|
-
:type other: Euler | Matrix | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float] | typing_extensions.Self
|
|
1293
1106
|
"""
|
|
1294
1107
|
|
|
1295
1108
|
def rotation_difference(
|
|
1296
|
-
self,
|
|
1109
|
+
self,
|
|
1110
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1111
|
+
/,
|
|
1297
1112
|
) -> typing_extensions.Self:
|
|
1298
1113
|
"""Returns a quaternion representing the rotational difference.
|
|
1299
1114
|
|
|
1300
1115
|
:param other: second quaternion.
|
|
1301
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1302
1116
|
:return: the rotational difference between the two quat rotations.
|
|
1303
|
-
:rtype: typing_extensions.Self
|
|
1304
1117
|
"""
|
|
1305
1118
|
|
|
1306
1119
|
def slerp(
|
|
1307
1120
|
self,
|
|
1308
1121
|
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1309
1122
|
factor: float,
|
|
1123
|
+
/,
|
|
1310
1124
|
) -> typing_extensions.Self:
|
|
1311
1125
|
"""Returns the interpolation of two quaternions.
|
|
1312
1126
|
|
|
1313
1127
|
:param other: value to interpolate with.
|
|
1314
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1315
1128
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
1316
|
-
:type factor: float
|
|
1317
1129
|
:return: The interpolated rotation.
|
|
1318
|
-
:rtype: typing_extensions.Self
|
|
1319
1130
|
"""
|
|
1320
1131
|
|
|
1321
1132
|
def to_axis_angle(self) -> tuple[Vector, float]:
|
|
1322
1133
|
"""Return the axis, angle representation of the quaternion.
|
|
1323
1134
|
|
|
1324
1135
|
:return: Axis, angle.
|
|
1325
|
-
:rtype: tuple[Vector, float]
|
|
1326
1136
|
"""
|
|
1327
1137
|
|
|
1328
1138
|
def to_euler(
|
|
1329
1139
|
self,
|
|
1330
|
-
order:
|
|
1331
|
-
euler_compat: Euler | collections.abc.Sequence[float] | None =
|
|
1140
|
+
order: typing.Literal["XYZ", "XZY", "YXZ", "YZX", "ZXY", "ZYX"] = "XYZ",
|
|
1141
|
+
euler_compat: Euler | collections.abc.Sequence[float] | None = None,
|
|
1142
|
+
/,
|
|
1332
1143
|
) -> Euler:
|
|
1333
1144
|
"""Return Euler representation of the quaternion.
|
|
1334
1145
|
|
|
1335
|
-
:param order:
|
|
1336
|
-
['XYZ', 'XZY', 'YXZ', 'YZX', 'ZXY', 'ZYX'].
|
|
1337
|
-
:type order: str | None
|
|
1146
|
+
:param order: Rotation order.
|
|
1338
1147
|
:param euler_compat: Optional euler argument the new euler will be made
|
|
1339
1148
|
compatible with (no axis flipping between them).
|
|
1340
1149
|
Useful for converting a series of matrices to animation curves.
|
|
1341
|
-
:type euler_compat: Euler | collections.abc.Sequence[float] | None
|
|
1342
1150
|
:return: Euler representation of the quaternion.
|
|
1343
|
-
:rtype: Euler
|
|
1344
1151
|
"""
|
|
1345
1152
|
|
|
1346
1153
|
def to_exponential_map(self) -> None:
|
|
1347
|
-
"""Return the exponential map representation of the quaternion.This representation
|
|
1154
|
+
"""Return the exponential map representation of the quaternion.This representation consists of the rotation axis multiplied by the rotation angle.
|
|
1348
1155
|
Such a representation is useful for interpolation between multiple orientations.To convert back to a quaternion, pass it to the `Quaternion` constructor.
|
|
1349
1156
|
|
|
1350
1157
|
:return: exponential map.
|
|
@@ -1354,17 +1161,18 @@ class Quaternion:
|
|
|
1354
1161
|
"""Return a matrix representation of the quaternion.
|
|
1355
1162
|
|
|
1356
1163
|
:return: A 3x3 rotation matrix representation of the quaternion.
|
|
1357
|
-
:rtype: Matrix
|
|
1358
1164
|
"""
|
|
1359
1165
|
|
|
1360
|
-
def to_swing_twist(
|
|
1166
|
+
def to_swing_twist(
|
|
1167
|
+
self,
|
|
1168
|
+
axis: typing.Literal["X", "Y", "Z"],
|
|
1169
|
+
/,
|
|
1170
|
+
) -> tuple[Quaternion, float]:
|
|
1361
1171
|
"""Split the rotation into a swing quaternion with the specified
|
|
1362
1172
|
axis fixed at zero, and the remaining twist rotation angle.
|
|
1363
1173
|
|
|
1364
|
-
:param axis: Twist axis as a string
|
|
1365
|
-
:type axis: str
|
|
1174
|
+
:param axis: Twist axis as a string.
|
|
1366
1175
|
:return: Swing, twist angle.
|
|
1367
|
-
:rtype: tuple[Quaternion, float]
|
|
1368
1176
|
"""
|
|
1369
1177
|
|
|
1370
1178
|
def __init__(
|
|
@@ -1375,9 +1183,7 @@ class Quaternion:
|
|
|
1375
1183
|
"""
|
|
1376
1184
|
|
|
1377
1185
|
:param seq:
|
|
1378
|
-
:type seq: Vector | collections.abc.Sequence[float]
|
|
1379
1186
|
:param angle:
|
|
1380
|
-
:type angle: float
|
|
1381
1187
|
"""
|
|
1382
1188
|
|
|
1383
1189
|
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
@@ -1386,7 +1192,6 @@ class Quaternion:
|
|
|
1386
1192
|
:param instance:
|
|
1387
1193
|
:param owner:
|
|
1388
1194
|
:return:
|
|
1389
|
-
:rtype: typing_extensions.Self
|
|
1390
1195
|
"""
|
|
1391
1196
|
|
|
1392
1197
|
def __set__(
|
|
@@ -1396,14 +1201,12 @@ class Quaternion:
|
|
|
1396
1201
|
|
|
1397
1202
|
:param instance:
|
|
1398
1203
|
:param value:
|
|
1399
|
-
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1400
1204
|
"""
|
|
1401
1205
|
|
|
1402
1206
|
def __len__(self) -> int:
|
|
1403
1207
|
"""
|
|
1404
1208
|
|
|
1405
1209
|
:return:
|
|
1406
|
-
:rtype: int
|
|
1407
1210
|
"""
|
|
1408
1211
|
|
|
1409
1212
|
@typing.overload
|
|
@@ -1411,9 +1214,7 @@ class Quaternion:
|
|
|
1411
1214
|
"""
|
|
1412
1215
|
|
|
1413
1216
|
:param key:
|
|
1414
|
-
:type key: int
|
|
1415
1217
|
:return:
|
|
1416
|
-
:rtype: float
|
|
1417
1218
|
"""
|
|
1418
1219
|
|
|
1419
1220
|
@typing.overload
|
|
@@ -1421,9 +1222,7 @@ class Quaternion:
|
|
|
1421
1222
|
"""
|
|
1422
1223
|
|
|
1423
1224
|
:param key:
|
|
1424
|
-
:type key: slice
|
|
1425
1225
|
:return:
|
|
1426
|
-
:rtype: tuple[float, ...]
|
|
1427
1226
|
"""
|
|
1428
1227
|
|
|
1429
1228
|
@typing.overload
|
|
@@ -1431,9 +1230,7 @@ class Quaternion:
|
|
|
1431
1230
|
"""
|
|
1432
1231
|
|
|
1433
1232
|
:param key:
|
|
1434
|
-
:type key: int
|
|
1435
1233
|
:param value:
|
|
1436
|
-
:type value: float
|
|
1437
1234
|
"""
|
|
1438
1235
|
|
|
1439
1236
|
@typing.overload
|
|
@@ -1443,9 +1240,7 @@ class Quaternion:
|
|
|
1443
1240
|
"""
|
|
1444
1241
|
|
|
1445
1242
|
:param key:
|
|
1446
|
-
:type key: slice
|
|
1447
1243
|
:param value:
|
|
1448
|
-
:type value: collections.abc.Iterable[float] | Quaternion
|
|
1449
1244
|
"""
|
|
1450
1245
|
|
|
1451
1246
|
def __add__(
|
|
@@ -1454,9 +1249,7 @@ class Quaternion:
|
|
|
1454
1249
|
"""
|
|
1455
1250
|
|
|
1456
1251
|
:param other:
|
|
1457
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1458
1252
|
:return:
|
|
1459
|
-
:rtype: typing_extensions.Self
|
|
1460
1253
|
"""
|
|
1461
1254
|
|
|
1462
1255
|
def __sub__(
|
|
@@ -1465,9 +1258,7 @@ class Quaternion:
|
|
|
1465
1258
|
"""
|
|
1466
1259
|
|
|
1467
1260
|
:param other:
|
|
1468
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1469
1261
|
:return:
|
|
1470
|
-
:rtype: typing_extensions.Self
|
|
1471
1262
|
"""
|
|
1472
1263
|
|
|
1473
1264
|
def __mul__(
|
|
@@ -1476,9 +1267,7 @@ class Quaternion:
|
|
|
1476
1267
|
"""
|
|
1477
1268
|
|
|
1478
1269
|
:param other:
|
|
1479
|
-
:type other: collections.abc.Sequence[float] | float | typing_extensions.Self
|
|
1480
1270
|
:return:
|
|
1481
|
-
:rtype: typing_extensions.Self
|
|
1482
1271
|
"""
|
|
1483
1272
|
|
|
1484
1273
|
@typing.overload
|
|
@@ -1486,9 +1275,7 @@ class Quaternion:
|
|
|
1486
1275
|
"""
|
|
1487
1276
|
|
|
1488
1277
|
:param other:
|
|
1489
|
-
:type other: typing_extensions.Self
|
|
1490
1278
|
:return:
|
|
1491
|
-
:rtype: typing_extensions.Self
|
|
1492
1279
|
"""
|
|
1493
1280
|
|
|
1494
1281
|
@typing.overload
|
|
@@ -1496,9 +1283,7 @@ class Quaternion:
|
|
|
1496
1283
|
"""
|
|
1497
1284
|
|
|
1498
1285
|
:param other:
|
|
1499
|
-
:type other: Vector
|
|
1500
1286
|
:return:
|
|
1501
|
-
:rtype: Vector
|
|
1502
1287
|
"""
|
|
1503
1288
|
|
|
1504
1289
|
def __radd__(
|
|
@@ -1507,9 +1292,7 @@ class Quaternion:
|
|
|
1507
1292
|
"""
|
|
1508
1293
|
|
|
1509
1294
|
:param other:
|
|
1510
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1511
1295
|
:return:
|
|
1512
|
-
:rtype: typing_extensions.Self
|
|
1513
1296
|
"""
|
|
1514
1297
|
|
|
1515
1298
|
def __rsub__(
|
|
@@ -1518,9 +1301,7 @@ class Quaternion:
|
|
|
1518
1301
|
"""
|
|
1519
1302
|
|
|
1520
1303
|
:param other:
|
|
1521
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
1522
1304
|
:return:
|
|
1523
|
-
:rtype: typing_extensions.Self
|
|
1524
1305
|
"""
|
|
1525
1306
|
|
|
1526
1307
|
def __rmul__(
|
|
@@ -1529,9 +1310,7 @@ class Quaternion:
|
|
|
1529
1310
|
"""
|
|
1530
1311
|
|
|
1531
1312
|
:param other:
|
|
1532
|
-
:type other: collections.abc.Sequence[float] | float | typing_extensions.Self
|
|
1533
1313
|
:return:
|
|
1534
|
-
:rtype: typing_extensions.Self
|
|
1535
1314
|
"""
|
|
1536
1315
|
|
|
1537
1316
|
def __imul__(
|
|
@@ -1540,2220 +1319,515 @@ class Quaternion:
|
|
|
1540
1319
|
"""
|
|
1541
1320
|
|
|
1542
1321
|
:param other:
|
|
1543
|
-
:type other: collections.abc.Sequence[float] | float | typing_extensions.Self
|
|
1544
1322
|
:return:
|
|
1545
|
-
:rtype: typing_extensions.Self
|
|
1546
1323
|
"""
|
|
1547
1324
|
|
|
1548
1325
|
class Vector:
|
|
1549
1326
|
"""This object gives access to Vectors in Blender."""
|
|
1550
1327
|
|
|
1551
1328
|
is_frozen: bool
|
|
1552
|
-
""" True when this object has been frozen (read-only).
|
|
1553
|
-
|
|
1554
|
-
:type: bool
|
|
1555
|
-
"""
|
|
1329
|
+
""" True when this object has been frozen (read-only)."""
|
|
1556
1330
|
|
|
1557
1331
|
is_valid: bool
|
|
1558
|
-
""" True when the owner of this data is valid.
|
|
1559
|
-
|
|
1560
|
-
:type: bool
|
|
1561
|
-
"""
|
|
1332
|
+
""" True when the owner of this data is valid."""
|
|
1562
1333
|
|
|
1563
1334
|
is_wrapped: bool
|
|
1564
|
-
""" True when this object wraps external data (read-only).
|
|
1565
|
-
|
|
1566
|
-
:type: bool
|
|
1567
|
-
"""
|
|
1335
|
+
""" True when this object wraps external data (read-only)."""
|
|
1568
1336
|
|
|
1569
1337
|
length: float
|
|
1570
|
-
""" Vector Length.
|
|
1571
|
-
|
|
1572
|
-
:type: float
|
|
1573
|
-
"""
|
|
1338
|
+
""" Vector Length."""
|
|
1574
1339
|
|
|
1575
1340
|
length_squared: float
|
|
1576
|
-
""" Vector length squared (v.dot(v)).
|
|
1577
|
-
|
|
1578
|
-
:type: float
|
|
1579
|
-
"""
|
|
1341
|
+
""" Vector length squared (v.dot(v))."""
|
|
1580
1342
|
|
|
1581
1343
|
magnitude: float
|
|
1582
|
-
""" Vector Length.
|
|
1583
|
-
|
|
1584
|
-
:type: float
|
|
1585
|
-
"""
|
|
1344
|
+
""" Vector Length."""
|
|
1586
1345
|
|
|
1587
1346
|
owner: typing.Any
|
|
1588
1347
|
""" The item this is wrapping or None (read-only)."""
|
|
1589
1348
|
|
|
1590
1349
|
w: float
|
|
1591
|
-
""" Vector W axis (4D Vectors only).
|
|
1592
|
-
|
|
1593
|
-
:type: float
|
|
1594
|
-
"""
|
|
1350
|
+
""" Vector W axis (4D Vectors only)."""
|
|
1595
1351
|
|
|
1596
1352
|
ww: typing_extensions.Self
|
|
1597
|
-
"""
|
|
1598
|
-
|
|
1599
|
-
:type: typing_extensions.Self
|
|
1600
|
-
"""
|
|
1601
|
-
|
|
1602
1353
|
www: typing_extensions.Self
|
|
1603
|
-
"""
|
|
1604
|
-
|
|
1605
|
-
:type: typing_extensions.Self
|
|
1606
|
-
"""
|
|
1607
|
-
|
|
1608
1354
|
wwww: typing_extensions.Self
|
|
1609
|
-
"""
|
|
1610
|
-
|
|
1611
|
-
:type: typing_extensions.Self
|
|
1612
|
-
"""
|
|
1613
|
-
|
|
1614
1355
|
wwwx: typing_extensions.Self
|
|
1615
|
-
"""
|
|
1616
|
-
|
|
1617
|
-
:type: typing_extensions.Self
|
|
1618
|
-
"""
|
|
1619
|
-
|
|
1620
1356
|
wwwy: typing_extensions.Self
|
|
1621
|
-
"""
|
|
1622
|
-
|
|
1623
|
-
:type: typing_extensions.Self
|
|
1624
|
-
"""
|
|
1625
|
-
|
|
1626
1357
|
wwwz: typing_extensions.Self
|
|
1627
|
-
"""
|
|
1628
|
-
|
|
1629
|
-
:type: typing_extensions.Self
|
|
1630
|
-
"""
|
|
1631
|
-
|
|
1632
1358
|
wwx: typing_extensions.Self
|
|
1633
|
-
"""
|
|
1634
|
-
|
|
1635
|
-
:type: typing_extensions.Self
|
|
1636
|
-
"""
|
|
1637
|
-
|
|
1638
1359
|
wwxw: typing_extensions.Self
|
|
1639
|
-
"""
|
|
1640
|
-
|
|
1641
|
-
:type: typing_extensions.Self
|
|
1642
|
-
"""
|
|
1643
|
-
|
|
1644
1360
|
wwxx: typing_extensions.Self
|
|
1645
|
-
"""
|
|
1646
|
-
|
|
1647
|
-
:type: typing_extensions.Self
|
|
1648
|
-
"""
|
|
1649
|
-
|
|
1650
1361
|
wwxy: typing_extensions.Self
|
|
1651
|
-
"""
|
|
1652
|
-
|
|
1653
|
-
:type: typing_extensions.Self
|
|
1654
|
-
"""
|
|
1655
|
-
|
|
1656
1362
|
wwxz: typing_extensions.Self
|
|
1657
|
-
"""
|
|
1658
|
-
|
|
1659
|
-
:type: typing_extensions.Self
|
|
1660
|
-
"""
|
|
1661
|
-
|
|
1662
1363
|
wwy: typing_extensions.Self
|
|
1663
|
-
"""
|
|
1664
|
-
|
|
1665
|
-
:type: typing_extensions.Self
|
|
1666
|
-
"""
|
|
1667
|
-
|
|
1668
1364
|
wwyw: typing_extensions.Self
|
|
1669
|
-
"""
|
|
1670
|
-
|
|
1671
|
-
:type: typing_extensions.Self
|
|
1672
|
-
"""
|
|
1673
|
-
|
|
1674
1365
|
wwyx: typing_extensions.Self
|
|
1675
|
-
"""
|
|
1676
|
-
|
|
1677
|
-
:type: typing_extensions.Self
|
|
1678
|
-
"""
|
|
1679
|
-
|
|
1680
1366
|
wwyy: typing_extensions.Self
|
|
1681
|
-
"""
|
|
1682
|
-
|
|
1683
|
-
:type: typing_extensions.Self
|
|
1684
|
-
"""
|
|
1685
|
-
|
|
1686
1367
|
wwyz: typing_extensions.Self
|
|
1687
|
-
"""
|
|
1688
|
-
|
|
1689
|
-
:type: typing_extensions.Self
|
|
1690
|
-
"""
|
|
1691
|
-
|
|
1692
1368
|
wwz: typing_extensions.Self
|
|
1693
|
-
"""
|
|
1694
|
-
|
|
1695
|
-
:type: typing_extensions.Self
|
|
1696
|
-
"""
|
|
1697
|
-
|
|
1698
1369
|
wwzw: typing_extensions.Self
|
|
1699
|
-
"""
|
|
1700
|
-
|
|
1701
|
-
:type: typing_extensions.Self
|
|
1702
|
-
"""
|
|
1703
|
-
|
|
1704
1370
|
wwzx: typing_extensions.Self
|
|
1705
|
-
"""
|
|
1706
|
-
|
|
1707
|
-
:type: typing_extensions.Self
|
|
1708
|
-
"""
|
|
1709
|
-
|
|
1710
1371
|
wwzy: typing_extensions.Self
|
|
1711
|
-
"""
|
|
1712
|
-
|
|
1713
|
-
:type: typing_extensions.Self
|
|
1714
|
-
"""
|
|
1715
|
-
|
|
1716
1372
|
wwzz: typing_extensions.Self
|
|
1717
|
-
"""
|
|
1718
|
-
|
|
1719
|
-
:type: typing_extensions.Self
|
|
1720
|
-
"""
|
|
1721
|
-
|
|
1722
1373
|
wx: typing_extensions.Self
|
|
1723
|
-
"""
|
|
1724
|
-
|
|
1725
|
-
:type: typing_extensions.Self
|
|
1726
|
-
"""
|
|
1727
|
-
|
|
1728
1374
|
wxw: typing_extensions.Self
|
|
1729
|
-
"""
|
|
1730
|
-
|
|
1731
|
-
:type: typing_extensions.Self
|
|
1732
|
-
"""
|
|
1733
|
-
|
|
1734
1375
|
wxww: typing_extensions.Self
|
|
1735
|
-
"""
|
|
1736
|
-
|
|
1737
|
-
:type: typing_extensions.Self
|
|
1738
|
-
"""
|
|
1739
|
-
|
|
1740
1376
|
wxwx: typing_extensions.Self
|
|
1741
|
-
"""
|
|
1742
|
-
|
|
1743
|
-
:type: typing_extensions.Self
|
|
1744
|
-
"""
|
|
1745
|
-
|
|
1746
1377
|
wxwy: typing_extensions.Self
|
|
1747
|
-
"""
|
|
1748
|
-
|
|
1749
|
-
:type: typing_extensions.Self
|
|
1750
|
-
"""
|
|
1751
|
-
|
|
1752
1378
|
wxwz: typing_extensions.Self
|
|
1753
|
-
"""
|
|
1754
|
-
|
|
1755
|
-
:type: typing_extensions.Self
|
|
1756
|
-
"""
|
|
1757
|
-
|
|
1758
1379
|
wxx: typing_extensions.Self
|
|
1759
|
-
"""
|
|
1760
|
-
|
|
1761
|
-
:type: typing_extensions.Self
|
|
1762
|
-
"""
|
|
1763
|
-
|
|
1764
1380
|
wxxw: typing_extensions.Self
|
|
1765
|
-
"""
|
|
1766
|
-
|
|
1767
|
-
:type: typing_extensions.Self
|
|
1768
|
-
"""
|
|
1769
|
-
|
|
1770
1381
|
wxxx: typing_extensions.Self
|
|
1771
|
-
"""
|
|
1772
|
-
|
|
1773
|
-
:type: typing_extensions.Self
|
|
1774
|
-
"""
|
|
1775
|
-
|
|
1776
1382
|
wxxy: typing_extensions.Self
|
|
1777
|
-
"""
|
|
1778
|
-
|
|
1779
|
-
:type: typing_extensions.Self
|
|
1780
|
-
"""
|
|
1781
|
-
|
|
1782
1383
|
wxxz: typing_extensions.Self
|
|
1783
|
-
"""
|
|
1784
|
-
|
|
1785
|
-
:type: typing_extensions.Self
|
|
1786
|
-
"""
|
|
1787
|
-
|
|
1788
1384
|
wxy: typing_extensions.Self
|
|
1789
|
-
"""
|
|
1790
|
-
|
|
1791
|
-
:type: typing_extensions.Self
|
|
1792
|
-
"""
|
|
1793
|
-
|
|
1794
1385
|
wxyw: typing_extensions.Self
|
|
1795
|
-
"""
|
|
1796
|
-
|
|
1797
|
-
:type: typing_extensions.Self
|
|
1798
|
-
"""
|
|
1799
|
-
|
|
1800
1386
|
wxyx: typing_extensions.Self
|
|
1801
|
-
"""
|
|
1802
|
-
|
|
1803
|
-
:type: typing_extensions.Self
|
|
1804
|
-
"""
|
|
1805
|
-
|
|
1806
1387
|
wxyy: typing_extensions.Self
|
|
1807
|
-
"""
|
|
1808
|
-
|
|
1809
|
-
:type: typing_extensions.Self
|
|
1810
|
-
"""
|
|
1811
|
-
|
|
1812
1388
|
wxyz: typing_extensions.Self
|
|
1813
|
-
"""
|
|
1814
|
-
|
|
1815
|
-
:type: typing_extensions.Self
|
|
1816
|
-
"""
|
|
1817
|
-
|
|
1818
1389
|
wxz: typing_extensions.Self
|
|
1819
|
-
"""
|
|
1820
|
-
|
|
1821
|
-
:type: typing_extensions.Self
|
|
1822
|
-
"""
|
|
1823
|
-
|
|
1824
1390
|
wxzw: typing_extensions.Self
|
|
1825
|
-
"""
|
|
1826
|
-
|
|
1827
|
-
:type: typing_extensions.Self
|
|
1828
|
-
"""
|
|
1829
|
-
|
|
1830
1391
|
wxzx: typing_extensions.Self
|
|
1831
|
-
"""
|
|
1832
|
-
|
|
1833
|
-
:type: typing_extensions.Self
|
|
1834
|
-
"""
|
|
1835
|
-
|
|
1836
1392
|
wxzy: typing_extensions.Self
|
|
1837
|
-
"""
|
|
1838
|
-
|
|
1839
|
-
:type: typing_extensions.Self
|
|
1840
|
-
"""
|
|
1841
|
-
|
|
1842
1393
|
wxzz: typing_extensions.Self
|
|
1843
|
-
"""
|
|
1844
|
-
|
|
1845
|
-
:type: typing_extensions.Self
|
|
1846
|
-
"""
|
|
1847
|
-
|
|
1848
1394
|
wy: typing_extensions.Self
|
|
1849
|
-
"""
|
|
1850
|
-
|
|
1851
|
-
:type: typing_extensions.Self
|
|
1852
|
-
"""
|
|
1853
|
-
|
|
1854
1395
|
wyw: typing_extensions.Self
|
|
1855
|
-
"""
|
|
1856
|
-
|
|
1857
|
-
:type: typing_extensions.Self
|
|
1858
|
-
"""
|
|
1859
|
-
|
|
1860
1396
|
wyww: typing_extensions.Self
|
|
1861
|
-
"""
|
|
1862
|
-
|
|
1863
|
-
:type: typing_extensions.Self
|
|
1864
|
-
"""
|
|
1865
|
-
|
|
1866
1397
|
wywx: typing_extensions.Self
|
|
1867
|
-
"""
|
|
1868
|
-
|
|
1869
|
-
:type: typing_extensions.Self
|
|
1870
|
-
"""
|
|
1871
|
-
|
|
1872
1398
|
wywy: typing_extensions.Self
|
|
1873
|
-
"""
|
|
1874
|
-
|
|
1875
|
-
:type: typing_extensions.Self
|
|
1876
|
-
"""
|
|
1877
|
-
|
|
1878
1399
|
wywz: typing_extensions.Self
|
|
1879
|
-
"""
|
|
1880
|
-
|
|
1881
|
-
:type: typing_extensions.Self
|
|
1882
|
-
"""
|
|
1883
|
-
|
|
1884
1400
|
wyx: typing_extensions.Self
|
|
1885
|
-
"""
|
|
1886
|
-
|
|
1887
|
-
:type: typing_extensions.Self
|
|
1888
|
-
"""
|
|
1889
|
-
|
|
1890
1401
|
wyxw: typing_extensions.Self
|
|
1891
|
-
"""
|
|
1892
|
-
|
|
1893
|
-
:type: typing_extensions.Self
|
|
1894
|
-
"""
|
|
1895
|
-
|
|
1896
1402
|
wyxx: typing_extensions.Self
|
|
1897
|
-
"""
|
|
1898
|
-
|
|
1899
|
-
:type: typing_extensions.Self
|
|
1900
|
-
"""
|
|
1901
|
-
|
|
1902
1403
|
wyxy: typing_extensions.Self
|
|
1903
|
-
"""
|
|
1904
|
-
|
|
1905
|
-
:type: typing_extensions.Self
|
|
1906
|
-
"""
|
|
1907
|
-
|
|
1908
1404
|
wyxz: typing_extensions.Self
|
|
1909
|
-
"""
|
|
1910
|
-
|
|
1911
|
-
:type: typing_extensions.Self
|
|
1912
|
-
"""
|
|
1913
|
-
|
|
1914
1405
|
wyy: typing_extensions.Self
|
|
1915
|
-
"""
|
|
1916
|
-
|
|
1917
|
-
:type: typing_extensions.Self
|
|
1918
|
-
"""
|
|
1919
|
-
|
|
1920
1406
|
wyyw: typing_extensions.Self
|
|
1921
|
-
"""
|
|
1922
|
-
|
|
1923
|
-
:type: typing_extensions.Self
|
|
1924
|
-
"""
|
|
1925
|
-
|
|
1926
1407
|
wyyx: typing_extensions.Self
|
|
1927
|
-
"""
|
|
1928
|
-
|
|
1929
|
-
:type: typing_extensions.Self
|
|
1930
|
-
"""
|
|
1931
|
-
|
|
1932
1408
|
wyyy: typing_extensions.Self
|
|
1933
|
-
"""
|
|
1934
|
-
|
|
1935
|
-
:type: typing_extensions.Self
|
|
1936
|
-
"""
|
|
1937
|
-
|
|
1938
1409
|
wyyz: typing_extensions.Self
|
|
1939
|
-
"""
|
|
1940
|
-
|
|
1941
|
-
:type: typing_extensions.Self
|
|
1942
|
-
"""
|
|
1943
|
-
|
|
1944
1410
|
wyz: typing_extensions.Self
|
|
1945
|
-
"""
|
|
1946
|
-
|
|
1947
|
-
:type: typing_extensions.Self
|
|
1948
|
-
"""
|
|
1949
|
-
|
|
1950
1411
|
wyzw: typing_extensions.Self
|
|
1951
|
-
"""
|
|
1952
|
-
|
|
1953
|
-
:type: typing_extensions.Self
|
|
1954
|
-
"""
|
|
1955
|
-
|
|
1956
1412
|
wyzx: typing_extensions.Self
|
|
1957
|
-
"""
|
|
1958
|
-
|
|
1959
|
-
:type: typing_extensions.Self
|
|
1960
|
-
"""
|
|
1961
|
-
|
|
1962
1413
|
wyzy: typing_extensions.Self
|
|
1963
|
-
"""
|
|
1964
|
-
|
|
1965
|
-
:type: typing_extensions.Self
|
|
1966
|
-
"""
|
|
1967
|
-
|
|
1968
1414
|
wyzz: typing_extensions.Self
|
|
1969
|
-
"""
|
|
1970
|
-
|
|
1971
|
-
:type: typing_extensions.Self
|
|
1972
|
-
"""
|
|
1973
|
-
|
|
1974
1415
|
wz: typing_extensions.Self
|
|
1975
|
-
"""
|
|
1976
|
-
|
|
1977
|
-
:type: typing_extensions.Self
|
|
1978
|
-
"""
|
|
1979
|
-
|
|
1980
1416
|
wzw: typing_extensions.Self
|
|
1981
|
-
"""
|
|
1982
|
-
|
|
1983
|
-
:type: typing_extensions.Self
|
|
1984
|
-
"""
|
|
1985
|
-
|
|
1986
1417
|
wzww: typing_extensions.Self
|
|
1987
|
-
"""
|
|
1988
|
-
|
|
1989
|
-
:type: typing_extensions.Self
|
|
1990
|
-
"""
|
|
1991
|
-
|
|
1992
1418
|
wzwx: typing_extensions.Self
|
|
1993
|
-
"""
|
|
1994
|
-
|
|
1995
|
-
:type: typing_extensions.Self
|
|
1996
|
-
"""
|
|
1997
|
-
|
|
1998
1419
|
wzwy: typing_extensions.Self
|
|
1999
|
-
"""
|
|
2000
|
-
|
|
2001
|
-
:type: typing_extensions.Self
|
|
2002
|
-
"""
|
|
2003
|
-
|
|
2004
1420
|
wzwz: typing_extensions.Self
|
|
2005
|
-
"""
|
|
2006
|
-
|
|
2007
|
-
:type: typing_extensions.Self
|
|
2008
|
-
"""
|
|
2009
|
-
|
|
2010
1421
|
wzx: typing_extensions.Self
|
|
2011
|
-
"""
|
|
2012
|
-
|
|
2013
|
-
:type: typing_extensions.Self
|
|
2014
|
-
"""
|
|
2015
|
-
|
|
2016
1422
|
wzxw: typing_extensions.Self
|
|
2017
|
-
"""
|
|
2018
|
-
|
|
2019
|
-
:type: typing_extensions.Self
|
|
2020
|
-
"""
|
|
2021
|
-
|
|
2022
1423
|
wzxx: typing_extensions.Self
|
|
2023
|
-
"""
|
|
2024
|
-
|
|
2025
|
-
:type: typing_extensions.Self
|
|
2026
|
-
"""
|
|
2027
|
-
|
|
2028
1424
|
wzxy: typing_extensions.Self
|
|
2029
|
-
"""
|
|
2030
|
-
|
|
2031
|
-
:type: typing_extensions.Self
|
|
2032
|
-
"""
|
|
2033
|
-
|
|
2034
1425
|
wzxz: typing_extensions.Self
|
|
2035
|
-
"""
|
|
2036
|
-
|
|
2037
|
-
:type: typing_extensions.Self
|
|
2038
|
-
"""
|
|
2039
|
-
|
|
2040
1426
|
wzy: typing_extensions.Self
|
|
2041
|
-
"""
|
|
2042
|
-
|
|
2043
|
-
:type: typing_extensions.Self
|
|
2044
|
-
"""
|
|
2045
|
-
|
|
2046
1427
|
wzyw: typing_extensions.Self
|
|
2047
|
-
"""
|
|
2048
|
-
|
|
2049
|
-
:type: typing_extensions.Self
|
|
2050
|
-
"""
|
|
2051
|
-
|
|
2052
1428
|
wzyx: typing_extensions.Self
|
|
2053
|
-
"""
|
|
2054
|
-
|
|
2055
|
-
:type: typing_extensions.Self
|
|
2056
|
-
"""
|
|
2057
|
-
|
|
2058
1429
|
wzyy: typing_extensions.Self
|
|
2059
|
-
"""
|
|
2060
|
-
|
|
2061
|
-
:type: typing_extensions.Self
|
|
2062
|
-
"""
|
|
2063
|
-
|
|
2064
1430
|
wzyz: typing_extensions.Self
|
|
2065
|
-
"""
|
|
2066
|
-
|
|
2067
|
-
:type: typing_extensions.Self
|
|
2068
|
-
"""
|
|
2069
|
-
|
|
2070
1431
|
wzz: typing_extensions.Self
|
|
2071
|
-
"""
|
|
2072
|
-
|
|
2073
|
-
:type: typing_extensions.Self
|
|
2074
|
-
"""
|
|
2075
|
-
|
|
2076
1432
|
wzzw: typing_extensions.Self
|
|
2077
|
-
"""
|
|
2078
|
-
|
|
2079
|
-
:type: typing_extensions.Self
|
|
2080
|
-
"""
|
|
2081
|
-
|
|
2082
1433
|
wzzx: typing_extensions.Self
|
|
2083
|
-
"""
|
|
2084
|
-
|
|
2085
|
-
:type: typing_extensions.Self
|
|
2086
|
-
"""
|
|
2087
|
-
|
|
2088
1434
|
wzzy: typing_extensions.Self
|
|
2089
|
-
"""
|
|
2090
|
-
|
|
2091
|
-
:type: typing_extensions.Self
|
|
2092
|
-
"""
|
|
2093
|
-
|
|
2094
1435
|
wzzz: typing_extensions.Self
|
|
2095
|
-
"""
|
|
2096
|
-
|
|
2097
|
-
:type: typing_extensions.Self
|
|
2098
|
-
"""
|
|
2099
|
-
|
|
2100
1436
|
x: float
|
|
2101
|
-
""" Vector X axis.
|
|
2102
|
-
|
|
2103
|
-
:type: float
|
|
2104
|
-
"""
|
|
1437
|
+
""" Vector X axis."""
|
|
2105
1438
|
|
|
2106
1439
|
xw: typing_extensions.Self
|
|
2107
|
-
"""
|
|
2108
|
-
|
|
2109
|
-
:type: typing_extensions.Self
|
|
2110
|
-
"""
|
|
2111
|
-
|
|
2112
1440
|
xww: typing_extensions.Self
|
|
2113
|
-
"""
|
|
2114
|
-
|
|
2115
|
-
:type: typing_extensions.Self
|
|
2116
|
-
"""
|
|
2117
|
-
|
|
2118
1441
|
xwww: typing_extensions.Self
|
|
2119
|
-
"""
|
|
2120
|
-
|
|
2121
|
-
:type: typing_extensions.Self
|
|
2122
|
-
"""
|
|
2123
|
-
|
|
2124
1442
|
xwwx: typing_extensions.Self
|
|
2125
|
-
"""
|
|
2126
|
-
|
|
2127
|
-
:type: typing_extensions.Self
|
|
2128
|
-
"""
|
|
2129
|
-
|
|
2130
1443
|
xwwy: typing_extensions.Self
|
|
2131
|
-
"""
|
|
2132
|
-
|
|
2133
|
-
:type: typing_extensions.Self
|
|
2134
|
-
"""
|
|
2135
|
-
|
|
2136
1444
|
xwwz: typing_extensions.Self
|
|
2137
|
-
"""
|
|
2138
|
-
|
|
2139
|
-
:type: typing_extensions.Self
|
|
2140
|
-
"""
|
|
2141
|
-
|
|
2142
1445
|
xwx: typing_extensions.Self
|
|
2143
|
-
"""
|
|
2144
|
-
|
|
2145
|
-
:type: typing_extensions.Self
|
|
2146
|
-
"""
|
|
2147
|
-
|
|
2148
1446
|
xwxw: typing_extensions.Self
|
|
2149
|
-
"""
|
|
2150
|
-
|
|
2151
|
-
:type: typing_extensions.Self
|
|
2152
|
-
"""
|
|
2153
|
-
|
|
2154
1447
|
xwxx: typing_extensions.Self
|
|
2155
|
-
"""
|
|
2156
|
-
|
|
2157
|
-
:type: typing_extensions.Self
|
|
2158
|
-
"""
|
|
2159
|
-
|
|
2160
1448
|
xwxy: typing_extensions.Self
|
|
2161
|
-
"""
|
|
2162
|
-
|
|
2163
|
-
:type: typing_extensions.Self
|
|
2164
|
-
"""
|
|
2165
|
-
|
|
2166
1449
|
xwxz: typing_extensions.Self
|
|
2167
|
-
"""
|
|
2168
|
-
|
|
2169
|
-
:type: typing_extensions.Self
|
|
2170
|
-
"""
|
|
2171
|
-
|
|
2172
1450
|
xwy: typing_extensions.Self
|
|
2173
|
-
"""
|
|
2174
|
-
|
|
2175
|
-
:type: typing_extensions.Self
|
|
2176
|
-
"""
|
|
2177
|
-
|
|
2178
1451
|
xwyw: typing_extensions.Self
|
|
2179
|
-
"""
|
|
2180
|
-
|
|
2181
|
-
:type: typing_extensions.Self
|
|
2182
|
-
"""
|
|
2183
|
-
|
|
2184
1452
|
xwyx: typing_extensions.Self
|
|
2185
|
-
"""
|
|
2186
|
-
|
|
2187
|
-
:type: typing_extensions.Self
|
|
2188
|
-
"""
|
|
2189
|
-
|
|
2190
1453
|
xwyy: typing_extensions.Self
|
|
2191
|
-
"""
|
|
2192
|
-
|
|
2193
|
-
:type: typing_extensions.Self
|
|
2194
|
-
"""
|
|
2195
|
-
|
|
2196
1454
|
xwyz: typing_extensions.Self
|
|
2197
|
-
"""
|
|
2198
|
-
|
|
2199
|
-
:type: typing_extensions.Self
|
|
2200
|
-
"""
|
|
2201
|
-
|
|
2202
1455
|
xwz: typing_extensions.Self
|
|
2203
|
-
"""
|
|
2204
|
-
|
|
2205
|
-
:type: typing_extensions.Self
|
|
2206
|
-
"""
|
|
2207
|
-
|
|
2208
1456
|
xwzw: typing_extensions.Self
|
|
2209
|
-
"""
|
|
2210
|
-
|
|
2211
|
-
:type: typing_extensions.Self
|
|
2212
|
-
"""
|
|
2213
|
-
|
|
2214
1457
|
xwzx: typing_extensions.Self
|
|
2215
|
-
"""
|
|
2216
|
-
|
|
2217
|
-
:type: typing_extensions.Self
|
|
2218
|
-
"""
|
|
2219
|
-
|
|
2220
1458
|
xwzy: typing_extensions.Self
|
|
2221
|
-
"""
|
|
2222
|
-
|
|
2223
|
-
:type: typing_extensions.Self
|
|
2224
|
-
"""
|
|
2225
|
-
|
|
2226
1459
|
xwzz: typing_extensions.Self
|
|
2227
|
-
"""
|
|
2228
|
-
|
|
2229
|
-
:type: typing_extensions.Self
|
|
2230
|
-
"""
|
|
2231
|
-
|
|
2232
1460
|
xx: typing_extensions.Self
|
|
2233
|
-
"""
|
|
2234
|
-
|
|
2235
|
-
:type: typing_extensions.Self
|
|
2236
|
-
"""
|
|
2237
|
-
|
|
2238
1461
|
xxw: typing_extensions.Self
|
|
2239
|
-
"""
|
|
2240
|
-
|
|
2241
|
-
:type: typing_extensions.Self
|
|
2242
|
-
"""
|
|
2243
|
-
|
|
2244
1462
|
xxww: typing_extensions.Self
|
|
2245
|
-
"""
|
|
2246
|
-
|
|
2247
|
-
:type: typing_extensions.Self
|
|
2248
|
-
"""
|
|
2249
|
-
|
|
2250
1463
|
xxwx: typing_extensions.Self
|
|
2251
|
-
"""
|
|
2252
|
-
|
|
2253
|
-
:type: typing_extensions.Self
|
|
2254
|
-
"""
|
|
2255
|
-
|
|
2256
1464
|
xxwy: typing_extensions.Self
|
|
2257
|
-
"""
|
|
2258
|
-
|
|
2259
|
-
:type: typing_extensions.Self
|
|
2260
|
-
"""
|
|
2261
|
-
|
|
2262
1465
|
xxwz: typing_extensions.Self
|
|
2263
|
-
"""
|
|
2264
|
-
|
|
2265
|
-
:type: typing_extensions.Self
|
|
2266
|
-
"""
|
|
2267
|
-
|
|
2268
1466
|
xxx: typing_extensions.Self
|
|
2269
|
-
"""
|
|
2270
|
-
|
|
2271
|
-
:type: typing_extensions.Self
|
|
2272
|
-
"""
|
|
2273
|
-
|
|
2274
1467
|
xxxw: typing_extensions.Self
|
|
2275
|
-
"""
|
|
2276
|
-
|
|
2277
|
-
:type: typing_extensions.Self
|
|
2278
|
-
"""
|
|
2279
|
-
|
|
2280
1468
|
xxxx: typing_extensions.Self
|
|
2281
|
-
"""
|
|
2282
|
-
|
|
2283
|
-
:type: typing_extensions.Self
|
|
2284
|
-
"""
|
|
2285
|
-
|
|
2286
1469
|
xxxy: typing_extensions.Self
|
|
2287
|
-
"""
|
|
2288
|
-
|
|
2289
|
-
:type: typing_extensions.Self
|
|
2290
|
-
"""
|
|
2291
|
-
|
|
2292
1470
|
xxxz: typing_extensions.Self
|
|
2293
|
-
"""
|
|
2294
|
-
|
|
2295
|
-
:type: typing_extensions.Self
|
|
2296
|
-
"""
|
|
2297
|
-
|
|
2298
1471
|
xxy: typing_extensions.Self
|
|
2299
|
-
"""
|
|
2300
|
-
|
|
2301
|
-
:type: typing_extensions.Self
|
|
2302
|
-
"""
|
|
2303
|
-
|
|
2304
1472
|
xxyw: typing_extensions.Self
|
|
2305
|
-
"""
|
|
2306
|
-
|
|
2307
|
-
:type: typing_extensions.Self
|
|
2308
|
-
"""
|
|
2309
|
-
|
|
2310
1473
|
xxyx: typing_extensions.Self
|
|
2311
|
-
"""
|
|
2312
|
-
|
|
2313
|
-
:type: typing_extensions.Self
|
|
2314
|
-
"""
|
|
2315
|
-
|
|
2316
1474
|
xxyy: typing_extensions.Self
|
|
2317
|
-
"""
|
|
2318
|
-
|
|
2319
|
-
:type: typing_extensions.Self
|
|
2320
|
-
"""
|
|
2321
|
-
|
|
2322
1475
|
xxyz: typing_extensions.Self
|
|
2323
|
-
"""
|
|
2324
|
-
|
|
2325
|
-
:type: typing_extensions.Self
|
|
2326
|
-
"""
|
|
2327
|
-
|
|
2328
1476
|
xxz: typing_extensions.Self
|
|
2329
|
-
"""
|
|
2330
|
-
|
|
2331
|
-
:type: typing_extensions.Self
|
|
2332
|
-
"""
|
|
2333
|
-
|
|
2334
1477
|
xxzw: typing_extensions.Self
|
|
2335
|
-
"""
|
|
2336
|
-
|
|
2337
|
-
:type: typing_extensions.Self
|
|
2338
|
-
"""
|
|
2339
|
-
|
|
2340
1478
|
xxzx: typing_extensions.Self
|
|
2341
|
-
"""
|
|
2342
|
-
|
|
2343
|
-
:type: typing_extensions.Self
|
|
2344
|
-
"""
|
|
2345
|
-
|
|
2346
1479
|
xxzy: typing_extensions.Self
|
|
2347
|
-
"""
|
|
2348
|
-
|
|
2349
|
-
:type: typing_extensions.Self
|
|
2350
|
-
"""
|
|
2351
|
-
|
|
2352
1480
|
xxzz: typing_extensions.Self
|
|
2353
|
-
"""
|
|
2354
|
-
|
|
2355
|
-
:type: typing_extensions.Self
|
|
2356
|
-
"""
|
|
2357
|
-
|
|
2358
1481
|
xy: typing_extensions.Self
|
|
2359
|
-
"""
|
|
2360
|
-
|
|
2361
|
-
:type: typing_extensions.Self
|
|
2362
|
-
"""
|
|
2363
|
-
|
|
2364
1482
|
xyw: typing_extensions.Self
|
|
2365
|
-
"""
|
|
2366
|
-
|
|
2367
|
-
:type: typing_extensions.Self
|
|
2368
|
-
"""
|
|
2369
|
-
|
|
2370
1483
|
xyww: typing_extensions.Self
|
|
2371
|
-
"""
|
|
2372
|
-
|
|
2373
|
-
:type: typing_extensions.Self
|
|
2374
|
-
"""
|
|
2375
|
-
|
|
2376
1484
|
xywx: typing_extensions.Self
|
|
2377
|
-
"""
|
|
2378
|
-
|
|
2379
|
-
:type: typing_extensions.Self
|
|
2380
|
-
"""
|
|
2381
|
-
|
|
2382
1485
|
xywy: typing_extensions.Self
|
|
2383
|
-
"""
|
|
2384
|
-
|
|
2385
|
-
:type: typing_extensions.Self
|
|
2386
|
-
"""
|
|
2387
|
-
|
|
2388
1486
|
xywz: typing_extensions.Self
|
|
2389
|
-
"""
|
|
2390
|
-
|
|
2391
|
-
:type: typing_extensions.Self
|
|
2392
|
-
"""
|
|
2393
|
-
|
|
2394
1487
|
xyx: typing_extensions.Self
|
|
2395
|
-
"""
|
|
2396
|
-
|
|
2397
|
-
:type: typing_extensions.Self
|
|
2398
|
-
"""
|
|
2399
|
-
|
|
2400
1488
|
xyxw: typing_extensions.Self
|
|
2401
|
-
"""
|
|
2402
|
-
|
|
2403
|
-
:type: typing_extensions.Self
|
|
2404
|
-
"""
|
|
2405
|
-
|
|
2406
1489
|
xyxx: typing_extensions.Self
|
|
2407
|
-
"""
|
|
2408
|
-
|
|
2409
|
-
:type: typing_extensions.Self
|
|
2410
|
-
"""
|
|
2411
|
-
|
|
2412
1490
|
xyxy: typing_extensions.Self
|
|
2413
|
-
"""
|
|
2414
|
-
|
|
2415
|
-
:type: typing_extensions.Self
|
|
2416
|
-
"""
|
|
2417
|
-
|
|
2418
1491
|
xyxz: typing_extensions.Self
|
|
2419
|
-
"""
|
|
2420
|
-
|
|
2421
|
-
:type: typing_extensions.Self
|
|
2422
|
-
"""
|
|
2423
|
-
|
|
2424
1492
|
xyy: typing_extensions.Self
|
|
2425
|
-
"""
|
|
2426
|
-
|
|
2427
|
-
:type: typing_extensions.Self
|
|
2428
|
-
"""
|
|
2429
|
-
|
|
2430
1493
|
xyyw: typing_extensions.Self
|
|
2431
|
-
"""
|
|
2432
|
-
|
|
2433
|
-
:type: typing_extensions.Self
|
|
2434
|
-
"""
|
|
2435
|
-
|
|
2436
1494
|
xyyx: typing_extensions.Self
|
|
2437
|
-
"""
|
|
2438
|
-
|
|
2439
|
-
:type: typing_extensions.Self
|
|
2440
|
-
"""
|
|
2441
|
-
|
|
2442
1495
|
xyyy: typing_extensions.Self
|
|
2443
|
-
"""
|
|
2444
|
-
|
|
2445
|
-
:type: typing_extensions.Self
|
|
2446
|
-
"""
|
|
2447
|
-
|
|
2448
1496
|
xyyz: typing_extensions.Self
|
|
2449
|
-
"""
|
|
2450
|
-
|
|
2451
|
-
:type: typing_extensions.Self
|
|
2452
|
-
"""
|
|
2453
|
-
|
|
2454
1497
|
xyz: typing_extensions.Self
|
|
2455
|
-
"""
|
|
2456
|
-
|
|
2457
|
-
:type: typing_extensions.Self
|
|
2458
|
-
"""
|
|
2459
|
-
|
|
2460
1498
|
xyzw: typing_extensions.Self
|
|
2461
|
-
"""
|
|
2462
|
-
|
|
2463
|
-
:type: typing_extensions.Self
|
|
2464
|
-
"""
|
|
2465
|
-
|
|
2466
1499
|
xyzx: typing_extensions.Self
|
|
2467
|
-
"""
|
|
2468
|
-
|
|
2469
|
-
:type: typing_extensions.Self
|
|
2470
|
-
"""
|
|
2471
|
-
|
|
2472
1500
|
xyzy: typing_extensions.Self
|
|
2473
|
-
"""
|
|
2474
|
-
|
|
2475
|
-
:type: typing_extensions.Self
|
|
2476
|
-
"""
|
|
2477
|
-
|
|
2478
1501
|
xyzz: typing_extensions.Self
|
|
2479
|
-
"""
|
|
2480
|
-
|
|
2481
|
-
:type: typing_extensions.Self
|
|
2482
|
-
"""
|
|
2483
|
-
|
|
2484
1502
|
xz: typing_extensions.Self
|
|
2485
|
-
"""
|
|
2486
|
-
|
|
2487
|
-
:type: typing_extensions.Self
|
|
2488
|
-
"""
|
|
2489
|
-
|
|
2490
1503
|
xzw: typing_extensions.Self
|
|
2491
|
-
"""
|
|
2492
|
-
|
|
2493
|
-
:type: typing_extensions.Self
|
|
2494
|
-
"""
|
|
2495
|
-
|
|
2496
1504
|
xzww: typing_extensions.Self
|
|
2497
|
-
"""
|
|
2498
|
-
|
|
2499
|
-
:type: typing_extensions.Self
|
|
2500
|
-
"""
|
|
2501
|
-
|
|
2502
1505
|
xzwx: typing_extensions.Self
|
|
2503
|
-
"""
|
|
2504
|
-
|
|
2505
|
-
:type: typing_extensions.Self
|
|
2506
|
-
"""
|
|
2507
|
-
|
|
2508
1506
|
xzwy: typing_extensions.Self
|
|
2509
|
-
"""
|
|
2510
|
-
|
|
2511
|
-
:type: typing_extensions.Self
|
|
2512
|
-
"""
|
|
2513
|
-
|
|
2514
1507
|
xzwz: typing_extensions.Self
|
|
2515
|
-
"""
|
|
2516
|
-
|
|
2517
|
-
:type: typing_extensions.Self
|
|
2518
|
-
"""
|
|
2519
|
-
|
|
2520
1508
|
xzx: typing_extensions.Self
|
|
2521
|
-
"""
|
|
2522
|
-
|
|
2523
|
-
:type: typing_extensions.Self
|
|
2524
|
-
"""
|
|
2525
|
-
|
|
2526
1509
|
xzxw: typing_extensions.Self
|
|
2527
|
-
"""
|
|
2528
|
-
|
|
2529
|
-
:type: typing_extensions.Self
|
|
2530
|
-
"""
|
|
2531
|
-
|
|
2532
1510
|
xzxx: typing_extensions.Self
|
|
2533
|
-
"""
|
|
2534
|
-
|
|
2535
|
-
:type: typing_extensions.Self
|
|
2536
|
-
"""
|
|
2537
|
-
|
|
2538
1511
|
xzxy: typing_extensions.Self
|
|
2539
|
-
"""
|
|
2540
|
-
|
|
2541
|
-
:type: typing_extensions.Self
|
|
2542
|
-
"""
|
|
2543
|
-
|
|
2544
1512
|
xzxz: typing_extensions.Self
|
|
2545
|
-
"""
|
|
2546
|
-
|
|
2547
|
-
:type: typing_extensions.Self
|
|
2548
|
-
"""
|
|
2549
|
-
|
|
2550
1513
|
xzy: typing_extensions.Self
|
|
2551
|
-
"""
|
|
2552
|
-
|
|
2553
|
-
:type: typing_extensions.Self
|
|
2554
|
-
"""
|
|
2555
|
-
|
|
2556
1514
|
xzyw: typing_extensions.Self
|
|
2557
|
-
"""
|
|
2558
|
-
|
|
2559
|
-
:type: typing_extensions.Self
|
|
2560
|
-
"""
|
|
2561
|
-
|
|
2562
1515
|
xzyx: typing_extensions.Self
|
|
2563
|
-
"""
|
|
2564
|
-
|
|
2565
|
-
:type: typing_extensions.Self
|
|
2566
|
-
"""
|
|
2567
|
-
|
|
2568
1516
|
xzyy: typing_extensions.Self
|
|
2569
|
-
"""
|
|
2570
|
-
|
|
2571
|
-
:type: typing_extensions.Self
|
|
2572
|
-
"""
|
|
2573
|
-
|
|
2574
1517
|
xzyz: typing_extensions.Self
|
|
2575
|
-
"""
|
|
2576
|
-
|
|
2577
|
-
:type: typing_extensions.Self
|
|
2578
|
-
"""
|
|
2579
|
-
|
|
2580
1518
|
xzz: typing_extensions.Self
|
|
2581
|
-
"""
|
|
2582
|
-
|
|
2583
|
-
:type: typing_extensions.Self
|
|
2584
|
-
"""
|
|
2585
|
-
|
|
2586
1519
|
xzzw: typing_extensions.Self
|
|
2587
|
-
"""
|
|
2588
|
-
|
|
2589
|
-
:type: typing_extensions.Self
|
|
2590
|
-
"""
|
|
2591
|
-
|
|
2592
1520
|
xzzx: typing_extensions.Self
|
|
2593
|
-
"""
|
|
2594
|
-
|
|
2595
|
-
:type: typing_extensions.Self
|
|
2596
|
-
"""
|
|
2597
|
-
|
|
2598
1521
|
xzzy: typing_extensions.Self
|
|
2599
|
-
"""
|
|
2600
|
-
|
|
2601
|
-
:type: typing_extensions.Self
|
|
2602
|
-
"""
|
|
2603
|
-
|
|
2604
1522
|
xzzz: typing_extensions.Self
|
|
2605
|
-
"""
|
|
2606
|
-
|
|
2607
|
-
:type: typing_extensions.Self
|
|
2608
|
-
"""
|
|
2609
|
-
|
|
2610
1523
|
y: float
|
|
2611
|
-
""" Vector Y axis.
|
|
2612
|
-
|
|
2613
|
-
:type: float
|
|
2614
|
-
"""
|
|
1524
|
+
""" Vector Y axis."""
|
|
2615
1525
|
|
|
2616
1526
|
yw: typing_extensions.Self
|
|
2617
|
-
"""
|
|
2618
|
-
|
|
2619
|
-
:type: typing_extensions.Self
|
|
2620
|
-
"""
|
|
2621
|
-
|
|
2622
1527
|
yww: typing_extensions.Self
|
|
2623
|
-
"""
|
|
2624
|
-
|
|
2625
|
-
:type: typing_extensions.Self
|
|
2626
|
-
"""
|
|
2627
|
-
|
|
2628
1528
|
ywww: typing_extensions.Self
|
|
2629
|
-
"""
|
|
2630
|
-
|
|
2631
|
-
:type: typing_extensions.Self
|
|
2632
|
-
"""
|
|
2633
|
-
|
|
2634
1529
|
ywwx: typing_extensions.Self
|
|
2635
|
-
"""
|
|
2636
|
-
|
|
2637
|
-
:type: typing_extensions.Self
|
|
2638
|
-
"""
|
|
2639
|
-
|
|
2640
1530
|
ywwy: typing_extensions.Self
|
|
2641
|
-
"""
|
|
2642
|
-
|
|
2643
|
-
:type: typing_extensions.Self
|
|
2644
|
-
"""
|
|
2645
|
-
|
|
2646
1531
|
ywwz: typing_extensions.Self
|
|
2647
|
-
"""
|
|
2648
|
-
|
|
2649
|
-
:type: typing_extensions.Self
|
|
2650
|
-
"""
|
|
2651
|
-
|
|
2652
1532
|
ywx: typing_extensions.Self
|
|
2653
|
-
"""
|
|
2654
|
-
|
|
2655
|
-
:type: typing_extensions.Self
|
|
2656
|
-
"""
|
|
2657
|
-
|
|
2658
1533
|
ywxw: typing_extensions.Self
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
:type: typing_extensions.Self
|
|
2662
|
-
"""
|
|
2663
|
-
|
|
2664
|
-
ywxx: typing_extensions.Self
|
|
2665
|
-
"""
|
|
2666
|
-
|
|
2667
|
-
:type: typing_extensions.Self
|
|
2668
|
-
"""
|
|
2669
|
-
|
|
2670
|
-
ywxy: typing_extensions.Self
|
|
2671
|
-
"""
|
|
2672
|
-
|
|
2673
|
-
:type: typing_extensions.Self
|
|
2674
|
-
"""
|
|
2675
|
-
|
|
1534
|
+
ywxx: typing_extensions.Self
|
|
1535
|
+
ywxy: typing_extensions.Self
|
|
2676
1536
|
ywxz: typing_extensions.Self
|
|
2677
|
-
"""
|
|
2678
|
-
|
|
2679
|
-
:type: typing_extensions.Self
|
|
2680
|
-
"""
|
|
2681
|
-
|
|
2682
1537
|
ywy: typing_extensions.Self
|
|
2683
|
-
"""
|
|
2684
|
-
|
|
2685
|
-
:type: typing_extensions.Self
|
|
2686
|
-
"""
|
|
2687
|
-
|
|
2688
1538
|
ywyw: typing_extensions.Self
|
|
2689
|
-
"""
|
|
2690
|
-
|
|
2691
|
-
:type: typing_extensions.Self
|
|
2692
|
-
"""
|
|
2693
|
-
|
|
2694
1539
|
ywyx: typing_extensions.Self
|
|
2695
|
-
"""
|
|
2696
|
-
|
|
2697
|
-
:type: typing_extensions.Self
|
|
2698
|
-
"""
|
|
2699
|
-
|
|
2700
1540
|
ywyy: typing_extensions.Self
|
|
2701
|
-
"""
|
|
2702
|
-
|
|
2703
|
-
:type: typing_extensions.Self
|
|
2704
|
-
"""
|
|
2705
|
-
|
|
2706
1541
|
ywyz: typing_extensions.Self
|
|
2707
|
-
"""
|
|
2708
|
-
|
|
2709
|
-
:type: typing_extensions.Self
|
|
2710
|
-
"""
|
|
2711
|
-
|
|
2712
1542
|
ywz: typing_extensions.Self
|
|
2713
|
-
"""
|
|
2714
|
-
|
|
2715
|
-
:type: typing_extensions.Self
|
|
2716
|
-
"""
|
|
2717
|
-
|
|
2718
1543
|
ywzw: typing_extensions.Self
|
|
2719
|
-
"""
|
|
2720
|
-
|
|
2721
|
-
:type: typing_extensions.Self
|
|
2722
|
-
"""
|
|
2723
|
-
|
|
2724
1544
|
ywzx: typing_extensions.Self
|
|
2725
|
-
"""
|
|
2726
|
-
|
|
2727
|
-
:type: typing_extensions.Self
|
|
2728
|
-
"""
|
|
2729
|
-
|
|
2730
1545
|
ywzy: typing_extensions.Self
|
|
2731
|
-
"""
|
|
2732
|
-
|
|
2733
|
-
:type: typing_extensions.Self
|
|
2734
|
-
"""
|
|
2735
|
-
|
|
2736
1546
|
ywzz: typing_extensions.Self
|
|
2737
|
-
"""
|
|
2738
|
-
|
|
2739
|
-
:type: typing_extensions.Self
|
|
2740
|
-
"""
|
|
2741
|
-
|
|
2742
1547
|
yx: typing_extensions.Self
|
|
2743
|
-
"""
|
|
2744
|
-
|
|
2745
|
-
:type: typing_extensions.Self
|
|
2746
|
-
"""
|
|
2747
|
-
|
|
2748
1548
|
yxw: typing_extensions.Self
|
|
2749
|
-
"""
|
|
2750
|
-
|
|
2751
|
-
:type: typing_extensions.Self
|
|
2752
|
-
"""
|
|
2753
|
-
|
|
2754
1549
|
yxww: typing_extensions.Self
|
|
2755
|
-
"""
|
|
2756
|
-
|
|
2757
|
-
:type: typing_extensions.Self
|
|
2758
|
-
"""
|
|
2759
|
-
|
|
2760
1550
|
yxwx: typing_extensions.Self
|
|
2761
|
-
"""
|
|
2762
|
-
|
|
2763
|
-
:type: typing_extensions.Self
|
|
2764
|
-
"""
|
|
2765
|
-
|
|
2766
1551
|
yxwy: typing_extensions.Self
|
|
2767
|
-
"""
|
|
2768
|
-
|
|
2769
|
-
:type: typing_extensions.Self
|
|
2770
|
-
"""
|
|
2771
|
-
|
|
2772
1552
|
yxwz: typing_extensions.Self
|
|
2773
|
-
"""
|
|
2774
|
-
|
|
2775
|
-
:type: typing_extensions.Self
|
|
2776
|
-
"""
|
|
2777
|
-
|
|
2778
1553
|
yxx: typing_extensions.Self
|
|
2779
|
-
"""
|
|
2780
|
-
|
|
2781
|
-
:type: typing_extensions.Self
|
|
2782
|
-
"""
|
|
2783
|
-
|
|
2784
1554
|
yxxw: typing_extensions.Self
|
|
2785
|
-
"""
|
|
2786
|
-
|
|
2787
|
-
:type: typing_extensions.Self
|
|
2788
|
-
"""
|
|
2789
|
-
|
|
2790
1555
|
yxxx: typing_extensions.Self
|
|
2791
|
-
"""
|
|
2792
|
-
|
|
2793
|
-
:type: typing_extensions.Self
|
|
2794
|
-
"""
|
|
2795
|
-
|
|
2796
1556
|
yxxy: typing_extensions.Self
|
|
2797
|
-
"""
|
|
2798
|
-
|
|
2799
|
-
:type: typing_extensions.Self
|
|
2800
|
-
"""
|
|
2801
|
-
|
|
2802
1557
|
yxxz: typing_extensions.Self
|
|
2803
|
-
"""
|
|
2804
|
-
|
|
2805
|
-
:type: typing_extensions.Self
|
|
2806
|
-
"""
|
|
2807
|
-
|
|
2808
1558
|
yxy: typing_extensions.Self
|
|
2809
|
-
"""
|
|
2810
|
-
|
|
2811
|
-
:type: typing_extensions.Self
|
|
2812
|
-
"""
|
|
2813
|
-
|
|
2814
1559
|
yxyw: typing_extensions.Self
|
|
2815
|
-
"""
|
|
2816
|
-
|
|
2817
|
-
:type: typing_extensions.Self
|
|
2818
|
-
"""
|
|
2819
|
-
|
|
2820
1560
|
yxyx: typing_extensions.Self
|
|
2821
|
-
"""
|
|
2822
|
-
|
|
2823
|
-
:type: typing_extensions.Self
|
|
2824
|
-
"""
|
|
2825
|
-
|
|
2826
1561
|
yxyy: typing_extensions.Self
|
|
2827
|
-
"""
|
|
2828
|
-
|
|
2829
|
-
:type: typing_extensions.Self
|
|
2830
|
-
"""
|
|
2831
|
-
|
|
2832
1562
|
yxyz: typing_extensions.Self
|
|
2833
|
-
"""
|
|
2834
|
-
|
|
2835
|
-
:type: typing_extensions.Self
|
|
2836
|
-
"""
|
|
2837
|
-
|
|
2838
1563
|
yxz: typing_extensions.Self
|
|
2839
|
-
"""
|
|
2840
|
-
|
|
2841
|
-
:type: typing_extensions.Self
|
|
2842
|
-
"""
|
|
2843
|
-
|
|
2844
1564
|
yxzw: typing_extensions.Self
|
|
2845
|
-
"""
|
|
2846
|
-
|
|
2847
|
-
:type: typing_extensions.Self
|
|
2848
|
-
"""
|
|
2849
|
-
|
|
2850
1565
|
yxzx: typing_extensions.Self
|
|
2851
|
-
"""
|
|
2852
|
-
|
|
2853
|
-
:type: typing_extensions.Self
|
|
2854
|
-
"""
|
|
2855
|
-
|
|
2856
1566
|
yxzy: typing_extensions.Self
|
|
2857
|
-
"""
|
|
2858
|
-
|
|
2859
|
-
:type: typing_extensions.Self
|
|
2860
|
-
"""
|
|
2861
|
-
|
|
2862
1567
|
yxzz: typing_extensions.Self
|
|
2863
|
-
"""
|
|
2864
|
-
|
|
2865
|
-
:type: typing_extensions.Self
|
|
2866
|
-
"""
|
|
2867
|
-
|
|
2868
1568
|
yy: typing_extensions.Self
|
|
2869
|
-
"""
|
|
2870
|
-
|
|
2871
|
-
:type: typing_extensions.Self
|
|
2872
|
-
"""
|
|
2873
|
-
|
|
2874
1569
|
yyw: typing_extensions.Self
|
|
2875
|
-
"""
|
|
2876
|
-
|
|
2877
|
-
:type: typing_extensions.Self
|
|
2878
|
-
"""
|
|
2879
|
-
|
|
2880
1570
|
yyww: typing_extensions.Self
|
|
2881
|
-
"""
|
|
2882
|
-
|
|
2883
|
-
:type: typing_extensions.Self
|
|
2884
|
-
"""
|
|
2885
|
-
|
|
2886
1571
|
yywx: typing_extensions.Self
|
|
2887
|
-
"""
|
|
2888
|
-
|
|
2889
|
-
:type: typing_extensions.Self
|
|
2890
|
-
"""
|
|
2891
|
-
|
|
2892
1572
|
yywy: typing_extensions.Self
|
|
2893
|
-
"""
|
|
2894
|
-
|
|
2895
|
-
:type: typing_extensions.Self
|
|
2896
|
-
"""
|
|
2897
|
-
|
|
2898
1573
|
yywz: typing_extensions.Self
|
|
2899
|
-
"""
|
|
2900
|
-
|
|
2901
|
-
:type: typing_extensions.Self
|
|
2902
|
-
"""
|
|
2903
|
-
|
|
2904
1574
|
yyx: typing_extensions.Self
|
|
2905
|
-
"""
|
|
2906
|
-
|
|
2907
|
-
:type: typing_extensions.Self
|
|
2908
|
-
"""
|
|
2909
|
-
|
|
2910
1575
|
yyxw: typing_extensions.Self
|
|
2911
|
-
"""
|
|
2912
|
-
|
|
2913
|
-
:type: typing_extensions.Self
|
|
2914
|
-
"""
|
|
2915
|
-
|
|
2916
1576
|
yyxx: typing_extensions.Self
|
|
2917
|
-
"""
|
|
2918
|
-
|
|
2919
|
-
:type: typing_extensions.Self
|
|
2920
|
-
"""
|
|
2921
|
-
|
|
2922
1577
|
yyxy: typing_extensions.Self
|
|
2923
|
-
"""
|
|
2924
|
-
|
|
2925
|
-
:type: typing_extensions.Self
|
|
2926
|
-
"""
|
|
2927
|
-
|
|
2928
1578
|
yyxz: typing_extensions.Self
|
|
2929
|
-
"""
|
|
2930
|
-
|
|
2931
|
-
:type: typing_extensions.Self
|
|
2932
|
-
"""
|
|
2933
|
-
|
|
2934
1579
|
yyy: typing_extensions.Self
|
|
2935
|
-
"""
|
|
2936
|
-
|
|
2937
|
-
:type: typing_extensions.Self
|
|
2938
|
-
"""
|
|
2939
|
-
|
|
2940
1580
|
yyyw: typing_extensions.Self
|
|
2941
|
-
"""
|
|
2942
|
-
|
|
2943
|
-
:type: typing_extensions.Self
|
|
2944
|
-
"""
|
|
2945
|
-
|
|
2946
1581
|
yyyx: typing_extensions.Self
|
|
2947
|
-
"""
|
|
2948
|
-
|
|
2949
|
-
:type: typing_extensions.Self
|
|
2950
|
-
"""
|
|
2951
|
-
|
|
2952
1582
|
yyyy: typing_extensions.Self
|
|
2953
|
-
"""
|
|
2954
|
-
|
|
2955
|
-
:type: typing_extensions.Self
|
|
2956
|
-
"""
|
|
2957
|
-
|
|
2958
1583
|
yyyz: typing_extensions.Self
|
|
2959
|
-
"""
|
|
2960
|
-
|
|
2961
|
-
:type: typing_extensions.Self
|
|
2962
|
-
"""
|
|
2963
|
-
|
|
2964
1584
|
yyz: typing_extensions.Self
|
|
2965
|
-
"""
|
|
2966
|
-
|
|
2967
|
-
:type: typing_extensions.Self
|
|
2968
|
-
"""
|
|
2969
|
-
|
|
2970
1585
|
yyzw: typing_extensions.Self
|
|
2971
|
-
"""
|
|
2972
|
-
|
|
2973
|
-
:type: typing_extensions.Self
|
|
2974
|
-
"""
|
|
2975
|
-
|
|
2976
1586
|
yyzx: typing_extensions.Self
|
|
2977
|
-
"""
|
|
2978
|
-
|
|
2979
|
-
:type: typing_extensions.Self
|
|
2980
|
-
"""
|
|
2981
|
-
|
|
2982
1587
|
yyzy: typing_extensions.Self
|
|
2983
|
-
"""
|
|
2984
|
-
|
|
2985
|
-
:type: typing_extensions.Self
|
|
2986
|
-
"""
|
|
2987
|
-
|
|
2988
1588
|
yyzz: typing_extensions.Self
|
|
2989
|
-
"""
|
|
2990
|
-
|
|
2991
|
-
:type: typing_extensions.Self
|
|
2992
|
-
"""
|
|
2993
|
-
|
|
2994
1589
|
yz: typing_extensions.Self
|
|
2995
|
-
"""
|
|
2996
|
-
|
|
2997
|
-
:type: typing_extensions.Self
|
|
2998
|
-
"""
|
|
2999
|
-
|
|
3000
1590
|
yzw: typing_extensions.Self
|
|
3001
|
-
"""
|
|
3002
|
-
|
|
3003
|
-
:type: typing_extensions.Self
|
|
3004
|
-
"""
|
|
3005
|
-
|
|
3006
1591
|
yzww: typing_extensions.Self
|
|
3007
|
-
"""
|
|
3008
|
-
|
|
3009
|
-
:type: typing_extensions.Self
|
|
3010
|
-
"""
|
|
3011
|
-
|
|
3012
1592
|
yzwx: typing_extensions.Self
|
|
3013
|
-
"""
|
|
3014
|
-
|
|
3015
|
-
:type: typing_extensions.Self
|
|
3016
|
-
"""
|
|
3017
|
-
|
|
3018
1593
|
yzwy: typing_extensions.Self
|
|
3019
|
-
"""
|
|
3020
|
-
|
|
3021
|
-
:type: typing_extensions.Self
|
|
3022
|
-
"""
|
|
3023
|
-
|
|
3024
1594
|
yzwz: typing_extensions.Self
|
|
3025
|
-
"""
|
|
3026
|
-
|
|
3027
|
-
:type: typing_extensions.Self
|
|
3028
|
-
"""
|
|
3029
|
-
|
|
3030
1595
|
yzx: typing_extensions.Self
|
|
3031
|
-
"""
|
|
3032
|
-
|
|
3033
|
-
:type: typing_extensions.Self
|
|
3034
|
-
"""
|
|
3035
|
-
|
|
3036
1596
|
yzxw: typing_extensions.Self
|
|
3037
|
-
"""
|
|
3038
|
-
|
|
3039
|
-
:type: typing_extensions.Self
|
|
3040
|
-
"""
|
|
3041
|
-
|
|
3042
1597
|
yzxx: typing_extensions.Self
|
|
3043
|
-
"""
|
|
3044
|
-
|
|
3045
|
-
:type: typing_extensions.Self
|
|
3046
|
-
"""
|
|
3047
|
-
|
|
3048
1598
|
yzxy: typing_extensions.Self
|
|
3049
|
-
"""
|
|
3050
|
-
|
|
3051
|
-
:type: typing_extensions.Self
|
|
3052
|
-
"""
|
|
3053
|
-
|
|
3054
1599
|
yzxz: typing_extensions.Self
|
|
3055
|
-
"""
|
|
3056
|
-
|
|
3057
|
-
:type: typing_extensions.Self
|
|
3058
|
-
"""
|
|
3059
|
-
|
|
3060
1600
|
yzy: typing_extensions.Self
|
|
3061
|
-
"""
|
|
3062
|
-
|
|
3063
|
-
:type: typing_extensions.Self
|
|
3064
|
-
"""
|
|
3065
|
-
|
|
3066
1601
|
yzyw: typing_extensions.Self
|
|
3067
|
-
"""
|
|
3068
|
-
|
|
3069
|
-
:type: typing_extensions.Self
|
|
3070
|
-
"""
|
|
3071
|
-
|
|
3072
1602
|
yzyx: typing_extensions.Self
|
|
3073
|
-
"""
|
|
3074
|
-
|
|
3075
|
-
:type: typing_extensions.Self
|
|
3076
|
-
"""
|
|
3077
|
-
|
|
3078
1603
|
yzyy: typing_extensions.Self
|
|
3079
|
-
"""
|
|
3080
|
-
|
|
3081
|
-
:type: typing_extensions.Self
|
|
3082
|
-
"""
|
|
3083
|
-
|
|
3084
1604
|
yzyz: typing_extensions.Self
|
|
3085
|
-
"""
|
|
3086
|
-
|
|
3087
|
-
:type: typing_extensions.Self
|
|
3088
|
-
"""
|
|
3089
|
-
|
|
3090
1605
|
yzz: typing_extensions.Self
|
|
3091
|
-
"""
|
|
3092
|
-
|
|
3093
|
-
:type: typing_extensions.Self
|
|
3094
|
-
"""
|
|
3095
|
-
|
|
3096
1606
|
yzzw: typing_extensions.Self
|
|
3097
|
-
"""
|
|
3098
|
-
|
|
3099
|
-
:type: typing_extensions.Self
|
|
3100
|
-
"""
|
|
3101
|
-
|
|
3102
1607
|
yzzx: typing_extensions.Self
|
|
3103
|
-
"""
|
|
3104
|
-
|
|
3105
|
-
:type: typing_extensions.Self
|
|
3106
|
-
"""
|
|
3107
|
-
|
|
3108
1608
|
yzzy: typing_extensions.Self
|
|
3109
|
-
"""
|
|
3110
|
-
|
|
3111
|
-
:type: typing_extensions.Self
|
|
3112
|
-
"""
|
|
3113
|
-
|
|
3114
1609
|
yzzz: typing_extensions.Self
|
|
3115
|
-
"""
|
|
3116
|
-
|
|
3117
|
-
:type: typing_extensions.Self
|
|
3118
|
-
"""
|
|
3119
|
-
|
|
3120
1610
|
z: float
|
|
3121
|
-
""" Vector Z axis (3D Vectors only).
|
|
3122
|
-
|
|
3123
|
-
:type: float
|
|
3124
|
-
"""
|
|
1611
|
+
""" Vector Z axis (3D Vectors only)."""
|
|
3125
1612
|
|
|
3126
1613
|
zw: typing_extensions.Self
|
|
3127
|
-
"""
|
|
3128
|
-
|
|
3129
|
-
:type: typing_extensions.Self
|
|
3130
|
-
"""
|
|
3131
|
-
|
|
3132
1614
|
zww: typing_extensions.Self
|
|
3133
|
-
"""
|
|
3134
|
-
|
|
3135
|
-
:type: typing_extensions.Self
|
|
3136
|
-
"""
|
|
3137
|
-
|
|
3138
1615
|
zwww: typing_extensions.Self
|
|
3139
|
-
"""
|
|
3140
|
-
|
|
3141
|
-
:type: typing_extensions.Self
|
|
3142
|
-
"""
|
|
3143
|
-
|
|
3144
1616
|
zwwx: typing_extensions.Self
|
|
3145
|
-
"""
|
|
3146
|
-
|
|
3147
|
-
:type: typing_extensions.Self
|
|
3148
|
-
"""
|
|
3149
|
-
|
|
3150
1617
|
zwwy: typing_extensions.Self
|
|
3151
|
-
"""
|
|
3152
|
-
|
|
3153
|
-
:type: typing_extensions.Self
|
|
3154
|
-
"""
|
|
3155
|
-
|
|
3156
1618
|
zwwz: typing_extensions.Self
|
|
3157
|
-
"""
|
|
3158
|
-
|
|
3159
|
-
:type: typing_extensions.Self
|
|
3160
|
-
"""
|
|
3161
|
-
|
|
3162
1619
|
zwx: typing_extensions.Self
|
|
3163
|
-
"""
|
|
3164
|
-
|
|
3165
|
-
:type: typing_extensions.Self
|
|
3166
|
-
"""
|
|
3167
|
-
|
|
3168
1620
|
zwxw: typing_extensions.Self
|
|
3169
|
-
"""
|
|
3170
|
-
|
|
3171
|
-
:type: typing_extensions.Self
|
|
3172
|
-
"""
|
|
3173
|
-
|
|
3174
1621
|
zwxx: typing_extensions.Self
|
|
3175
|
-
"""
|
|
3176
|
-
|
|
3177
|
-
:type: typing_extensions.Self
|
|
3178
|
-
"""
|
|
3179
|
-
|
|
3180
1622
|
zwxy: typing_extensions.Self
|
|
3181
|
-
"""
|
|
3182
|
-
|
|
3183
|
-
:type: typing_extensions.Self
|
|
3184
|
-
"""
|
|
3185
|
-
|
|
3186
1623
|
zwxz: typing_extensions.Self
|
|
3187
|
-
"""
|
|
3188
|
-
|
|
3189
|
-
:type: typing_extensions.Self
|
|
3190
|
-
"""
|
|
3191
|
-
|
|
3192
1624
|
zwy: typing_extensions.Self
|
|
3193
|
-
"""
|
|
3194
|
-
|
|
3195
|
-
:type: typing_extensions.Self
|
|
3196
|
-
"""
|
|
3197
|
-
|
|
3198
1625
|
zwyw: typing_extensions.Self
|
|
3199
|
-
"""
|
|
3200
|
-
|
|
3201
|
-
:type: typing_extensions.Self
|
|
3202
|
-
"""
|
|
3203
|
-
|
|
3204
1626
|
zwyx: typing_extensions.Self
|
|
3205
|
-
"""
|
|
3206
|
-
|
|
3207
|
-
:type: typing_extensions.Self
|
|
3208
|
-
"""
|
|
3209
|
-
|
|
3210
1627
|
zwyy: typing_extensions.Self
|
|
3211
|
-
"""
|
|
3212
|
-
|
|
3213
|
-
:type: typing_extensions.Self
|
|
3214
|
-
"""
|
|
3215
|
-
|
|
3216
1628
|
zwyz: typing_extensions.Self
|
|
3217
|
-
"""
|
|
3218
|
-
|
|
3219
|
-
:type: typing_extensions.Self
|
|
3220
|
-
"""
|
|
3221
|
-
|
|
3222
1629
|
zwz: typing_extensions.Self
|
|
3223
|
-
"""
|
|
3224
|
-
|
|
3225
|
-
:type: typing_extensions.Self
|
|
3226
|
-
"""
|
|
3227
|
-
|
|
3228
1630
|
zwzw: typing_extensions.Self
|
|
3229
|
-
"""
|
|
3230
|
-
|
|
3231
|
-
:type: typing_extensions.Self
|
|
3232
|
-
"""
|
|
3233
|
-
|
|
3234
1631
|
zwzx: typing_extensions.Self
|
|
3235
|
-
"""
|
|
3236
|
-
|
|
3237
|
-
:type: typing_extensions.Self
|
|
3238
|
-
"""
|
|
3239
|
-
|
|
3240
1632
|
zwzy: typing_extensions.Self
|
|
3241
|
-
"""
|
|
3242
|
-
|
|
3243
|
-
:type: typing_extensions.Self
|
|
3244
|
-
"""
|
|
3245
|
-
|
|
3246
1633
|
zwzz: typing_extensions.Self
|
|
3247
|
-
"""
|
|
3248
|
-
|
|
3249
|
-
:type: typing_extensions.Self
|
|
3250
|
-
"""
|
|
3251
|
-
|
|
3252
1634
|
zx: typing_extensions.Self
|
|
3253
|
-
"""
|
|
3254
|
-
|
|
3255
|
-
:type: typing_extensions.Self
|
|
3256
|
-
"""
|
|
3257
|
-
|
|
3258
1635
|
zxw: typing_extensions.Self
|
|
3259
|
-
"""
|
|
3260
|
-
|
|
3261
|
-
:type: typing_extensions.Self
|
|
3262
|
-
"""
|
|
3263
|
-
|
|
3264
1636
|
zxww: typing_extensions.Self
|
|
3265
|
-
"""
|
|
3266
|
-
|
|
3267
|
-
:type: typing_extensions.Self
|
|
3268
|
-
"""
|
|
3269
|
-
|
|
3270
1637
|
zxwx: typing_extensions.Self
|
|
3271
|
-
"""
|
|
3272
|
-
|
|
3273
|
-
:type: typing_extensions.Self
|
|
3274
|
-
"""
|
|
3275
|
-
|
|
3276
1638
|
zxwy: typing_extensions.Self
|
|
3277
|
-
"""
|
|
3278
|
-
|
|
3279
|
-
:type: typing_extensions.Self
|
|
3280
|
-
"""
|
|
3281
|
-
|
|
3282
1639
|
zxwz: typing_extensions.Self
|
|
3283
|
-
"""
|
|
3284
|
-
|
|
3285
|
-
:type: typing_extensions.Self
|
|
3286
|
-
"""
|
|
3287
|
-
|
|
3288
1640
|
zxx: typing_extensions.Self
|
|
3289
|
-
"""
|
|
3290
|
-
|
|
3291
|
-
:type: typing_extensions.Self
|
|
3292
|
-
"""
|
|
3293
|
-
|
|
3294
1641
|
zxxw: typing_extensions.Self
|
|
3295
|
-
"""
|
|
3296
|
-
|
|
3297
|
-
:type: typing_extensions.Self
|
|
3298
|
-
"""
|
|
3299
|
-
|
|
3300
1642
|
zxxx: typing_extensions.Self
|
|
3301
|
-
"""
|
|
3302
|
-
|
|
3303
|
-
:type: typing_extensions.Self
|
|
3304
|
-
"""
|
|
3305
|
-
|
|
3306
1643
|
zxxy: typing_extensions.Self
|
|
3307
|
-
"""
|
|
3308
|
-
|
|
3309
|
-
:type: typing_extensions.Self
|
|
3310
|
-
"""
|
|
3311
|
-
|
|
3312
1644
|
zxxz: typing_extensions.Self
|
|
3313
|
-
"""
|
|
3314
|
-
|
|
3315
|
-
:type: typing_extensions.Self
|
|
3316
|
-
"""
|
|
3317
|
-
|
|
3318
1645
|
zxy: typing_extensions.Self
|
|
3319
|
-
"""
|
|
3320
|
-
|
|
3321
|
-
:type: typing_extensions.Self
|
|
3322
|
-
"""
|
|
3323
|
-
|
|
3324
1646
|
zxyw: typing_extensions.Self
|
|
3325
|
-
"""
|
|
3326
|
-
|
|
3327
|
-
:type: typing_extensions.Self
|
|
3328
|
-
"""
|
|
3329
|
-
|
|
3330
1647
|
zxyx: typing_extensions.Self
|
|
3331
|
-
"""
|
|
3332
|
-
|
|
3333
|
-
:type: typing_extensions.Self
|
|
3334
|
-
"""
|
|
3335
|
-
|
|
3336
1648
|
zxyy: typing_extensions.Self
|
|
3337
|
-
"""
|
|
3338
|
-
|
|
3339
|
-
:type: typing_extensions.Self
|
|
3340
|
-
"""
|
|
3341
|
-
|
|
3342
1649
|
zxyz: typing_extensions.Self
|
|
3343
|
-
"""
|
|
3344
|
-
|
|
3345
|
-
:type: typing_extensions.Self
|
|
3346
|
-
"""
|
|
3347
|
-
|
|
3348
1650
|
zxz: typing_extensions.Self
|
|
3349
|
-
"""
|
|
3350
|
-
|
|
3351
|
-
:type: typing_extensions.Self
|
|
3352
|
-
"""
|
|
3353
|
-
|
|
3354
1651
|
zxzw: typing_extensions.Self
|
|
3355
|
-
"""
|
|
3356
|
-
|
|
3357
|
-
:type: typing_extensions.Self
|
|
3358
|
-
"""
|
|
3359
|
-
|
|
3360
1652
|
zxzx: typing_extensions.Self
|
|
3361
|
-
"""
|
|
3362
|
-
|
|
3363
|
-
:type: typing_extensions.Self
|
|
3364
|
-
"""
|
|
3365
|
-
|
|
3366
1653
|
zxzy: typing_extensions.Self
|
|
3367
|
-
"""
|
|
3368
|
-
|
|
3369
|
-
:type: typing_extensions.Self
|
|
3370
|
-
"""
|
|
3371
|
-
|
|
3372
1654
|
zxzz: typing_extensions.Self
|
|
3373
|
-
"""
|
|
3374
|
-
|
|
3375
|
-
:type: typing_extensions.Self
|
|
3376
|
-
"""
|
|
3377
|
-
|
|
3378
1655
|
zy: typing_extensions.Self
|
|
3379
|
-
"""
|
|
3380
|
-
|
|
3381
|
-
:type: typing_extensions.Self
|
|
3382
|
-
"""
|
|
3383
|
-
|
|
3384
1656
|
zyw: typing_extensions.Self
|
|
3385
|
-
"""
|
|
3386
|
-
|
|
3387
|
-
:type: typing_extensions.Self
|
|
3388
|
-
"""
|
|
3389
|
-
|
|
3390
1657
|
zyww: typing_extensions.Self
|
|
3391
|
-
"""
|
|
3392
|
-
|
|
3393
|
-
:type: typing_extensions.Self
|
|
3394
|
-
"""
|
|
3395
|
-
|
|
3396
1658
|
zywx: typing_extensions.Self
|
|
3397
|
-
"""
|
|
3398
|
-
|
|
3399
|
-
:type: typing_extensions.Self
|
|
3400
|
-
"""
|
|
3401
|
-
|
|
3402
1659
|
zywy: typing_extensions.Self
|
|
3403
|
-
"""
|
|
3404
|
-
|
|
3405
|
-
:type: typing_extensions.Self
|
|
3406
|
-
"""
|
|
3407
|
-
|
|
3408
1660
|
zywz: typing_extensions.Self
|
|
3409
|
-
"""
|
|
3410
|
-
|
|
3411
|
-
:type: typing_extensions.Self
|
|
3412
|
-
"""
|
|
3413
|
-
|
|
3414
1661
|
zyx: typing_extensions.Self
|
|
3415
|
-
"""
|
|
3416
|
-
|
|
3417
|
-
:type: typing_extensions.Self
|
|
3418
|
-
"""
|
|
3419
|
-
|
|
3420
1662
|
zyxw: typing_extensions.Self
|
|
3421
|
-
"""
|
|
3422
|
-
|
|
3423
|
-
:type: typing_extensions.Self
|
|
3424
|
-
"""
|
|
3425
|
-
|
|
3426
1663
|
zyxx: typing_extensions.Self
|
|
3427
|
-
"""
|
|
3428
|
-
|
|
3429
|
-
:type: typing_extensions.Self
|
|
3430
|
-
"""
|
|
3431
|
-
|
|
3432
1664
|
zyxy: typing_extensions.Self
|
|
3433
|
-
"""
|
|
3434
|
-
|
|
3435
|
-
:type: typing_extensions.Self
|
|
3436
|
-
"""
|
|
3437
|
-
|
|
3438
1665
|
zyxz: typing_extensions.Self
|
|
3439
|
-
"""
|
|
3440
|
-
|
|
3441
|
-
:type: typing_extensions.Self
|
|
3442
|
-
"""
|
|
3443
|
-
|
|
3444
1666
|
zyy: typing_extensions.Self
|
|
3445
|
-
"""
|
|
3446
|
-
|
|
3447
|
-
:type: typing_extensions.Self
|
|
3448
|
-
"""
|
|
3449
|
-
|
|
3450
1667
|
zyyw: typing_extensions.Self
|
|
3451
|
-
"""
|
|
3452
|
-
|
|
3453
|
-
:type: typing_extensions.Self
|
|
3454
|
-
"""
|
|
3455
|
-
|
|
3456
1668
|
zyyx: typing_extensions.Self
|
|
3457
|
-
"""
|
|
3458
|
-
|
|
3459
|
-
:type: typing_extensions.Self
|
|
3460
|
-
"""
|
|
3461
|
-
|
|
3462
1669
|
zyyy: typing_extensions.Self
|
|
3463
|
-
"""
|
|
3464
|
-
|
|
3465
|
-
:type: typing_extensions.Self
|
|
3466
|
-
"""
|
|
3467
|
-
|
|
3468
1670
|
zyyz: typing_extensions.Self
|
|
3469
|
-
"""
|
|
3470
|
-
|
|
3471
|
-
:type: typing_extensions.Self
|
|
3472
|
-
"""
|
|
3473
|
-
|
|
3474
1671
|
zyz: typing_extensions.Self
|
|
3475
|
-
"""
|
|
3476
|
-
|
|
3477
|
-
:type: typing_extensions.Self
|
|
3478
|
-
"""
|
|
3479
|
-
|
|
3480
1672
|
zyzw: typing_extensions.Self
|
|
3481
|
-
"""
|
|
3482
|
-
|
|
3483
|
-
:type: typing_extensions.Self
|
|
3484
|
-
"""
|
|
3485
|
-
|
|
3486
1673
|
zyzx: typing_extensions.Self
|
|
3487
|
-
"""
|
|
3488
|
-
|
|
3489
|
-
:type: typing_extensions.Self
|
|
3490
|
-
"""
|
|
3491
|
-
|
|
3492
1674
|
zyzy: typing_extensions.Self
|
|
3493
|
-
"""
|
|
3494
|
-
|
|
3495
|
-
:type: typing_extensions.Self
|
|
3496
|
-
"""
|
|
3497
|
-
|
|
3498
1675
|
zyzz: typing_extensions.Self
|
|
3499
|
-
"""
|
|
3500
|
-
|
|
3501
|
-
:type: typing_extensions.Self
|
|
3502
|
-
"""
|
|
3503
|
-
|
|
3504
1676
|
zz: typing_extensions.Self
|
|
3505
|
-
"""
|
|
3506
|
-
|
|
3507
|
-
:type: typing_extensions.Self
|
|
3508
|
-
"""
|
|
3509
|
-
|
|
3510
1677
|
zzw: typing_extensions.Self
|
|
3511
|
-
"""
|
|
3512
|
-
|
|
3513
|
-
:type: typing_extensions.Self
|
|
3514
|
-
"""
|
|
3515
|
-
|
|
3516
1678
|
zzww: typing_extensions.Self
|
|
3517
|
-
"""
|
|
3518
|
-
|
|
3519
|
-
:type: typing_extensions.Self
|
|
3520
|
-
"""
|
|
3521
|
-
|
|
3522
1679
|
zzwx: typing_extensions.Self
|
|
3523
|
-
"""
|
|
3524
|
-
|
|
3525
|
-
:type: typing_extensions.Self
|
|
3526
|
-
"""
|
|
3527
|
-
|
|
3528
1680
|
zzwy: typing_extensions.Self
|
|
3529
|
-
"""
|
|
3530
|
-
|
|
3531
|
-
:type: typing_extensions.Self
|
|
3532
|
-
"""
|
|
3533
|
-
|
|
3534
1681
|
zzwz: typing_extensions.Self
|
|
3535
|
-
"""
|
|
3536
|
-
|
|
3537
|
-
:type: typing_extensions.Self
|
|
3538
|
-
"""
|
|
3539
|
-
|
|
3540
1682
|
zzx: typing_extensions.Self
|
|
3541
|
-
"""
|
|
3542
|
-
|
|
3543
|
-
:type: typing_extensions.Self
|
|
3544
|
-
"""
|
|
3545
|
-
|
|
3546
1683
|
zzxw: typing_extensions.Self
|
|
3547
|
-
"""
|
|
3548
|
-
|
|
3549
|
-
:type: typing_extensions.Self
|
|
3550
|
-
"""
|
|
3551
|
-
|
|
3552
1684
|
zzxx: typing_extensions.Self
|
|
3553
|
-
"""
|
|
3554
|
-
|
|
3555
|
-
:type: typing_extensions.Self
|
|
3556
|
-
"""
|
|
3557
|
-
|
|
3558
1685
|
zzxy: typing_extensions.Self
|
|
3559
|
-
"""
|
|
3560
|
-
|
|
3561
|
-
:type: typing_extensions.Self
|
|
3562
|
-
"""
|
|
3563
|
-
|
|
3564
1686
|
zzxz: typing_extensions.Self
|
|
3565
|
-
"""
|
|
3566
|
-
|
|
3567
|
-
:type: typing_extensions.Self
|
|
3568
|
-
"""
|
|
3569
|
-
|
|
3570
1687
|
zzy: typing_extensions.Self
|
|
3571
|
-
"""
|
|
3572
|
-
|
|
3573
|
-
:type: typing_extensions.Self
|
|
3574
|
-
"""
|
|
3575
|
-
|
|
3576
1688
|
zzyw: typing_extensions.Self
|
|
3577
|
-
"""
|
|
3578
|
-
|
|
3579
|
-
:type: typing_extensions.Self
|
|
3580
|
-
"""
|
|
3581
|
-
|
|
3582
1689
|
zzyx: typing_extensions.Self
|
|
3583
|
-
"""
|
|
3584
|
-
|
|
3585
|
-
:type: typing_extensions.Self
|
|
3586
|
-
"""
|
|
3587
|
-
|
|
3588
1690
|
zzyy: typing_extensions.Self
|
|
3589
|
-
"""
|
|
3590
|
-
|
|
3591
|
-
:type: typing_extensions.Self
|
|
3592
|
-
"""
|
|
3593
|
-
|
|
3594
1691
|
zzyz: typing_extensions.Self
|
|
3595
|
-
"""
|
|
3596
|
-
|
|
3597
|
-
:type: typing_extensions.Self
|
|
3598
|
-
"""
|
|
3599
|
-
|
|
3600
1692
|
zzz: typing_extensions.Self
|
|
3601
|
-
"""
|
|
3602
|
-
|
|
3603
|
-
:type: typing_extensions.Self
|
|
3604
|
-
"""
|
|
3605
|
-
|
|
3606
1693
|
zzzw: typing_extensions.Self
|
|
3607
|
-
"""
|
|
3608
|
-
|
|
3609
|
-
:type: typing_extensions.Self
|
|
3610
|
-
"""
|
|
3611
|
-
|
|
3612
1694
|
zzzx: typing_extensions.Self
|
|
3613
|
-
"""
|
|
3614
|
-
|
|
3615
|
-
:type: typing_extensions.Self
|
|
3616
|
-
"""
|
|
3617
|
-
|
|
3618
1695
|
zzzy: typing_extensions.Self
|
|
3619
|
-
"""
|
|
3620
|
-
|
|
3621
|
-
:type: typing_extensions.Self
|
|
3622
|
-
"""
|
|
3623
|
-
|
|
3624
1696
|
zzzz: typing_extensions.Self
|
|
3625
|
-
"""
|
|
3626
|
-
|
|
3627
|
-
:type: typing_extensions.Self
|
|
3628
|
-
"""
|
|
3629
1697
|
|
|
3630
1698
|
@classmethod
|
|
3631
|
-
def Fill(
|
|
1699
|
+
def Fill(
|
|
1700
|
+
cls,
|
|
1701
|
+
size: int,
|
|
1702
|
+
fill: float = 0.0,
|
|
1703
|
+
/,
|
|
1704
|
+
) -> typing_extensions.Self:
|
|
3632
1705
|
"""Create a vector of length size with all values set to fill.
|
|
3633
1706
|
|
|
3634
1707
|
:param size: The length of the vector to be created.
|
|
3635
|
-
:type size: int
|
|
3636
1708
|
:param fill: The value used to fill the vector.
|
|
3637
|
-
:
|
|
1709
|
+
:return: A new vector.
|
|
3638
1710
|
"""
|
|
3639
1711
|
|
|
3640
1712
|
@classmethod
|
|
3641
|
-
def Linspace(
|
|
1713
|
+
def Linspace(
|
|
1714
|
+
cls,
|
|
1715
|
+
start: float,
|
|
1716
|
+
stop: float,
|
|
1717
|
+
size: int,
|
|
1718
|
+
/,
|
|
1719
|
+
) -> typing_extensions.Self:
|
|
3642
1720
|
"""Create a vector of the specified size which is filled with linearly spaced values between start and stop values.
|
|
3643
1721
|
|
|
3644
1722
|
:param start: The start of the range used to fill the vector.
|
|
3645
|
-
:type start: int
|
|
3646
1723
|
:param stop: The end of the range used to fill the vector.
|
|
3647
|
-
:type stop: int
|
|
3648
1724
|
:param size: The size of the vector to be created.
|
|
3649
|
-
:
|
|
1725
|
+
:return: A new vector.
|
|
3650
1726
|
"""
|
|
3651
1727
|
|
|
3652
1728
|
@classmethod
|
|
3653
|
-
def Range(
|
|
3654
|
-
|
|
1729
|
+
def Range(
|
|
1730
|
+
cls,
|
|
1731
|
+
start: int,
|
|
1732
|
+
stop: int,
|
|
1733
|
+
step: int = 1,
|
|
1734
|
+
/,
|
|
1735
|
+
) -> typing_extensions.Self:
|
|
1736
|
+
"""Create a vector filled with a range of values.
|
|
3655
1737
|
|
|
3656
1738
|
:param start: The start of the range used to fill the vector.
|
|
3657
|
-
:type start: int
|
|
3658
1739
|
:param stop: The end of the range used to fill the vector.
|
|
3659
|
-
:type stop: int
|
|
3660
1740
|
:param step: The step between successive values in the vector.
|
|
3661
|
-
:
|
|
1741
|
+
:return: A new vector.
|
|
3662
1742
|
"""
|
|
3663
1743
|
|
|
3664
1744
|
@classmethod
|
|
3665
1745
|
def Repeat(
|
|
3666
|
-
cls,
|
|
3667
|
-
|
|
1746
|
+
cls,
|
|
1747
|
+
vector: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1748
|
+
size: int,
|
|
1749
|
+
/,
|
|
1750
|
+
) -> typing_extensions.Self:
|
|
3668
1751
|
"""Create a vector by repeating the values in vector until the required size is reached.
|
|
3669
1752
|
|
|
3670
1753
|
:param vector: The vector to draw values from.
|
|
3671
|
-
:type vector: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3672
1754
|
:param size: The size of the vector to be created.
|
|
3673
|
-
:
|
|
1755
|
+
:return: A new vector.
|
|
3674
1756
|
"""
|
|
3675
1757
|
|
|
3676
1758
|
def angle(
|
|
3677
1759
|
self,
|
|
3678
1760
|
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3679
1761
|
fallback: typing.Any | None = None,
|
|
1762
|
+
/,
|
|
3680
1763
|
) -> float | typing.Any:
|
|
3681
1764
|
"""Return the angle between two vectors.
|
|
3682
1765
|
|
|
3683
1766
|
:param other: another vector to compare the angle with
|
|
3684
|
-
:
|
|
3685
|
-
:param fallback: return this when the angle can't be calculated (zero length vector),
|
|
1767
|
+
:param fallback: return this when the angle cant be calculated (zero length vector),
|
|
3686
1768
|
(instead of raising a `ValueError`).
|
|
3687
|
-
:type fallback: typing.Any | None
|
|
3688
1769
|
:return: angle in radians or fallback when given
|
|
3689
|
-
:rtype: float | typing.Any
|
|
3690
1770
|
"""
|
|
3691
1771
|
|
|
3692
1772
|
def angle_signed(
|
|
3693
1773
|
self,
|
|
3694
1774
|
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3695
1775
|
fallback: typing.Any | None = None,
|
|
1776
|
+
/,
|
|
3696
1777
|
) -> float | typing.Any:
|
|
3697
1778
|
"""Return the signed angle between two 2D vectors (clockwise is positive).
|
|
3698
1779
|
|
|
3699
1780
|
:param other: another vector to compare the angle with
|
|
3700
|
-
:
|
|
3701
|
-
:param fallback: return this when the angle can't be calculated (zero length vector),
|
|
1781
|
+
:param fallback: return this when the angle cant be calculated (zero length vector),
|
|
3702
1782
|
(instead of raising a `ValueError`).
|
|
3703
|
-
:type fallback: typing.Any | None
|
|
3704
1783
|
:return: angle in radians or fallback when given
|
|
3705
|
-
:rtype: float | typing.Any
|
|
3706
1784
|
"""
|
|
3707
1785
|
|
|
3708
1786
|
def copy(self) -> typing_extensions.Self:
|
|
3709
1787
|
"""Returns a copy of this vector.
|
|
3710
1788
|
|
|
3711
1789
|
:return: A copy of the vector.
|
|
3712
|
-
:rtype: typing_extensions.Self
|
|
3713
1790
|
"""
|
|
3714
1791
|
|
|
3715
1792
|
def cross(
|
|
3716
|
-
self,
|
|
1793
|
+
self,
|
|
1794
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1795
|
+
/,
|
|
3717
1796
|
) -> float | typing_extensions.Self:
|
|
3718
1797
|
"""Return the cross product of this vector and another.
|
|
3719
1798
|
|
|
3720
1799
|
:param other: The other vector to perform the cross product with.
|
|
3721
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3722
1800
|
:return: The cross product as a vector or a float when 2D vectors are used.
|
|
3723
|
-
:rtype: float | typing_extensions.Self
|
|
3724
1801
|
"""
|
|
3725
1802
|
|
|
3726
1803
|
def dot(
|
|
3727
|
-
self,
|
|
1804
|
+
self,
|
|
1805
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1806
|
+
/,
|
|
3728
1807
|
) -> float:
|
|
3729
1808
|
"""Return the dot product of this vector and another.
|
|
3730
1809
|
|
|
3731
1810
|
:param other: The other vector to perform the dot product with.
|
|
3732
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3733
1811
|
:return: The dot product.
|
|
3734
|
-
:rtype: float
|
|
3735
1812
|
"""
|
|
3736
1813
|
|
|
3737
1814
|
def freeze(self) -> typing_extensions.Self:
|
|
3738
1815
|
"""Make this object immutable.After this the object can be hashed, used in dictionaries & sets.
|
|
3739
1816
|
|
|
3740
1817
|
:return: An instance of this object.
|
|
3741
|
-
:rtype: typing_extensions.Self
|
|
3742
1818
|
"""
|
|
3743
1819
|
|
|
3744
1820
|
def lerp(
|
|
3745
1821
|
self,
|
|
3746
1822
|
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3747
1823
|
factor: float,
|
|
1824
|
+
/,
|
|
3748
1825
|
) -> typing_extensions.Self:
|
|
3749
1826
|
"""Returns the interpolation of two vectors.
|
|
3750
1827
|
|
|
3751
1828
|
:param other: value to interpolate with.
|
|
3752
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3753
1829
|
:param factor: The interpolation value in [0.0, 1.0].
|
|
3754
|
-
:type factor: float
|
|
3755
1830
|
:return: The interpolated vector.
|
|
3756
|
-
:rtype: typing_extensions.Self
|
|
3757
1831
|
"""
|
|
3758
1832
|
|
|
3759
1833
|
def negate(self) -> None:
|
|
@@ -3766,59 +1840,64 @@ class Vector:
|
|
|
3766
1840
|
"""Return a new, normalized vector.
|
|
3767
1841
|
|
|
3768
1842
|
:return: a normalized copy of the vector
|
|
3769
|
-
:rtype: typing_extensions.Self
|
|
3770
1843
|
"""
|
|
3771
1844
|
|
|
3772
1845
|
def orthogonal(self) -> typing_extensions.Self:
|
|
3773
1846
|
"""Return a perpendicular vector.
|
|
3774
1847
|
|
|
3775
1848
|
:return: a new vector 90 degrees from this vector.
|
|
3776
|
-
:rtype: typing_extensions.Self
|
|
3777
1849
|
"""
|
|
3778
1850
|
|
|
3779
1851
|
def project(
|
|
3780
|
-
self,
|
|
1852
|
+
self,
|
|
1853
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1854
|
+
/,
|
|
3781
1855
|
) -> typing_extensions.Self:
|
|
3782
1856
|
"""Return the projection of this vector onto the other.
|
|
3783
1857
|
|
|
3784
1858
|
:param other: second vector.
|
|
3785
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3786
1859
|
:return: the parallel projection vector
|
|
3787
|
-
:rtype: typing_extensions.Self
|
|
3788
1860
|
"""
|
|
3789
1861
|
|
|
3790
1862
|
def reflect(
|
|
3791
|
-
self,
|
|
1863
|
+
self,
|
|
1864
|
+
mirror: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1865
|
+
/,
|
|
3792
1866
|
) -> typing_extensions.Self:
|
|
3793
1867
|
"""Return the reflection vector from the mirror argument.
|
|
3794
1868
|
|
|
3795
1869
|
:param mirror: This vector could be a normal from the reflecting surface.
|
|
3796
|
-
:type mirror: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3797
1870
|
:return: The reflected vector matching the size of this vector.
|
|
3798
|
-
:rtype: typing_extensions.Self
|
|
3799
1871
|
"""
|
|
3800
1872
|
|
|
3801
|
-
def resize(
|
|
1873
|
+
def resize(
|
|
1874
|
+
self,
|
|
1875
|
+
size: int,
|
|
1876
|
+
/,
|
|
1877
|
+
) -> None:
|
|
3802
1878
|
"""Resize the vector to have size number of elements.
|
|
3803
1879
|
|
|
3804
|
-
:param size:
|
|
1880
|
+
:param size: The new size of the vector.
|
|
3805
1881
|
"""
|
|
3806
1882
|
|
|
3807
1883
|
def resize_2d(self) -> None:
|
|
3808
|
-
"""Resize the vector to 2D
|
|
1884
|
+
"""Resize the vector to 2D (x, y)."""
|
|
3809
1885
|
|
|
3810
1886
|
def resize_3d(self) -> None:
|
|
3811
|
-
"""Resize the vector to 3D
|
|
1887
|
+
"""Resize the vector to 3D (x, y, z)."""
|
|
3812
1888
|
|
|
3813
1889
|
def resize_4d(self) -> None:
|
|
3814
1890
|
"""Resize the vector to 4D (x, y, z, w)."""
|
|
3815
1891
|
|
|
3816
|
-
def resized(
|
|
1892
|
+
def resized(
|
|
1893
|
+
self,
|
|
1894
|
+
size: int,
|
|
1895
|
+
/,
|
|
1896
|
+
) -> typing_extensions.Self:
|
|
3817
1897
|
"""Return a resized copy of the vector with size number of elements.
|
|
3818
1898
|
|
|
3819
|
-
:param size:
|
|
3820
|
-
:return:
|
|
3821
|
-
:rtype: typing_extensions.Self
|
|
1899
|
+
:param size: The new size of the vector.
|
|
1900
|
+
:return: A new vector.
|
|
3822
1901
|
"""
|
|
3823
1902
|
|
|
3824
1903
|
def rotate(
|
|
@@ -3828,23 +1907,23 @@ class Vector:
|
|
|
3828
1907
|
| Quaternion
|
|
3829
1908
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
3830
1909
|
| collections.abc.Sequence[float],
|
|
1910
|
+
/,
|
|
3831
1911
|
) -> None:
|
|
3832
1912
|
"""Rotate the vector by a rotation value.
|
|
3833
1913
|
|
|
3834
1914
|
:param other: rotation component of mathutils value
|
|
3835
|
-
:type other: Euler | Matrix | Quaternion | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float]
|
|
3836
1915
|
"""
|
|
3837
1916
|
|
|
3838
1917
|
def rotation_difference(
|
|
3839
|
-
self,
|
|
1918
|
+
self,
|
|
1919
|
+
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
1920
|
+
/,
|
|
3840
1921
|
) -> Quaternion:
|
|
3841
1922
|
"""Returns a quaternion representing the rotational difference between this
|
|
3842
1923
|
vector and another.
|
|
3843
1924
|
|
|
3844
1925
|
:param other: second vector.
|
|
3845
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3846
1926
|
:return: the rotational difference between the two vectors.
|
|
3847
|
-
:rtype: Quaternion
|
|
3848
1927
|
"""
|
|
3849
1928
|
|
|
3850
1929
|
def slerp(
|
|
@@ -3852,59 +1931,57 @@ class Vector:
|
|
|
3852
1931
|
other: collections.abc.Sequence[float] | typing_extensions.Self,
|
|
3853
1932
|
factor: float,
|
|
3854
1933
|
fallback: typing.Any | None = None,
|
|
1934
|
+
/,
|
|
3855
1935
|
) -> typing_extensions.Self:
|
|
3856
1936
|
"""Returns the interpolation of two non-zero vectors (spherical coordinates).
|
|
3857
1937
|
|
|
3858
1938
|
:param other: value to interpolate with.
|
|
3859
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3860
1939
|
:param factor: The interpolation value typically in [0.0, 1.0].
|
|
3861
|
-
:
|
|
3862
|
-
:param fallback: return this when the vector can't be calculated (zero length vector or direct opposites),
|
|
1940
|
+
:param fallback: return this when the vector cant be calculated (zero length vector or direct opposites),
|
|
3863
1941
|
(instead of raising a `ValueError`).
|
|
3864
|
-
:type fallback: typing.Any | None
|
|
3865
1942
|
:return: The interpolated vector.
|
|
3866
|
-
:rtype: typing_extensions.Self
|
|
3867
1943
|
"""
|
|
3868
1944
|
|
|
3869
1945
|
def to_2d(self) -> typing_extensions.Self:
|
|
3870
1946
|
"""Return a 2d copy of the vector.
|
|
3871
1947
|
|
|
3872
1948
|
:return: a new vector
|
|
3873
|
-
:rtype: typing_extensions.Self
|
|
3874
1949
|
"""
|
|
3875
1950
|
|
|
3876
1951
|
def to_3d(self) -> typing_extensions.Self:
|
|
3877
1952
|
"""Return a 3d copy of the vector.
|
|
3878
1953
|
|
|
3879
1954
|
:return: a new vector
|
|
3880
|
-
:rtype: typing_extensions.Self
|
|
3881
1955
|
"""
|
|
3882
1956
|
|
|
3883
1957
|
def to_4d(self) -> typing_extensions.Self:
|
|
3884
1958
|
"""Return a 4d copy of the vector.
|
|
3885
1959
|
|
|
3886
1960
|
:return: a new vector
|
|
3887
|
-
:rtype: typing_extensions.Self
|
|
3888
1961
|
"""
|
|
3889
1962
|
|
|
3890
|
-
def to_track_quat(
|
|
1963
|
+
def to_track_quat(
|
|
1964
|
+
self,
|
|
1965
|
+
track: typing.Literal["-", "X", "Y", "Z", "-X", "-Y", "-Z"] = "Z",
|
|
1966
|
+
up: typing.Literal["X", "Y", "Z"] = "Y",
|
|
1967
|
+
/,
|
|
1968
|
+
) -> Quaternion:
|
|
3891
1969
|
"""Return a quaternion rotation from the vector and the track and up axis.
|
|
3892
1970
|
|
|
3893
|
-
:param track: Track axis
|
|
3894
|
-
:
|
|
3895
|
-
:param up: Up axis in ['X', 'Y', 'Z'].
|
|
3896
|
-
:type up: str
|
|
1971
|
+
:param track: Track axis string.
|
|
1972
|
+
:param up: Up axis string.
|
|
3897
1973
|
:return: rotation from the vector and the track and up axis.
|
|
3898
|
-
:rtype: Quaternion
|
|
3899
1974
|
"""
|
|
3900
1975
|
|
|
3901
|
-
def to_tuple(
|
|
3902
|
-
|
|
1976
|
+
def to_tuple(
|
|
1977
|
+
self,
|
|
1978
|
+
precision: int = -1,
|
|
1979
|
+
/,
|
|
1980
|
+
) -> tuple[float, ...]:
|
|
1981
|
+
"""Return this vector as a tuple with a given precision.
|
|
3903
1982
|
|
|
3904
1983
|
:param precision: The number to round the value to in [-1, 21].
|
|
3905
|
-
:type precision: int
|
|
3906
1984
|
:return: the values of the vector rounded by precision
|
|
3907
|
-
:rtype: tuple[float, ...]
|
|
3908
1985
|
"""
|
|
3909
1986
|
|
|
3910
1987
|
def zero(self) -> None:
|
|
@@ -3914,7 +1991,6 @@ class Vector:
|
|
|
3914
1991
|
"""
|
|
3915
1992
|
|
|
3916
1993
|
:param seq:
|
|
3917
|
-
:type seq: collections.abc.Sequence[float]
|
|
3918
1994
|
"""
|
|
3919
1995
|
|
|
3920
1996
|
def __get__(self, instance, owner) -> typing_extensions.Self:
|
|
@@ -3923,7 +1999,6 @@ class Vector:
|
|
|
3923
1999
|
:param instance:
|
|
3924
2000
|
:param owner:
|
|
3925
2001
|
:return:
|
|
3926
|
-
:rtype: typing_extensions.Self
|
|
3927
2002
|
"""
|
|
3928
2003
|
|
|
3929
2004
|
def __set__(
|
|
@@ -3933,14 +2008,12 @@ class Vector:
|
|
|
3933
2008
|
|
|
3934
2009
|
:param instance:
|
|
3935
2010
|
:param value:
|
|
3936
|
-
:type value: collections.abc.Sequence[float] | typing_extensions.Self
|
|
3937
2011
|
"""
|
|
3938
2012
|
|
|
3939
2013
|
def __len__(self) -> int:
|
|
3940
2014
|
"""
|
|
3941
2015
|
|
|
3942
2016
|
:return:
|
|
3943
|
-
:rtype: int
|
|
3944
2017
|
"""
|
|
3945
2018
|
|
|
3946
2019
|
@typing.overload
|
|
@@ -3948,9 +2021,7 @@ class Vector:
|
|
|
3948
2021
|
"""
|
|
3949
2022
|
|
|
3950
2023
|
:param key:
|
|
3951
|
-
:type key: int
|
|
3952
2024
|
:return:
|
|
3953
|
-
:rtype: float
|
|
3954
2025
|
"""
|
|
3955
2026
|
|
|
3956
2027
|
@typing.overload
|
|
@@ -3958,9 +2029,7 @@ class Vector:
|
|
|
3958
2029
|
"""
|
|
3959
2030
|
|
|
3960
2031
|
:param key:
|
|
3961
|
-
:type key: slice
|
|
3962
2032
|
:return:
|
|
3963
|
-
:rtype: tuple[float, ...]
|
|
3964
2033
|
"""
|
|
3965
2034
|
|
|
3966
2035
|
@typing.overload
|
|
@@ -3968,9 +2037,7 @@ class Vector:
|
|
|
3968
2037
|
"""
|
|
3969
2038
|
|
|
3970
2039
|
:param key:
|
|
3971
|
-
:type key: int
|
|
3972
2040
|
:param value:
|
|
3973
|
-
:type value: float
|
|
3974
2041
|
"""
|
|
3975
2042
|
|
|
3976
2043
|
@typing.overload
|
|
@@ -3980,16 +2047,13 @@ class Vector:
|
|
|
3980
2047
|
"""
|
|
3981
2048
|
|
|
3982
2049
|
:param key:
|
|
3983
|
-
:type key: slice
|
|
3984
2050
|
:param value:
|
|
3985
|
-
:type value: collections.abc.Iterable[float] | Vector
|
|
3986
2051
|
"""
|
|
3987
2052
|
|
|
3988
2053
|
def __neg__(self) -> typing_extensions.Self:
|
|
3989
2054
|
"""
|
|
3990
2055
|
|
|
3991
2056
|
:return:
|
|
3992
|
-
:rtype: typing_extensions.Self
|
|
3993
2057
|
"""
|
|
3994
2058
|
|
|
3995
2059
|
def __add__(
|
|
@@ -3998,9 +2062,7 @@ class Vector:
|
|
|
3998
2062
|
"""
|
|
3999
2063
|
|
|
4000
2064
|
:param other:
|
|
4001
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4002
2065
|
:return:
|
|
4003
|
-
:rtype: typing_extensions.Self
|
|
4004
2066
|
"""
|
|
4005
2067
|
|
|
4006
2068
|
def __sub__(
|
|
@@ -4009,9 +2071,7 @@ class Vector:
|
|
|
4009
2071
|
"""
|
|
4010
2072
|
|
|
4011
2073
|
:param other:
|
|
4012
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4013
2074
|
:return:
|
|
4014
|
-
:rtype: typing_extensions.Self
|
|
4015
2075
|
"""
|
|
4016
2076
|
|
|
4017
2077
|
@typing.overload
|
|
@@ -4019,9 +2079,7 @@ class Vector:
|
|
|
4019
2079
|
"""
|
|
4020
2080
|
|
|
4021
2081
|
:param other:
|
|
4022
|
-
:type other: float
|
|
4023
2082
|
:return:
|
|
4024
|
-
:rtype: typing_extensions.Self
|
|
4025
2083
|
"""
|
|
4026
2084
|
|
|
4027
2085
|
@typing.overload
|
|
@@ -4031,18 +2089,14 @@ class Vector:
|
|
|
4031
2089
|
"""
|
|
4032
2090
|
|
|
4033
2091
|
:param other:
|
|
4034
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4035
2092
|
:return:
|
|
4036
|
-
:rtype: typing_extensions.Self
|
|
4037
2093
|
"""
|
|
4038
2094
|
|
|
4039
2095
|
def __truediv__(self, other: float) -> typing_extensions.Self:
|
|
4040
2096
|
"""
|
|
4041
2097
|
|
|
4042
2098
|
:param other:
|
|
4043
|
-
:type other: float
|
|
4044
2099
|
:return:
|
|
4045
|
-
:rtype: typing_extensions.Self
|
|
4046
2100
|
"""
|
|
4047
2101
|
|
|
4048
2102
|
@typing.overload
|
|
@@ -4052,9 +2106,7 @@ class Vector:
|
|
|
4052
2106
|
"""
|
|
4053
2107
|
|
|
4054
2108
|
:param other:
|
|
4055
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4056
2109
|
:return:
|
|
4057
|
-
:rtype: float
|
|
4058
2110
|
"""
|
|
4059
2111
|
|
|
4060
2112
|
@typing.overload
|
|
@@ -4064,9 +2116,7 @@ class Vector:
|
|
|
4064
2116
|
"""
|
|
4065
2117
|
|
|
4066
2118
|
:param other:
|
|
4067
|
-
:type other: Matrix | collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
4068
2119
|
:return:
|
|
4069
|
-
:rtype: typing_extensions.Self
|
|
4070
2120
|
"""
|
|
4071
2121
|
|
|
4072
2122
|
def __radd__(
|
|
@@ -4075,9 +2125,7 @@ class Vector:
|
|
|
4075
2125
|
"""
|
|
4076
2126
|
|
|
4077
2127
|
:param other:
|
|
4078
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4079
2128
|
:return:
|
|
4080
|
-
:rtype: typing_extensions.Self
|
|
4081
2129
|
"""
|
|
4082
2130
|
|
|
4083
2131
|
def __rsub__(
|
|
@@ -4086,27 +2134,21 @@ class Vector:
|
|
|
4086
2134
|
"""
|
|
4087
2135
|
|
|
4088
2136
|
:param other:
|
|
4089
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4090
2137
|
:return:
|
|
4091
|
-
:rtype: typing_extensions.Self
|
|
4092
2138
|
"""
|
|
4093
2139
|
|
|
4094
2140
|
def __rmul__(self, other: float) -> typing_extensions.Self:
|
|
4095
2141
|
"""
|
|
4096
2142
|
|
|
4097
2143
|
:param other:
|
|
4098
|
-
:type other: float
|
|
4099
2144
|
:return:
|
|
4100
|
-
:rtype: typing_extensions.Self
|
|
4101
2145
|
"""
|
|
4102
2146
|
|
|
4103
2147
|
def __rtruediv__(self, other: float) -> typing_extensions.Self:
|
|
4104
2148
|
"""
|
|
4105
2149
|
|
|
4106
2150
|
:param other:
|
|
4107
|
-
:type other: float
|
|
4108
2151
|
:return:
|
|
4109
|
-
:rtype: typing_extensions.Self
|
|
4110
2152
|
"""
|
|
4111
2153
|
|
|
4112
2154
|
def __iadd__(
|
|
@@ -4115,9 +2157,7 @@ class Vector:
|
|
|
4115
2157
|
"""
|
|
4116
2158
|
|
|
4117
2159
|
:param other:
|
|
4118
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4119
2160
|
:return:
|
|
4120
|
-
:rtype: typing_extensions.Self
|
|
4121
2161
|
"""
|
|
4122
2162
|
|
|
4123
2163
|
def __isub__(
|
|
@@ -4126,25 +2166,19 @@ class Vector:
|
|
|
4126
2166
|
"""
|
|
4127
2167
|
|
|
4128
2168
|
:param other:
|
|
4129
|
-
:type other: collections.abc.Sequence[float] | typing_extensions.Self
|
|
4130
2169
|
:return:
|
|
4131
|
-
:rtype: typing_extensions.Self
|
|
4132
2170
|
"""
|
|
4133
2171
|
|
|
4134
2172
|
def __imul__(self, other: float) -> typing_extensions.Self:
|
|
4135
2173
|
"""
|
|
4136
2174
|
|
|
4137
2175
|
:param other:
|
|
4138
|
-
:type other: float
|
|
4139
2176
|
:return:
|
|
4140
|
-
:rtype: typing_extensions.Self
|
|
4141
2177
|
"""
|
|
4142
2178
|
|
|
4143
2179
|
def __itruediv__(self, other: float) -> typing_extensions.Self:
|
|
4144
2180
|
"""
|
|
4145
2181
|
|
|
4146
2182
|
:param other:
|
|
4147
|
-
:type other: float
|
|
4148
2183
|
:return:
|
|
4149
|
-
:rtype: typing_extensions.Self
|
|
4150
2184
|
"""
|