[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42388] trunk/blender/doc/python_api/ sphinx_doc_gen.py: include mathutils.noise in sphinx docs

Campbell Barton ideasman42 at gmail.com
Sun Dec 4 07:55:45 CET 2011


Revision: 42388
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42388
Author:   campbellbarton
Date:     2011-12-04 06:55:32 +0000 (Sun, 04 Dec 2011)
Log Message:
-----------
include mathutils.noise in sphinx docs

Modified Paths:
--------------
    trunk/blender/doc/python_api/sphinx_doc_gen.py

Modified: trunk/blender/doc/python_api/sphinx_doc_gen.py
===================================================================
--- trunk/blender/doc/python_api/sphinx_doc_gen.py	2011-12-04 06:39:35 UTC (rev 42387)
+++ trunk/blender/doc/python_api/sphinx_doc_gen.py	2011-12-04 06:55:32 UTC (rev 42388)
@@ -87,6 +87,7 @@
         "gpu",
         "mathutils",
         "mathutils.geometry",
+        "mathutils.noise",
     )
 
     FILTER_BPY_TYPES = ("bpy_struct", "Operator", "ID")  # allow
@@ -1190,6 +1191,8 @@
         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 @@
         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")




More information about the Bf-blender-cvs mailing list