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>2018-12-14 02:54:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-14 02:54:11 +0300
commit6e2d9ef2db3776cf5f6f8a8f685da0aa668f9ae6 (patch)
tree0b3a2f77199fc4bb6d366f6f9248bab2267046a3 /source/blender/editors/mesh/editmesh_select.c
parente961c1244c9737c3c693034272c67817f82b0404 (diff)
Cleanup: naming (mean -> median) see T47811
Diffstat (limited to 'source/blender/editors/mesh/editmesh_select.c')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 4f3db525c1b..1edfcae6c02 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -1701,7 +1701,7 @@ static bool mouse_mesh_loop(bContext *C, const int mval[2], bool extend, bool de
float cent[3];
float co[2], tdist;
- BM_face_calc_center_mean(f, cent);
+ BM_face_calc_center_median(f, cent);
if (ED_view3d_project_float_object(
vc.ar, cent, co, V3D_PROJ_TEST_CLIP_NEAR) == V3D_PROJ_RET_OK)
{