xxxxxxxxxx
33
function setup() {
createCanvas(400, 400);
}
function draw() {
background("lightblue");
rect(200, 100, 150, 100)
fill("pink");
strokeWeight(15);
stroke("purple");
push();
strokeWeight(5);
stroke(0);
fill(255,255,255, 220);
circle(200, 150, 200)
pop();
rect(50, 150, 100, 200)
fill("orange");
strokeWeight(25);
stroke("blue");
}