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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-05-29 08:00:35 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-05-29 08:00:35 +0400
commitb13c0705d35148eb594ad34d7f6dcb02ab31b8a6 (patch)
tree7a895598b4b82ddda54e14a57103fedd3024c245 /source/blender/python/api2_2x/modules.h
parented928b5cca0da27f80e1775c094f8aeba73d9bba (diff)
* Module Curve updated:
Jacques Guignot (guignot) sent updated files for his Curve module. * Module Armature (and its submodule Bone) added: Jordi Rovira i Bonet (bandoler) contributed both modules, which are NEW additions to Blender Python, not available in Blender 2.27. * Added function to NMesh.c: Jordi again. He added the function NMesh_getVertexInfluence().
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 71375aaddc8..7a0942a1150 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -39,6 +39,7 @@
#include <DNA_lamp_types.h>
#include <DNA_curve_types.h>
#include <DNA_effect_types.h>
+#include <DNA_armature_types.h>
/*****************************************************************************/
/* Global variables */
@@ -85,12 +86,17 @@ PyObject * CurveCreatePyObject (struct Curve *curve);
struct Curve * CurveFromPyObject (PyObject *py_obj);
int CurveCheckPyObject (PyObject *py_obj);
+/* Armature Data */
+PyObject * M_Armature_Init (void);
+PyObject * ArtmatureCreatePyObject (bArmature *armature);
+bArmature* ArmatureFromPyObject (PyObject *py_obj);
+int ArmatureCheckPyObject (PyObject *py_obj);
+
/* Particle Effects Data */
-/*
-PyObject * M_Effect_Init (void);
+/*PyObject * M_Effect_Init (void);
PyObject * EffectCreatePyObject (struct Effect *effect);
-int EffectCheckPyObject (PyObject *py_obj);
struct Effect * EffectFromPyObject (PyObject *py_obj);
+int EffectCheckPyObject (PyObject *py_obj);
*/
/* Init functions for other modules */