xxxxxxxxxx
float height, width;
int count;
void setup() {
size(400, 400);
frameRate(150);
background(200, 200, 200);
smooth();
noStroke();
count = 0;
}
void draw() {
ellipse(count*6, count*6, height*1.5, width*1.5);
height =height+random(0.5,2.5);
width = width+random(0.5,2.5);
for (int i=0;i<=400;i+=10) {
for (int j=0;j<=400;j+=10) {
ellipse(i, j, random(0.1, 8), random(0.1, 10));
fill(i-random(150, 220), random(150, 220), j-random(100, 120), 70);
}
}
count = count+1;
if (count == 80) {
noLoop(); //draw stop
}
}