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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-07 09:39:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-07 09:39:48 +0300
commit0db684be3cc0326d829ec3b946ca005891d720f8 (patch)
tree92c9075704a121830e80964f42588ebf170ef895
parent82659944c63e1271d99a2f23636847be147a3895 (diff)
incorrectly documented return type
-rw-r--r--source/blender/python/generic/mathutils_matrix.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/python/generic/mathutils_matrix.c b/source/blender/python/generic/mathutils_matrix.c
index 8b8e68b798c..5d3c4aa821d 100644
--- a/source/blender/python/generic/mathutils_matrix.c
+++ b/source/blender/python/generic/mathutils_matrix.c
@@ -848,10 +848,8 @@ static char Matrix_TranslationPart_doc[] =
" Return a the translation part of a 4 row matrix.\n"
"\n"
" :return: Return a the translation of a matrix.\n"
-" :rtype: :class:`Matrix`\n"
-"\n"
-" .. note:: Note that the (4,4) element of a matrix can be used for uniform scaling too.\n";
-
+" :rtype: :class:`Vector`\n"
+;
PyObject *Matrix_TranslationPart(MatrixObject * self)
{
if(!BaseMath_ReadCallback(self))