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>2016-03-04 00:40:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-04 00:40:22 +0300
commit9c8b6cc3fd81722d0d714df89b29463c27b20f14 (patch)
treefb6db1202c82604cd56c3b66cac107844d905f93 /doc
parentf38c175fc8e86e728bdb69d6c2570a0bb80ca010 (diff)
Docs: include mathutils.interpolate
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 1da33e1a55f..9d0d358305b 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -263,8 +263,9 @@ else:
"gpu",
"gpu.offscreen",
"mathutils",
- "mathutils.geometry",
"mathutils.bvhtree",
+ "mathutils.geometry",
+ "mathutils.interpolate",
"mathutils.kdtree",
"mathutils.noise",
"freestyle",
@@ -1663,7 +1664,11 @@ def write_rst_contents(basepath):
standalone_modules = (
# mathutils
- "mathutils", "mathutils.geometry", "mathutils.bvhtree", "mathutils.kdtree", "mathutils.noise",
+ "mathutils",
+ "mathutils.geometry",
+ "mathutils.bvhtree", "mathutils.kdtree",
+ "mathutils.interpolate",
+ "mathutils.noise",
# misc
"freestyle", "bgl", "blf",
"gpu", "gpu.offscreen",
@@ -1820,6 +1825,7 @@ def write_rst_importable_modules(basepath):
"mathutils.geometry" : "Geometry Utilities",
"mathutils.bvhtree" : "BVHTree Utilities",
"mathutils.kdtree" : "KDTree Utilities",
+ "mathutils.interpolate": "Interpolation Utilities",
"mathutils.noise" : "Noise Utilities",
"freestyle" : "Freestyle Module",
"freestyle.types" : "Freestyle Types",