int x=100;
int direction=1;
void setup(){
size(640,640);
background(255);
}
void draw(){
//background(255);
fill(255,0,255,50);
ellipse(random(width),random(height),50,50);
}
void setup(){
size(640,640);
background(255);
}
void draw(){
//background(255);
fill(255,10);
rect(0,0,640,640);
fill(255,0,255,100);
ellipse(random(width),random(height),50,50);
}
网友评论