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>2015-07-01 09:37:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-01 09:37:05 +0300
commit58d65dd9761aa160fad59937a6733ce611919f37 (patch)
tree8205d9dc88fe405bd9d847a473b5d2dab798f75b /source/blender/bmesh/intern/bmesh_interp.c
parentd9046ccbd4cfc26375d852ef2ccd6edb4d6d0e6a (diff)
Cleanup: use cross_v2v2 function
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_interp.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index 30ac76ab7e1..6e468bf44f2 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -407,7 +407,7 @@ static float bm_loop_flip_equotion(
b[0] = coord[i];
b[1] = coord[j];
- return mat[0][0] * mat[1][1] - mat[0][1] * mat[1][0];
+ return cross_v2v2(mat[0], mat[1]);
}
static void bm_loop_flip_disp(