* Updated NMesh port to exppython:

Added material and image handling/hooks and the constant dictionaries.
    Changed Image.h and Material.h to only have public declarations, so
    NMesh could include them.
This commit is contained in:
2003-05-31 04:43:10 +00:00
parent 721fa5479c
commit 302479603b
9 changed files with 837 additions and 629 deletions

View File

@@ -40,6 +40,7 @@
#include <DNA_curve_types.h>
#include <DNA_effect_types.h>
#include <DNA_armature_types.h>
#include <DNA_image_types.h>
/*****************************************************************************/
/* Global variables */
@@ -99,9 +100,13 @@ struct Effect * EffectFromPyObject (PyObject *py_obj);
int EffectCheckPyObject (PyObject *py_obj);
*/
/* Image */
PyObject * M_Image_Init (void);
PyObject * ImageCreatePyObject (Image *image);
int Image_checkPyObject (PyObject *pyobj);
/* Init functions for other modules */
PyObject * M_Window_Init (void);
PyObject * M_Image_Init (void);
PyObject * M_Draw_Init (void);
PyObject * M_BGL_Init (void);
PyObject * M_Text_Init (void);