noise-tool: remove noisy debug messages
This commit is contained in:
parent
250b8d21ec
commit
b752e78036
@ -102,8 +102,6 @@ hydraulic_erode (util::image::buffer<float> &height, const unsigned ticks)
|
|||||||
water[i] -= EVAPORATION;
|
water[i] -= EVAPORATION;
|
||||||
height[i] += SOLUBILITY * EVAPORATION;
|
height[i] += SOLUBILITY * EVAPORATION;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cerr << "eroded: " << total << '\n';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// forcibly evaporate all remaining water.
|
// forcibly evaporate all remaining water.
|
||||||
@ -177,8 +175,6 @@ thermal_erode (util::image::buffer<float> &height,
|
|||||||
if (h[7] < centre) height[(y + 1) * height.s + (x + 0)] += dist;
|
if (h[7] < centre) height[(y + 1) * height.s + (x + 0)] += dist;
|
||||||
if (h[8] < centre) height[(y + 1) * height.s + (x + 1)] += dist;
|
if (h[8] < centre) height[(y + 1) * height.s + (x + 1)] += dist;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cerr << "eroded: " << total << '\n';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user