xxxxxxxxxx
26
function setup() {
createCanvas(400, 400);
}
function draw() {
background('lightBlue');
//orange rect
strokeWeight(25);
stroke('blue');
fill('orange');
rect(200, 100, 150, 100);
//circle
strokeWeight(5);
stroke(0);
fill(250, 200);
circle(200, 150, 200);
//pink rect
strokeWeight(15);
stroke('purple');
fill('pink');
rect(50, 150, 100, 200);
}