From 76e9f91d1c9ff5f026ff4e05e76b751f936f83f7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 4 Mar 2012 16:01:02 +0000 Subject: switch arg order for BM_face_other_* funcs (make face come first), and add nice ascii art for BM_face_other_vert_loop since this stuff is hard to grasp as text. --- source/blender/editors/util/crazyspace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/util') diff --git a/source/blender/editors/util/crazyspace.c b/source/blender/editors/util/crazyspace.c index ee32c04a33c..8f9d32f0899 100644 --- a/source/blender/editors/util/crazyspace.c +++ b/source/blender/editors/util/crazyspace.c @@ -153,7 +153,7 @@ void crazyspace_set_quats_editmesh(BMEditMesh *em, float *origcos, float *mapped continue; BM_ITER(l, &liter, em->bm, BM_LOOPS_OF_VERT, v) { - BMLoop *l2 = BM_face_other_loop(l->e, l->f, v); + BMLoop *l2 = BM_face_other_loop(l->f, l->e, v); /* retrieve mapped coordinates */ v1= mappedcos + 3*BM_elem_index_get(l->v); -- cgit v1.2.3