xxxxxxxxxx
36
let font;
function preload() {
font = loadFont("PragmaticaMedium.otf");
}
function setup() {
background(0);
createCanvas(windowWidth, windowHeight, WEBGL);
textFont(font);
textSize(20);
}
function draw() {
background(0);
let cellX = 50;
let cellY = 50;
randomSeed(11);
push();
scale(tan(frameCount*0.005)*10);
translate(-width/8,-height/8);
//rotateY(frameCount*0.01);
for(let x=-0;x<10;x++) {
for(let y=-0;y<10;y++) {
let z = random(-500,500);
push();
translate(x*cellX,y*cellY,z);
rotateY((frameCount + x*y)*0.01);
text("*",0,0)
pop();
}
}
pop();
}