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.py')
-rw-r--r--doc/python_api/examples/mathutils.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/python_api/examples/mathutils.py b/doc/python_api/examples/mathutils.py
deleted file mode 100644
index dcc10c5885c..00000000000
--- a/doc/python_api/examples/mathutils.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import mathutils
-from math import radians
-
-vec = mathutils.Vector((1.0, 2.0, 3.0))
-
-mat_rot = mathutils.Matrix.Rotation(radians(90.0), 4, 'X')
-mat_trans = mathutils.Matrix.Translation(vec)
-
-mat = mat_trans * mat_rot
-mat.invert()
-
-mat3 = mat.to_3x3()
-quat1 = mat.to_quaternion()
-quat2 = mat3.to_quaternion()
-
-angle = quat1.difference(quat2)
-
-print(angle)