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:
Diffstat (limited to 'source/blender/simulation/intern/SIM_mass_spring.cpp')
-rw-r--r--source/blender/simulation/intern/SIM_mass_spring.cpp36
1 files changed, 21 insertions, 15 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);
}