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>2021-07-20 08:01:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-20 08:01:03 +0300
commitfe2f43a15c648e13fbc5fa4ba24cea41b3671427 (patch)
treeb5f6ec72ba191e8b9b9ec802426e73bd247b3705 /source/blender/simulation
parent59eb71afa1d11ab0a1d5f741debc6989ec511ff9 (diff)
Cleanup: use '#if 0' for disabling multiple lines
Diffstat (limited to 'source/blender/simulation')
-rw-r--r--source/blender/simulation/intern/SIM_mass_spring.cpp36
-rw-r--r--source/blender/simulation/intern/hair_volume.cpp35
2 files changed, 41 insertions, 30 deletions
diff --git a/source/blender/simulation/intern/SIM_mass_spring.cpp b/source/blender/simulation/intern/SIM_mass_spring.cpp
index b79731ab330..f9a22276363 100644
--- a/source/blender/simulation/intern/SIM_mass_spring.cpp
+++ b/source/blender/simulation/intern/SIM_mass_spring.cpp
@@ -1052,18 +1052,22 @@ static void cloth_continuum_step(ClothModifierData *clmd, float dt)
SIM_hair_volume_grid_interpolate(grid, x, &gdensity, gvel, gvel_smooth, NULL, NULL);
- // BKE_sim_debug_data_add_circle(
- // clmd->debug_data, x, gdensity, 0.7, 0.3, 1,
- // "grid density", i, j, 3111);
+# if 0
+ BKE_sim_debug_data_add_circle(
+ clmd->debug_data, x, gdensity, 0.7, 0.3, 1,
+ "grid density", i, j, 3111);
+# endif
if (!is_zero_v3(gvel) || !is_zero_v3(gvel_smooth)) {
float dvel[3];
sub_v3_v3v3(dvel, gvel_smooth, gvel);
- // BKE_sim_debug_data_add_vector(
- // clmd->debug_data, x, gvel, 0.4, 0, 1,
- // "grid velocity", i, j, 3112);
- // BKE_sim_debug_data_add_vector(
- // clmd->debug_data, x, gvel_smooth, 0.6, 1, 1,
- // "grid velocity", i, j, 3113);
+# if 0
+ BKE_sim_debug_data_add_vector(
+ clmd->debug_data, x, gvel, 0.4, 0, 1,
+ "grid velocity", i, j, 3112);
+ BKE_sim_debug_data_add_vector(
+ clmd->debug_data, x, gvel_smooth, 0.6, 1, 1,
+ "grid velocity", i, j, 3113);
+# endif
BKE_sim_debug_data_add_vector(
clmd->debug_data, x, dvel, 0.4, 1, 0.7, "grid velocity", i, j, 3114);
# if 0
@@ -1074,12 +1078,14 @@ static void cloth_continuum_step(ClothModifierData *clmd, float dt)
interp_v3_v3v3(col, col0, col1,
CLAMPIS(gdensity * clmd->sim_parms->density_strength, 0.0, 1.0));
- // BKE_sim_debug_data_add_circle(
- // clmd->debug_data, x, gdensity * clmd->sim_parms->density_strength, 0, 1, 0.4,
- // "grid velocity", i, j, 3115);
- // BKE_sim_debug_data_add_dot(
- // clmd->debug_data, x, col[0], col[1], col[2],
- // "grid velocity", i, j, 3115);
+# if 0
+ BKE_sim_debug_data_add_circle(
+ clmd->debug_data, x, gdensity * clmd->sim_parms->density_strength, 0, 1, 0.4,
+ "grid velocity", i, j, 3115);
+ BKE_sim_debug_data_add_dot(
+ clmd->debug_data, x, col[0], col[1], col[2],
+ "grid velocity", i, j, 3115);
+# endif
BKE_sim_debug_data_add_circle(
clmd->debug_data, x, 0.01f, col[0], col[1], col[2], "grid velocity", i, j, 3115);
}
diff --git a/source/blender/simulation/intern/hair_volume.cpp b/source/blender/simulation/intern/hair_volume.cpp
index 4966fa2510d..348c8683be9 100644
--- a/source/blender/simulation/intern/hair_volume.cpp
+++ b/source/blender/simulation/intern/hair_volume.cpp
@@ -112,9 +112,11 @@ BLI_INLINE int hair_grid_interp_weights(
uvw[1] = (vec[1] - gmin[1]) * scale - (float)j;
uvw[2] = (vec[2] - gmin[2]) * scale - (float)k;
- // BLI_assert(0.0f <= uvw[0] && uvw[0] <= 1.0001f);
- // BLI_assert(0.0f <= uvw[1] && uvw[1] <= 1.0001f);
- // BLI_assert(0.0f <= uvw[2] && uvw[2] <= 1.0001f);
+#if 0
+ BLI_assert(0.0f <= uvw[0] && uvw[0] <= 1.0001f);
+ BLI_assert(0.0f <= uvw[1] && uvw[1] <= 1.0001f);
+ BLI_assert(0.0f <= uvw[2] && uvw[2] <= 1.0001f);
+#endif
return offset;
}
@@ -350,7 +352,7 @@ BLI_INLINE int hair_grid_weights(
weights[6] = dist_tent_v3f3(uvw, (float)i, (float)(j + 1), (float)(k + 1));
weights[7] = dist_tent_v3f3(uvw, (float)(i + 1), (float)(j + 1), (float)(k + 1));
- // BLI_assert(fabsf(weights_sum(weights) - 1.0f) < 0.0001f);
+ // BLI_assert(fabsf(weights_sum(weights) - 1.0f) < 0.0001f);
return offset;
}
@@ -488,9 +490,10 @@ BLI_INLINE void hair_volume_add_segment_2D(HairGrid *grid,
BKE_sim_debug_data_add_dot(x2w, 0.1, 0.1, 0.7, "grid", 649, debug_i, j, k);
BKE_sim_debug_data_add_line(wloc, x2w, 0.3, 0.8, 0.3, "grid", 253, debug_i, j, k);
BKE_sim_debug_data_add_line(wloc, x3w, 0.8, 0.3, 0.3, "grid", 254, debug_i, j, k);
- // BKE_sim_debug_data_add_circle(
- // x2w, len_v3v3(wloc, x2w), 0.2, 0.7, 0.2,
- // "grid", 255, i, j, k);
+# if 0
+ BKE_sim_debug_data_add_circle(
+ x2w, len_v3v3(wloc, x2w), 0.2, 0.7, 0.2, "grid", 255, i, j, k);
+# endif
}
}
# endif
@@ -1003,9 +1006,10 @@ bool SIM_hair_volume_solve_divergence(HairGrid *grid,
if (!is_margin) {
float dvel[3];
sub_v3_v3v3(dvel, vert->velocity_smooth, vert->velocity);
- // BKE_sim_debug_data_add_vector(
- // grid->debug_data, wloc, dvel, 1, 1, 1,
- // "grid", 5566, i, j, k);
+# if 0
+ BKE_sim_debug_data_add_vector(
+ grid->debug_data, wloc, dvel, 1, 1, 1, "grid", 5566, i, j, k);
+# endif
}
if (!is_margin) {
@@ -1015,11 +1019,12 @@ bool SIM_hair_volume_solve_divergence(HairGrid *grid,
float col[3];
interp_v3_v3v3(col, col0, colp, d);
- // if (d > 0.05f) {
- // BKE_sim_debug_data_add_dot(
- // grid->debug_data, wloc, col[0], col[1], col[2],
- // "grid", 5544, i, j, k);
- // }
+# if 0
+ if (d > 0.05f) {
+ BKE_sim_debug_data_add_dot(
+ grid->debug_data, wloc, col[0], col[1], col[2], "grid", 5544, i, j, k);
+ }
+# endif
}
}
}