xxxxxxxxxx
59
let x = 0;
let y = 0;
let paragraph =
"Thank you for coming, I've been feeling a little down lately I must admit. I really appreciate you being here, it helps when someone comes to talk to you. I've just been so busy theres been so much happenening lately and I dont know what to do. I've even lost some friendships too, that's been the toughest part. Then again I feel I'm telling you these things but I don't think that you're really listening... are you? ";
let fontspace = 10;
let font = "JMH Typewriter.ttf";
let counter = 0;
let angleDistortion = 0.0;
function preload() {
let font = "JMH Typewriter.ttf";
}
function setup() {
createCanvas(displayWidth, displayHeight);
background(0);
cursor(CROSS);
fill("white");
textSize(20);
textFont(font);
textAlign(LEFT);
}
function draw() {
if (mouseIsPressed) {
let d = dist(x, y, mouseX, mouseY);
textSize(fontspace);
let newLetter = paragraph.charAt(counter);
if (d > fontspace) {
let angle = atan2(mouseY - y, mouseX - x);
push();
translate(x, y);
rotate(angle + random(angleDistortion));
text(newLetter, 0, 0);
pop();
counter++;
if (counter >= paragraph.length) counter = 0;
x = x + cos(angle) * fontspace;
y = y + sin(angle) * fontspace;
}
}
}
function mousePressed() {
x = mouseX;
y = mouseY;
}