Mathutils doc improvements + other small things

- bpy.app moved into PyStructSequence (used by sys.float_info)
- added buildinfo into bpy.app.build_*
- bpy.ui removed (wasnt used)
- include external example files in Mathutils docs (only Mathutils and Vector are currently written)
- added support to auto document PyStructSequence's
- CMake had "'s inside all its strings.
This commit is contained in:
2010-01-31 21:52:26 +00:00
parent 02c6d160d7
commit fd3842f3a2
22 changed files with 203 additions and 310 deletions

View File

@@ -54,7 +54,10 @@
#include "BKE_utildefines.h"
//-------------------------DOC STRINGS ---------------------------
static char M_Mathutils_doc[] = "This module provides access to matrices, eulers, quaternions and vectors.";
static char M_Mathutils_doc[] =
"This module provides access to matrices, eulers, quaternions and vectors.\n"
"\n"
".. literalinclude:: ../examples/mathutils.py\n";
//-----------------------------METHODS----------------------------
//-----------------quat_rotation (internal)-----------