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:
authorCampbell Barton <ideasman42@gmail.com>2007-03-16 14:38:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-03-16 14:38:02 +0300
commitbc1fdcd858cc1064fd4b03dac5cc058f22e2b02d (patch)
tree0205cceea8dbc978db1b7289027268bc3a3035e3 /source/blender/python/api2_2x/Mathutils.c
parentc5f4a0a1b063716982d7e50c872894d39b0dea7c (diff)
type initialization updates, and refcount fix for lamp, reverted some changes to NMesh
Diffstat (limited to 'source/blender/python/api2_2x/Mathutils.c')
-rw-r--r--source/blender/python/api2_2x/Mathutils.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Mathutils.c b/source/blender/python/api2_2x/Mathutils.c
index 524755bdc20..3aac1d3ddde 100644
--- a/source/blender/python/api2_2x/Mathutils.c
+++ b/source/blender/python/api2_2x/Mathutils.c
@@ -121,6 +121,12 @@ PyObject *Mathutils_Init(void)
/* needed for getseters */
if( PyType_Ready( &vector_Type ) < 0 )
return NULL;
+ if( PyType_Ready( &matrix_Type ) < 0 )
+ return NULL;
+ if( PyType_Ready( &euler_Type ) < 0 )
+ return NULL;
+ if( PyType_Ready( &quaternion_Type ) < 0 )
+ return NULL;
submodule = Py_InitModule3("Blender.Mathutils",
M_Mathutils_methods, M_Mathutils_doc);