xxxxxxxxxx
29
let displayFont;
function setup() {
createCanvas(800, 800, WEBGL);
noSmooth();
pixelDensity(0.5);
displayFont = loadFont("DMMono-Regular.ttf");
}
function draw() {
background(0);
fill('white');
textFont(displayFont);
textSize(24);
text("self", 0, 0, 0);
noFill();
stroke('white');
rotateX(frameCount * 0.001);
rotateY(frameCount * 0.001);
box(500);
fill('white');
textFont(displayFont);
textSize(24);
text("self", 0, 0, 0);
}