Exppython:

- Minor tweaks related to ipos and Added Object_setIpo and Object_clearIpo to Object.c
- Updated docs
This commit is contained in:
2003-10-29 01:37:32 +00:00
parent f3a809b09f
commit dd6a83d9c0
5 changed files with 1319 additions and 1239 deletions

View File

@@ -258,6 +258,11 @@ static PyObject *Camera_getIpo(BPy_Camera *self)
return Ipo_CreatePyObject (ipo);
}
static PyObject *Camera_getName(BPy_Camera *self)
{
@@ -329,6 +334,8 @@ static PyObject *Camera_getDrawSize(BPy_Camera *self)
"couldn't get Camera.drawSize attribute");
}
static PyObject *Camera_setIpo(BPy_Camera *self, PyObject *args)
{
PyObject *pyipo = 0;