From cea588b9ef8f9bdb2729fb233d6f1ed0886700e1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 14 Jan 2022 10:47:50 +1100 Subject: Cleanup: spelling in comments, C++ style comments for disabled code Also ensure space at end of comment. --- source/blender/simulation/intern/SIM_mass_spring.cpp | 2 +- source/blender/simulation/intern/implicit_blender.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/simulation') diff --git a/source/blender/simulation/intern/SIM_mass_spring.cpp b/source/blender/simulation/intern/SIM_mass_spring.cpp index 36513690584..73b287b4233 100644 --- a/source/blender/simulation/intern/SIM_mass_spring.cpp +++ b/source/blender/simulation/intern/SIM_mass_spring.cpp @@ -625,7 +625,7 @@ static void cloth_calc_force( } #endif - /* cloth_calc_volume_force(clmd); */ + // cloth_calc_volume_force(clmd); #ifdef CLOTH_FORCE_DRAG SIM_mass_spring_force_drag(data, drag); diff --git a/source/blender/simulation/intern/implicit_blender.c b/source/blender/simulation/intern/implicit_blender.c index add047bf8c8..95bf59101e6 100644 --- a/source/blender/simulation/intern/implicit_blender.c +++ b/source/blender/simulation/intern/implicit_blender.c @@ -830,7 +830,7 @@ static int cg_filtered(lfVector *ldV, fmatrix3x3 *lA, lfVector *lB, lfVector *z, s_prev = s; s = dot_lfvector(r, r, numverts); - /* d = r+d*(s/s_prev); */ + // d = r+d*(s/s_prev); add_lfvector_lfvectorS(d, r, d, (s / s_prev), numverts); filter(d, S); -- cgit v1.2.3