Wild circles with while loops
Watch Fun Programming [video 24]
Here is Mr. Fun’s Basic program
size(400,400);
background(0);
noFill();
stroke(255);
float i=0;
while (i < 100)
{
ellipse(width/2, height/2,100+i, 100+i);
i = i+2;
}
Modify Mr. Fun’s program to create something incredible and awesome... here’s mine:
Show a mentor, mark the board and claim a prize.