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:
authorJacques Lucke <mail@jlucke.com>2019-04-17 14:48:41 +0300
committerJacques Lucke <mail@jlucke.com>2019-04-17 14:49:30 +0300
commitf3b7b7eb0c3b434301f02718e5304144892c3e0a (patch)
treebeb25c391b9f2f5cc26ea5429f75ae61daed3fb8 /source/blender/python/mathutils
parent6770f76bd49f0104e51d2c8a523e880f0c40cf7a (diff)
Fix T63673: Wrong api documentation for Quaternion.dot(other)
Diffstat (limited to 'source/blender/python/mathutils')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c
index 86da4511a2e..8841519de8a 100644
--- a/source/blender/python/mathutils/mathutils_Quaternion.c
+++ b/source/blender/python/mathutils/mathutils_Quaternion.c
@@ -236,7 +236,7 @@ PyDoc_STRVAR(Quaternion_dot_doc,
" :arg other: The other quaternion to perform the dot product with.\n"
" :type other: :class:`Quaternion`\n"
" :return: The dot product.\n"
- " :rtype: :class:`Quaternion`\n");
+ " :rtype: float\n");
static PyObject *Quaternion_dot(QuaternionObject *self, PyObject *value)
{
float tquat[QUAT_SIZE];