xxxxxxxxxx
34
let teal = "#43b8b0";
let circles = [ 20, 100, 40, 5, 80];
function setup() {
createCanvas(windowWidth, windowHeight);
textFont("Fira Code");
textSize(16);
}
function draw() {
background(teal);
noStroke();
fill(0);
textAlign(LEFT);
textSize(16);
text(`var array = [${circles}];`, 30, 50);
displayCircles();
}
function displayCircles(){
for (i in circles){
x = width/10 + (i * width/5);
y = height/2;
r = circles[i];
textSize(13);
circle(x, y, r);
textAlign(CENTER);
text(`array[${i}] = ${circles[i]}`, width/10 + (i * width/5), height-30);
}
}