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:
authorKen Hughes <khughes@pacific.edu>2005-10-03 23:36:15 +0400
committerKen Hughes <khughes@pacific.edu>2005-10-03 23:36:15 +0400
commitf2af563f92b7c33d0ddf7b97bbd2c168cf21e5a6 (patch)
tree8e5864ba00d9cc9bebaedc3be4d50d0480f830b5 /source/blender/python/api2_2x/Blender.c
parentc7f4016349a93624542cf9179102ebcfe350ad19 (diff)
Added new BPython thin mesh module
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 ed8721d511b..c4fe631dc6b 100644
--- a/source/blender/python/api2_2x/Blender.c
+++ b/source/blender/python/api2_2x/Blender.c
@@ -72,6 +72,7 @@ struct ID; /*keep me up here */
#include "Lamp.h"
#include "Lattice.h"
#include "Mathutils.h"
+#include "Mesh.h"
#include "Metaball.h"
#include "NMesh.h"
#include "Object.h"
@@ -818,6 +819,7 @@ void M_Blender_Init(void)
PyDict_SetItemString(dict, "Lattice", Lattice_Init());
PyDict_SetItemString(dict, "Library", Library_Init());
PyDict_SetItemString(dict, "Material", Material_Init());
+ PyDict_SetItemString(dict, "Mesh", Mesh_Init());
PyDict_SetItemString(dict, "Metaball", Metaball_Init());
PyDict_SetItemString(dict, "Mathutils", Mathutils_Init());
PyDict_SetItemString(dict, "NMesh", NMesh_Init());