xxxxxxxxxx
27
var x;
let font;
function preload() {
font = loadFont("PragmaticaMedium.otf");
}
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
textFont(font);
textSize(windowWidth*0.1);
}
function draw() {
background(220);
push();
translate(-windowWidth/2,-windowHeight/2);
for (let x=100; x<windowWidth; x++){
for (let y=100; y<windowHeight; y++){
text("Remix me", x,y);
}}
pop();
}