level 4
size(300,300);
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);
}
}
}
2014年10月29日 07点10分
1
level 7
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);
}
}
}
}
2014年10月29日 08点10分
3
回复 纯色是今日晨 :您的QQ号多少啊 我加您
2014年10月29日 10点10分
回复 纯色是今日晨 :我就简单学了一下,不深
2014年10月29日 10点10分