|
size(300,300);
//background(255,185,255);
for(int i=0; i<300; i=i+20){
for(int j=0; j<300; j=j+20){
//if()
//lu桒 fill(190,255,122);
rect(i,j,18,18);
fill(122,122,122);
rect(i+5,j+5,18,18);
//x
// strokeWeight(1);
stroke(0,120,0);
line(i,j,i+10,j+10);
line(i,j,i+15,j+10);
line(i,j,i+15,j+13);
//uル
fill(255,0,122);
ellipse(i+10,j+10,12,12);
//z~
point(i,j);
}
}
|