xxxxxxxxxx
24
function setup() {
createCanvas(400, 400);
}
function draw() {
background(176, 216, 229);
fill("orange");
stroke("blue");
strokeWeight(25);
rect(200,100, 150,100);
fill(255, 255, 255, 200);
stroke("black");
strokeWeight(5);
circle(200,150,200);
fill("pink");
beginShape()
stroke("purple")
strokeWeight(15)
rect(50,150, 100,200);
}