xxxxxxxxxx
23
let cols = 40, rows = 40, s = 600, step = (s / cols), factor = 0.01;
function setup() {
createCanvas(s, s - step);
textSize(step);
fill(255);
}
function draw() {
background(0);
for(let y = 1; y < rows; y++) {
for(let x = 0; x < cols; x++) {
n = noise(x * factor, y * factor, frameCount*0.01) * 3;
n = (n - int(n)) * 3;
cx = cos(n);
cy = sin(n);
string = floor(map(cx * cy, -0.5, 0.45, 0, 10));
text(string, x * step + 3, y * step);
}
}
}