xxxxxxxxxx
45
function setup() {
createCanvas(400, 400);
}
function draw() {
background('rgb(221,241,221)');
strokeWeight(2)
stroke(0)
for( let x=0; x <=width; x +=20 ){
for (let y=0; y <=height; y+=20){
fill("255,0,0,50");
stroke("rgb(222,231,222)")
strokeWeight(0.5)
line(x,y,10,10);
}
}
for( let x=0; x <=width; x +=20 ){
for (let y=0; y <=height; y+=20){
fill("255,0,0,50");
stroke("rgb(228,235,228)")
strokeWeight(0.5)
line(x,y,200,200);
}
}
for( let x=0; x <=width; x +=20 ){
for (let y=0; y <=height; y+=20){
fill("255,0,0,50");
stroke("rgb(233,243,233)")
strokeWeight(0.5)
line(x,y,399,399);
}
}
for( let x=0; x <=width; x +=20 ){
for (let y = 0; y <=height; y+=20){
fill("green");
ellipse(x,y,15,15);
}
}
for( let x=0; x <=width; x +=20 ){
for (let y=0; y <=height; y+=20){
fill("rgb(168,168,233)");
rect(x,y,15,15);
}
}
}