xxxxxxxxxx
34
let font;
function preload() {
font = loadFont("Inter-Medium.ttf");
}
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
textFont(font);
textSize(40);
}
function draw() {
background(0);
let cellX = 40;
let cellY = 40;
randomSeed(10);
push();
rotateY(frameCount*0.01);
for(let x=-0;x<10;x++) {
for(let y=-0;y<10;y++) {
let off = tan((frameCount + x *y)*0.01)*10;
let z = random(-100,100) + off;
push();
translate(x*cellX,y*cellY,z);
//rotateY((frameCount + x*y)*0.01);
text("ok",0,0)
pop();
}
}
pop();
}