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:
authorKen Hughes <khughes@pacific.edu>2005-11-28 08:03:26 +0300
committerKen Hughes <khughes@pacific.edu>2005-11-28 08:03:26 +0300
commitb2e32f5bd135eaf862be7159794f868b4ac2ce4a (patch)
tree2b7ecd52b0b019abf22859b342dbf5d08d940c6f /source/blender/python/api2_2x/BezTriple.h
parent1745a077ad78752cb40afb06b70111d668f843d2 (diff)
-- Bugfix #3458: keyblock.getData() was getting vertex data from keys
incorrectly, including wrapping curve data as BezTriples. Needed to make a change to beztriple module so we could more easily create a "thick" BezTriple object similar to Blender.BezTriple.New(). The change to BezTriple.h pointed out some dead code in the Ipocurve module that could be removed.
Diffstat (limited to 'source/blender/python/api2_2x/BezTriple.h')
-rw-r--r--source/blender/python/api2_2x/BezTriple.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/BezTriple.h b/source/blender/python/api2_2x/BezTriple.h
index e8fb4f2e543..a4e9b2e2db3 100644
--- a/source/blender/python/api2_2x/BezTriple.h
+++ b/source/blender/python/api2_2x/BezTriple.h
@@ -59,7 +59,7 @@ typedef struct {
PyObject *BezTriple_CreatePyObject( BezTriple * bzt );
int BezTriple_CheckPyObject( PyObject * pyobj );
BezTriple *BezTriple_FromPyObject( PyObject * pyobj );
-PyObject *newBezTriple( PyObject *args );
+PyObject *newBezTriple( float *args );
PyObject *BezTriple_Init( void );
#endif /* EXPP_BEZTRIPLE_H */