- swap arg order for BM_face_copy() boolean options.

- use edge example for BM_face_split().
This commit is contained in:
2012-02-23 04:26:24 +00:00
parent ecb6f13618
commit d232815481
6 changed files with 16 additions and 14 deletions

View File

@@ -4613,7 +4613,7 @@ static int createSlideVerts(TransInfo *t)
BM_ITER(f, &fiter, em->bm, BM_FACES_OF_VERT, tempsv->v) {
if (!BLI_smallhash_haskey(&sld->origfaces, (uintptr_t)f)) {
BMFace *copyf = BM_face_copy(em->bm, f, 1, 1);
BMFace *copyf = BM_face_copy(em->bm, f, TRUE, TRUE);
BM_elem_select_set(em->bm, copyf, FALSE);
BM_elem_flag_enable(copyf, BM_ELEM_HIDDEN);