rename mathutils constructors to match other parts of the bpy/api (no functional changes)

This commit is contained in:
2011-11-24 04:45:36 +00:00
parent c62d33c540
commit 3b9b6051d9
17 changed files with 154 additions and 154 deletions

View File

@@ -45,7 +45,7 @@ typedef struct {
} VectorObject;
/*prototypes*/
PyObject *newVectorObject(float *vec, const int size, const int type, PyTypeObject *base_type);
PyObject *newVectorObject_cb(PyObject *user, int size, int callback_type, int subtype);
PyObject *Vector_CreatePyObject(float *vec, const int size, const int type, PyTypeObject *base_type);
PyObject *Vector_CreatePyObject_cb(PyObject *user, int size, int callback_type, int subtype);
#endif /* MATHUTILS_VECTOR_H */