xxxxxxxxxx
25
let s0 = "the glitch creates a fissure within which new possibilities of being and becoming manifest";
let words;
function setup() {
createCanvas(windowWidth, windowHeight);
textFont("monospace");
textSize(24);
textAlign(LEFT, TOP);
fill(255);
noLoop();
words = s0.split(" ");
}
function draw() {
background(220, 20, 120);
for (let i = 0; i < words.length; i++) {
let word = words[i].toUpperCase();
let xy = map(i, 0, words.length, 0, width);
text(word, xy, xy);
}
}