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-10-29 04:37:32 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2003-10-29 04:37:32 +0300
commitdd6a83d9c03543af953e3dadafced28ed4169cf0 (patch)
tree8a5e1ec96969eef6016b38cad362738f93bab2fd /source/blender/python/api2_2x/Camera.c
parentf3a809b09f729ef4bad73030e70827b52afda845 (diff)
Exppython:
- Minor tweaks related to ipos and Added Object_setIpo and Object_clearIpo to Object.c - Updated docs
Diffstat (limited to 'source/blender/python/api2_2x/Camera.c')
-rw-r--r--source/blender/python/api2_2x/Camera.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Camera.c b/source/blender/python/api2_2x/Camera.c
index 154e68673f8..53a672cecce 100644
--- a/source/blender/python/api2_2x/Camera.c
+++ b/source/blender/python/api2_2x/Camera.c
@@ -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;