xxxxxxxxxx
20
let akzident;
let texto = "FORA BOLSONARO"
/*function preload() {
akzident = loadFont('assets/akzident_boldcond.otf');
}
*/
function setup() {
createCanvas(100, 100);
//textFont(inconsolata);
textSize(width / 3);
textAlign(CENTER, CENTER);
}
function draw() {
background(0);
let time = millis();
rotateX(time / 1000);
rotateZ(time / 1234);
text(texto, 0, 0);
}