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>2018-11-15 19:21:04 +0300
committerJacques Lucke <mail@jlucke.com>2018-11-19 12:29:10 +0300
commit6fe1b7158bb9b562e2213f9a976b293e3902545d (patch)
tree25299516a699078dd11323b9c99bc6ea670d9b9b /source/blender/python/gpu
parentb33afe4df32b51a37cb1ba49ac48b43d1185996f (diff)
Py API Docs: Fix wrong type
Diffstat (limited to 'source/blender/python/gpu')
-rw-r--r--source/blender/python/gpu/gpu_py_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/gpu/gpu_py_matrix.c b/source/blender/python/gpu/gpu_py_matrix.c
index ea883bea465..6c77f2ee02b 100644
--- a/source/blender/python/gpu/gpu_py_matrix.c
+++ b/source/blender/python/gpu/gpu_py_matrix.c
@@ -329,7 +329,7 @@ PyDoc_STRVAR(bpygpu_matrix_scale_uniform_doc,
".. function:: scale_uniform(scale)\n"
"\n"
" :param scale: Scale the current stack matrix.\n"
-" :type scale: sequence of 2 or 3 floats\n"
+" :type scale: float\n"
);
static PyObject *bpygpu_matrix_scale_uniform(PyObject *UNUSED(self), PyObject *value)
{