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>2011-12-24 08:58:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-24 08:58:01 +0400
commitb42497b46031b4960d1efb79faf5a1fedd3546bb (patch)
treeed3e6d7600db781d69df0ad77b67968e9dbd9c0a /source/blender/python/mathutils/mathutils_Matrix.h
parenteb3beca8d4a1c5073992d3f8a30d4e87e4f29430 (diff)
mathutils get/set function rename + minor changes to matrix functions (no functional changes)
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Matrix.h')
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Matrix.h b/source/blender/python/mathutils/mathutils_Matrix.h
index e7bfc06b98b..05c822b0330 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.h
+++ b/source/blender/python/mathutils/mathutils_Matrix.h
@@ -68,7 +68,9 @@ typedef struct {
PyObject *Matrix_CreatePyObject(float *mat,
const unsigned short num_col, const unsigned short num_row,
int type, PyTypeObject *base_type);
-PyObject *Matrix_CreatePyObject_cb(PyObject *user, int num_col, int num_row, int cb_type, int cb_subtype);
+PyObject *Matrix_CreatePyObject_cb(PyObject *user,
+ const unsigned short num_col, const unsigned short num_row,
+ int cb_type, int cb_subtype);
extern int mathutils_matrix_vector_cb_index;
extern int mathutils_matrix_column_cb_index;