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:
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 4c86777ea6e..45eca07416b 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -119,8 +119,15 @@ bArmature * Armature_FromPyObject (PyObject *py_obj);
int Armature_CheckPyObject (PyObject *py_obj);
/* Ipo Data */
+PyObject * BezTriple_CreatePyObject (BezTriple *bzt);
+int BezTriple_CheckPyObject (PyObject *pyobj);
+BezTriple* BezTriple_FromPyObject (PyObject *pyobj);
PyObject * IpoCurve_Init(void);
+PyObject * IpoCurve_CreatePyObject (IpoCurve *ipo);
+int IpoCurve_CheckPyObject (PyObject *pyobj);
+IpoCurve * IpoCurve_FromPyObject (PyObject *pyobj);
+
PyObject * Ipo_Init (void);
PyObject * Ipo_CreatePyObject (struct Ipo *ipo);
Ipo * Ipo_FromPyObject (PyObject *py_obj);