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>2012-03-17 10:40:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-17 10:40:44 +0400
commit29831ca0871112e7b5ddfd3439adbef1ac19d3cb (patch)
treed97692bb994ac370d6865348635e589bdef83625 /source/blender/python/bmesh/bmesh_py_api.c
parent8634d0e9c103e4d5dc38d1876af16a7434354a53 (diff)
bmesh py api:
added per loop UV layer access
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_api.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 9ef6929a8d5..23a3f6ed5c0 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -36,6 +36,7 @@
#include "bmesh_py_types.h"
#include "bmesh_py_types_select.h"
#include "bmesh_py_types_customdata.h"
+#include "bmesh_py_types_meshdata.h"
#include "bmesh_py_utils.h"
@@ -133,6 +134,7 @@ PyObject *BPyInit_bmesh(void)
BPy_BM_init_types();
BPy_BM_init_types_select();
BPy_BM_init_types_customdata();
+ BPy_BM_init_types_meshdata();
mod = PyModule_Create(&BPy_BM_module_def);