run = {
const blurred = new Float32Array(values.length);
while (what.length || entropy > 0) {
const t = d3.mean(values);
const e = d3.extent(values);
const s = d3.deviation(values);
blurred.set(values);
d3.blur2({ width: w, data: blurred }, curvature);
if (entropy > 0) {
for (let i = 0; i < values.length; i++)
values[i] += (Math.random() - 0.5) * entropy;
}
if (what.includes("equalize")) {
for (let i = 0; i < values.length; i++)
values[i] = -0.5 + (values[i] - t) / s;
}
if (what.includes("border")) {
const M = -1;
let k;
for (let i = 0; i < w; i++) {
values[i] = Math.min(values[i], M);
values[(k = i + (h - 1) * w)] = Math.min(values[k], M);
}
for (let i = 0; i < h; i++) {
values[(k = i * w)] = Math.min(values[k], M);
values[(k = w - 1 + i * w)] = Math.min(values[k], M);
}
}
if (what.includes("mean curvature flow")) {
for (let i = 0; i < values.length; i++)
values[i] += (blurred[i] - values[i]) * 0.7;
}
visual.update(values);
yield e;
}
}