xxxxxxxxxx
37
let font;
function preload() {
font = loadFont("Smokum-Regular.ttf");
}
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
textFont(font);
textSize(windowWidth*0.15);
}
function draw() {
background(0);
fill(random(255),random(255),random(255),200,100);
textAlign(CENTER);
push();
for (let i=0;i<15;i++) {
translate(0,tan(frameCount*0.01)*200*i);
rotateX((frameCount*0.007)*i);
rotateY((frameCount*0.01));
rotateZ(sin(frameCount*0.01));
text("GLITCH", 10,0);
}
}