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>2014-01-30 10:54:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-30 10:56:07 +0400
commitab6157a06ab49fc1f78f1575d373c83037cd39b7 (patch)
tree336977da8cdeb5c23f2649539442b425fa446dd1 /source/blender/python
parentbd697dd4d7e3b753aa18a1767e20c80d52f65aa4 (diff)
PyAPI: noise.seed_set(), note that zero is a special case.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/mathutils/mathutils_noise.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/mathutils/mathutils_noise.c b/source/blender/python/mathutils/mathutils_noise.c
index fe2b00387b3..61bc2b60861 100644
--- a/source/blender/python/mathutils/mathutils_noise.c
+++ b/source/blender/python/mathutils/mathutils_noise.c
@@ -353,6 +353,7 @@ PyDoc_STRVAR(M_Noise_seed_set_doc,
" Sets the random seed used for random_unit_vector, random_vector and random.\n"
"\n"
" :arg seed: Seed used for the random generator.\n"
+" When seed is zero, the current time will be used instead.\n"
" :type seed: Int\n"
);
static PyObject *M_Noise_seed_set(PyObject *UNUSED(self), PyObject *args)