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>2011-12-13 03:58:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-13 03:58:05 +0400
commit30d129593b3aa183c4a6bc78dc783867aa54da78 (patch)
tree623ffcbad4074dd10e8f7ef4d4e96c4adf8636d3 /source/blender/bmesh/operators/bevel.c
parent8d0dc29aba218a03a6264bf29867cbcc03951037 (diff)
non functional changes & de-duplicate yet another face center function
Diffstat (limited to 'source/blender/bmesh/operators/bevel.c')
-rw-r--r--source/blender/bmesh/operators/bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bevel.c b/source/blender/bmesh/operators/bevel.c
index b37ce139249..e9f6677a6c8 100644
--- a/source/blender/bmesh/operators/bevel.c
+++ b/source/blender/bmesh/operators/bevel.c
@@ -79,7 +79,7 @@ static void calc_corner_co(BMesh *bm, BMLoop *l, const float fac, float r_co[3])
/* not strictly necessary, balance vectors
* so the longer edge doesn't skew the result,
- * gives nicer, move event output */
+ * gives nicer, move even output */
float medium= (normalize_v3(l_vec_prev) + normalize_v3(l_vec_next)) / 2.0f;
mul_v3_fl(l_vec_prev, medium);
mul_v3_fl(l_vec_next, medium);