function walkOnSpheres(x, y) {
const {random, SQRT2} = Math;
const {distance} = nearest;
let steps = 20,
dist = distance[(x|0) + (y|0) * width];
while (steps-- && dist > SQRT2) {
const dx = x + dist * (random() + random() - random() - random()) * 0.25;
const dy = y + dist * (random() + random() - random() - random()) * 0.25;
if (dx >= 0 && dx < width) x = dx;
if (dy >= 0 && dy < height) y = dy;
dist = distance[(x|0) + (y|0) * width];
}
return nearest.color[(x|0) + (y|0) * width];
}