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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-12-04 10:55:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-04 10:55:32 +0400
commit4c93e0ada3717a202420a79e1259d78b8a8bf318 (patch)
tree694a6c96ca9d92ec6481593d61d742af53147f96 /doc
parentcbd5b492b1173f7acb3a5b91d5fc395f06bd00de (diff)
include mathutils.noise in sphinx docs
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 88641bdb663..29fcec58ae8 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -87,6 +87,7 @@ else:
"gpu",
"mathutils",
"mathutils.geometry",
+ "mathutils.noise",
)
FILTER_BPY_TYPES = ("bpy_struct", "Operator", "ID") # allow
@@ -1190,6 +1191,8 @@ def rna2sphinx(BASEPATH):
fw(" mathutils.rst\n\n")
if "mathutils.geometry" not in EXCLUDE_MODULES:
fw(" mathutils.geometry.rst\n\n")
+ if "mathutils.noise" not in EXCLUDE_MODULES:
+ fw(" mathutils.noise.rst\n\n")
if "bgl" not in EXCLUDE_MODULES:
fw(" bgl.rst\n\n")
if "blf" not in EXCLUDE_MODULES:
@@ -1329,6 +1332,10 @@ def rna2sphinx(BASEPATH):
import mathutils.geometry as module
pymodule2sphinx(BASEPATH, "mathutils.geometry", module, "Geometry Utilities")
+ if "mathutils.noise" not in EXCLUDE_MODULES:
+ import mathutils.noise as module
+ pymodule2sphinx(BASEPATH, "mathutils.noise", module, "Noise Utilities")
+
if "blf" not in EXCLUDE_MODULES:
import blf as module
pymodule2sphinx(BASEPATH, "blf", module, "Font Drawing")