xxxxxxxxxx
28
let grotesk;
let alphabetArray1;
function preload() {
grotesk = loadFont("soundwave.ttf");
}
function setup() {
createCanvas(600, 600);
textFont(grotesk);
alphabetArray1 = grotesk.textToPoints(
"BC",
width / 2 - 195,
height / 2 + 140,
200
);
}
function draw() {
background(220);
fill(100, mouseY * 0.5, 255);
strokeWeight(1);
for (let i = 0; i < alphabetArray1.length; i++) {
rect(alphabetArray1[i].x, alphabetArray1[i].y, 8, -mouseY / 10);
}
}