- 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

@@ -723,7 +723,7 @@ static PyObject *bpy_bmface_copy(BPy_BMFace *self, PyObject *args, PyObject *kw)
return NULL;
}
f_cpy = BM_face_copy(bm, self->f, do_edges, do_verts);
f_cpy = BM_face_copy(bm, self->f, do_verts, do_edges);
if (f_cpy) {
return BPy_BMFace_CreatePyObject(bm, f_cpy);