Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/examples/mathutils.Vector.py')
-rw-r--r--doc/python_api/examples/mathutils.Vector.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/python_api/examples/mathutils.Vector.py b/doc/python_api/examples/mathutils.Vector.py
index a8db4aa6691..4d8bf8c065c 100644
--- a/doc/python_api/examples/mathutils.Vector.py
+++ b/doc/python_api/examples/mathutils.Vector.py
@@ -32,11 +32,10 @@ vec_a <= vec_b
# Math can be performed on Vector classes
vec_a + vec_b
vec_a - vec_b
-vec_a * vec_b
+vec_a @ vec_b
vec_a * 10.0
-matrix * vec_a
-quat * vec_a
-vec_a * vec_b
+matrix @ vec_a
+quat @ vec_a
-vec_a