xxxxxxxxxx
42
function setup() {
createCanvas(512, 512);
background(255,255,255)
strokeWeight(2);
stroke(9,7,24);
fill(255,255,255);
rect(2,2,508,508);
noStroke();
let magenta = color(255,0,128);
fill(magenta);
for(let e=1; e<64; e++){
for(let i=1; i<64; i++){
let x = i*8 - 4;
let y = e*8 - 4;
rect(x,y,7,7);
}
}
fill(255,255,0,100);
rect(30,30,256,256);
rect(60,90,375,360);
rect(90,60,235,240);
rect(120,120,256,256);
rect(180,200,296,276);
rect(232,232,256,256);
}
//function draw() {
// background(220);
//}