xxxxxxxxxx
57
let font
function preload() {
font = loadFont('/EBGaramond-VariableFont_wght.ttf');
//echoesLines = loadStrings('a mi padre.txt');
}
function setup() {
createCanvas(900, 900);
textFont(font);
textAlign(LEFT, CENTER);
frameRate(60);
echoesLines = loadStrings('naufragio.txt');
}
function draw() {
console.log(frameCount);
background(255);
fill(0);
//textSize(60 / (frameCount *2));
textSize(5);
let amount = frameCount;
let step = 180.0 / amount;
let easing = 0.05;
push();
translate(width/2, height/2);
for (let i = 0; i < amount; i++){
let rotation = step*i*easing;
push();
rotate(radians(rotation * 80));
for (let b = 0; b < echoesLines.length; b++){
text(echoesLines, 20+i, 0);
}
pop();
}
pop();
}