xxxxxxxxxx
46
let font
function preload() {
font = loadFont('/EBGaramond-Regular.ttf')
}
function setup() {
createCanvas(600, 600);
frameRate(10);
textFont(font);
textSize(14);
//textAlign(CENTER, CENTER);
}
function draw() {
background(220);
let phrases = ['hazardous pluck flustered', 'fibrous livid in a mince'];
let phrase = random(phrases);
let margin = 10;
translate(margin, margin *4);
for (let y=0; y < 30; y+= 1){
text('as', 100, y * 20);
if (y<=20){
text('a', 120, 180 + 20 *y);
text(phrase, 140, 200 + 20 * y);
}
}
}