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>2013-08-22 21:32:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-22 21:32:41 +0400
commitc1cc9f3376eea4664a85db82e1901f5f03e59ac0 (patch)
tree7af70dd8b89702d95e2a3d9a429f7fcf0a47e563 /source/blender/bmesh/intern
parent2ee6c0ac6b774817d760e1e756e97eea476d412e (diff)
bmesh duplicate operator: add vertmap output slot.
Diffstat (limited to 'source/blender/bmesh/intern')
-rw-r--r--source/blender/bmesh/intern/bmesh_opdefines.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_opdefines.c b/source/blender/bmesh/intern/bmesh_opdefines.c
index 45f81d9d96d..d83d3b738eb 100644
--- a/source/blender/bmesh/intern/bmesh_opdefines.c
+++ b/source/blender/bmesh/intern/bmesh_opdefines.c
@@ -1154,6 +1154,7 @@ static BMOpDefine bmo_duplicate_def = {
/* facemap maps from source faces to dupe
* faces, and from dupe faces to source faces */
{"face_map.out", BMO_OP_SLOT_MAPPING, {BMO_OP_SLOT_SUBTYPE_MAP_ELEM}},
+ {"vert_map.out", BMO_OP_SLOT_MAPPING, {BMO_OP_SLOT_SUBTYPE_MAP_ELEM}},
{"boundary_map.out", BMO_OP_SLOT_MAPPING, {BMO_OP_SLOT_SUBTYPE_MAP_ELEM}},
{"isovert_map.out", BMO_OP_SLOT_MAPPING, {BMO_OP_SLOT_SUBTYPE_MAP_ELEM}},
{{'\0'}},