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:
authorJoseph Eagar <joeedh@gmail.com>2009-06-23 09:35:49 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-06-23 09:35:49 +0400
commit454eb8793d235d3d8a10321e15e560f8d6c7aeb1 (patch)
treeb4ece388e59dd7995390104a0e8da4b8b47b59fa /source/blender/editors/mesh/editmesh_lib.c
parent43ff7552485413ff2607b02541ce2da89c0f4cb5 (diff)
Array modifier is now implemented using bmesh
(though it's not completely feature-complete yet). I ported over the remove doubles code from the old bmesh branch for this, and split it into two bmops, "Weld Verts" and "Remove Doubles". Weld verts welds specific verts together, while remove doubles finds doubles and welds them. I also reverted the hotkey change I made earlier.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_lib.c')
-rw-r--r--source/blender/editors/mesh/editmesh_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c
index 98d69419fdb..120606d9fb0 100644
--- a/source/blender/editors/mesh/editmesh_lib.c
+++ b/source/blender/editors/mesh/editmesh_lib.c
@@ -1228,7 +1228,7 @@ short BM_extrude_edgeflag(Object *obedit, BMesh *bm, int eflag, float *nor)
BMO_Exec_Op(bm, &extop);
- el = BMO_IterNew(&siter, bm, &extop, "geomout");
+ el = BMO_IterNew(&siter, bm, &extop, "geomout", BM_ALL);
for (; el; el=BMO_IterStep(&siter)) {
BM_Select(bm, el, 1);
}