xxxxxxxxxx
37
var vetorLetras = ['A','B','C','D', 'E', 'F','G'];
var lx;
var ly;
var vLx = [];
var vLy = [];
var totalLetras;
var vLetraAletorias = [];
function setup() {
createCanvas(400, 400);
totalLetras =10;
for ( i=0; i<totalLetras; i++){
vLx[i] = random(0,400);
vLy[i] = -random(50,500);
vLetraAletorias[i] = vetorLetras[ parseInt(random(0,vetorLetras.length)) ]
}
console.log(vLetraAletorias);
frameRate(30);
}
function draw() {
background(220);
textSize(14);
for (i=0; i< totalLetras; i++){
text(vLetraAletorias[i], vLx[i], vLy[i]);
vLy[i] = vLy[i] + 5;
if (vLy[i] > 400 ){
vLy[i] = -random(50,200);
}
}
}