xxxxxxxxxx
48
function setup() {
createCanvas(400, 400); // Create a canvas
background(173, 216, 230); // Light blue background
// Draw two white clouds
fill(255);
noStroke();
ellipse(70, 70, 80, 50);
ellipse(140, 90, 100, 60);
// Draw a green tree with a brown trunk
fill(139, 69, 19); // Brown color for trunk
rect(320, 220, 20, 80); // Tree trunk
fill(0, 128, 0); /
ellipse(310, 200, 60, 60);
ellipse(340, 200, 60, 60);
ellipse(320, 180, 60, 60);
// sun
fill(255, 255, 0);
ellipse(30, 30, 60, 60);
// building
fill(255, 182, 193);
noStroke();
rect(100, 50, 200, 300);
// windows
fill(169, 169, 169, 150);
stroke(255);
strokeWeight(2);
rect(120, 70, 60, 60);
rect(200, 70, 60, 60);
rect(120, 150, 60, 60);
rect(200, 150, 60, 60);
rect(120, 230, 60, 60);
rect(200, 230, 60, 60);
}
function draw() {
backgrou
}