projects
/
blender.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix for recent kdtree py module with MSVC
[blender.git]
/
source
/
blender
/
python
/
mathutils
/
mathutils.c
diff --git
a/source/blender/python/mathutils/mathutils.c
b/source/blender/python/mathutils/mathutils.c
index dd3e5dec8a4a7e5f575420170258151d7d6c48fa..1ecb2c08bc1dafaf3ec14b49295ca124c7a6c6f3 100644
(file)
--- a/
source/blender/python/mathutils/mathutils.c
+++ b/
source/blender/python/mathutils/mathutils.c
@@
-474,6
+474,12
@@
static struct PyModuleDef M_Mathutils_module_def = {
NULL, /* m_free */
};
+
+/* submodules only */
+#include "mathutils_geometry.h"
+#include "mathutils_kdtree.h"
+#include "mathutils_noise.h"
+
PyMODINIT_FUNC PyInit_mathutils(void)
{
PyObject *mod;