patch to add __deepcopy__ to mathutils types, this is no different to __copy__, except some py utilities expect __deepcopy__ to exist, so better have them.

This commit is contained in:
2012-03-30 11:35:58 +00:00
parent 785373b03a
commit 89b83f0060
7 changed files with 49 additions and 3 deletions

View File

@@ -124,5 +124,6 @@ int column_vector_multiplication(float rvec[4], VectorObject *vec, MatrixObject
/* dynstr as python string utility funcions */
PyObject *mathutils_dynstr_to_py(struct DynStr *ds);
int mathutils_deepcopy_args_check(PyObject *args);
#endif /* __MATHUTILS_H__ */