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>2012-11-12 07:41:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-12 07:41:25 +0400
commit744378483cd5a3e43931740315515ffb02c185b0 (patch)
tree9398dff9cccc17b23cc2bfa02124d1dcbee66b27 /source/blender/bmesh/operators/bmo_bevel.c
parent955b5db5e9840b597ed1d7e99825c17c3120295c (diff)
style cleanup
Diffstat (limited to 'source/blender/bmesh/operators/bmo_bevel.c')
-rw-r--r--source/blender/bmesh/operators/bmo_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_bevel.c b/source/blender/bmesh/operators/bmo_bevel.c
index 0b7f2b8292a..cbaf0cf40d3 100644
--- a/source/blender/bmesh/operators/bmo_bevel.c
+++ b/source/blender/bmesh/operators/bmo_bevel.c
@@ -1063,7 +1063,7 @@ static void build_vmesh(BMesh *bm, BevVert *bv)
for (k = 1; k < ns; k++) {
va = mesh_vert(vm, weld1->index, 0, k)->co;
vb = mesh_vert(vm, weld2->index, 0, ns - k)->co;
- mid_v3_v3v3(co,va, vb);
+ mid_v3_v3v3(co, va, vb);
copy_v3_v3(mesh_vert(vm, weld1->index, 0, k)->co, co);
create_mesh_bmvert(bm, vm, weld1->index, 0, k, bv->v);
}