xxxxxxxxxx
22
let cols = 60, rows = 60, s = 600, step = (s / cols), factor = 0.01;
let strings = ['+', '-', '=', '*', '#', '_', "|", "°", '<', '■'];
var simplex = new SimplexNoise()
function setup() {
createCanvas(s, s - step);
textSize(step+2);
fill(215);
}
function draw() {
background(0);
for(let y = 1; y < rows; y++) {
for(let x = 0; x < cols; x++) {
n = simplex.noise3D(x * factor, y * factor, frameCount*0.015);
n = (n - int(n));
i = floor(map(cos(n) * sin(n), -0.5, 0.8, 0, 10));
text(strings[i], x * step + 3, y * step);
}
}
}