xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
fill(255);
rect(40, 40, 160, 160);
rect(200, 200, 160, 160);
fill(0);
rect(200, 40, 160, 160);
rect(40, 200, 160, 160);
fill(255);
circle(280, 120, 80);
circle(120, 280, 80);
fill(0);
circle(120, 120, 80);
circle(280, 280, 80);
}