level 4
纯色是今日晨
楼主
void setup(){
size(300,300);
}
void draw(){
background(255);
smooth();
noFill();
for(int d=0;d<75;d+=4){
for(int x=0;x<350;x +=75){
for(int y=0;y<350;y +=75){
stroke(random(255),random(255),255);
strokeWeight(4);
ellipse(x,y,d,d);
}
}
}
fill(map(mouseX,0,width,0,255),map(mouseY,0,height,0,255),map(mouseX,0,width,0,255));
ellipse(mouseX,mouseY,75,75);
}
各位大神 谁能在这个运动的基础上帮我加一个音乐 随便一个音乐就可以 求助求助大神
2014年12月15日 15点12分
1
size(300,300);
}
void draw(){
background(255);
smooth();
noFill();
for(int d=0;d<75;d+=4){
for(int x=0;x<350;x +=75){
for(int y=0;y<350;y +=75){
stroke(random(255),random(255),255);
strokeWeight(4);
ellipse(x,y,d,d);
}
}
}
fill(map(mouseX,0,width,0,255),map(mouseY,0,height,0,255),map(mouseX,0,width,0,255));
ellipse(mouseX,mouseY,75,75);
}
各位大神 谁能在这个运动的基础上帮我加一个音乐 随便一个音乐就可以 求助求助大神