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 'source/blender/python/api2_2x/doc/Mathutils.py')
-rw-r--r--source/blender/python/api2_2x/doc/Mathutils.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/python/api2_2x/doc/Mathutils.py b/source/blender/python/api2_2x/doc/Mathutils.py
index 4b00d045825..5f552a69494 100644
--- a/source/blender/python/api2_2x/doc/Mathutils.py
+++ b/source/blender/python/api2_2x/doc/Mathutils.py
@@ -653,19 +653,19 @@ class Quaternion:
def negate():
"""
- Set the quaternion to it's negative.
+ Set the quaternion to its negative.
@return: a copy of itself
"""
def conjugate():
"""
- Set the quaternion to it's conjugate.
+ Set the quaternion to its conjugate.
@return: a copy of itself
"""
def inverse():
"""
- Set the quaternion to it's inverse
+ Set the quaternion to its inverse
@return: a copy of itself
"""
@@ -762,7 +762,7 @@ class Matrix:
def transpose():
"""
- Set the matrix to it's transpose.
+ Set the matrix to its transpose.
@return: a copy of itself
"""
@@ -775,8 +775,9 @@ class Matrix:
def invert():
"""
- Set the matrix to it's inverse.
+ Set the matrix to its inverse.
@return: a copy of itself
+ @raise ValueError: When matrix is singular.
"""
def rotationPart():