08 教孩子学编程 随机圆形动画
2020-05-05 本文已影响0人
Mack老师
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);
}