xxxxxxxxxx
23
let s0 = "This is a string";
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 20, 120);
textSize(40);
textFont("serif");
text(s0, 50, 50);
textSize(20);
textFont("monospace");
text(s0, mouseX, mouseY);
textSize(10);
textFont("sans-serif");
for(let y = 50; y < height; y += 20) {
text(s0, 250, y);
}
}