From 55cd411cbbfd09929d29727163936fd4ba16cc56 Mon Sep 17 00:00:00 2001 From: Lolbot Date: Fri, 15 Feb 2013 17:57:19 +0000 Subject: [PATCH] fixed 3 files out of 2475: - removed 3 CR characters - removed 20 trailing whitespaces - replaced 0 tabs with spaces --- src/easymesh/easymesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easymesh/easymesh.cpp b/src/easymesh/easymesh.cpp index b3a8805a..a7b25e26 100644 --- a/src/easymesh/easymesh.cpp +++ b/src/easymesh/easymesh.cpp @@ -2030,7 +2030,7 @@ void EasyMesh::SmoothMesh(int main_pass, int split_per_main_pass, int smooth_per float alpha = (n * (1 - beta)) / beta; //V = (a(n) * v + v1 + ... + vn) / (a(n) + n) vec3 new_vert = (alpha * smooth_buf[smbuf][master_list[i] - m_cursors.Last().m1] + vert_sum) / (alpha + n); - + //Set all matching vertices to new value matching_ids.Empty(); matching_ids << master_list[i];