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:
authorJacques Guignot <guignot@wanadoo.fr>2003-08-05 14:19:28 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-08-05 14:19:28 +0400
commit05187adc2fff9d6c6dcc7c1b7ddf5151ec0a9982 (patch)
treec5c661457657e262991c11b9762e8b83dbc7d810 /source/blender/python/api2_2x/Ipocurve.h
parent683c322b0ebf7f407bb79f775f592e8ebfeef078 (diff)
removed unuseful function calls in BezTriple.[ch]
general cleaning of Ipocurve.c Ipocurve.h Ipo.h Ipo.c updated doc
Diffstat (limited to 'source/blender/python/api2_2x/Ipocurve.h')
-rw-r--r--source/blender/python/api2_2x/Ipocurve.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Ipocurve.h b/source/blender/python/api2_2x/Ipocurve.h
index 6864e5f43b9..856088d4235 100644
--- a/source/blender/python/api2_2x/Ipocurve.h
+++ b/source/blender/python/api2_2x/Ipocurve.h
@@ -92,6 +92,7 @@ static PyObject *IpoCurve_setInterpolation( C_IpoCurve*self, PyObject *args);
static PyObject *IpoCurve_getInterpolation( C_IpoCurve*self);
static PyObject *IpoCurve_setExtrapolation( C_IpoCurve*self, PyObject *args);
static PyObject *IpoCurve_getExtrapolation( C_IpoCurve*self);
+static PyObject *IpoCurve_getPoints( C_IpoCurve*self);
/*****************************************************************************/
@@ -116,6 +117,8 @@ static PyMethodDef C_IpoCurve_methods[] = {
{"setExtrapolation", (PyCFunction)IpoCurve_setExtrapolation, METH_VARARGS,
"(str) - Change IpoCurve Data name"},
{"getExtrapolation", (PyCFunction)IpoCurve_getExtrapolation, METH_NOARGS,
+ "(str) - Change IpoCurve Data name"},
+{"getPoints", (PyCFunction)IpoCurve_getPoints, METH_NOARGS,
"(str) - Change IpoCurve Data name"},
{0}
};