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>2006-07-02 19:28:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-07-02 19:28:28 +0400
commit6adf0e654310a15601b550155ba3bcb85e637b33 (patch)
tree60e8fc9d89fc87acb2ee5a69c13f6bb6d19060e6 /source/blender/python/api2_2x/Blender.c
parent156f2030fd90d33faa0e0ad5915c07bfe51e3871 (diff)
finish adding Geometry module, removed polyfill from mathutils, updated epydoc links and updated BPyMesh NGon function
Diffstat (limited to 'source/blender/python/api2_2x/Blender.c')
-rw-r--r--source/blender/python/api2_2x/Blender.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Blender.c b/source/blender/python/api2_2x/Blender.c
index 5c67089abc0..f1343b57a30 100644
--- a/source/blender/python/api2_2x/Blender.c
+++ b/source/blender/python/api2_2x/Blender.c
@@ -75,6 +75,7 @@ struct ID; /*keep me up here */
#include "Lamp.h"
#include "Lattice.h"
#include "Mathutils.h"
+#include "Geometry.h"
#include "Mesh.h"
#include "Metaball.h"
#include "Modifier.h"
@@ -950,6 +951,7 @@ void M_Blender_Init(void)
PyDict_SetItemString(dict, "Mesh", Mesh_Init());
PyDict_SetItemString(dict, "Metaball", Metaball_Init());
PyDict_SetItemString(dict, "Mathutils", Mathutils_Init());
+ PyDict_SetItemString(dict, "Geometry", Geometry_Init());
PyDict_SetItemString(dict, "Modifier", Modifier_Init());
PyDict_SetItemString(dict, "NMesh", NMesh_Init());
PyDict_SetItemString(dict, "Noise", Noise_Init());