xxxxxxxxxx
48
function setup() {
createCanvas(400, 400);
background(0, 150, 200);
}
function draw() {
//grass
fill(0, 200, 150);
noStroke();
rect(0, 360, 400, 50);
//house
stroke(0)
fill(248, 131, 121)
rect(100, 200, 200, 170);
//door
fill(255, 220, 220);
rect(180, 300, 40, 70);
//doorknob
fill(255, 210, 0);
circle(189, 340, 7);
//left windowpane
fill(140, 190, 200)
rect(120, 250, 45, 50);
line(142.5, 250, 142.5, 300);
line(120, 275, 165, 275);
//right windowpane
rect(235, 250, 45, 50);
line(257.5, 250, 257.5, 300);
line(235, 275, 280, 275);
//chimney
fill(150, 75, 0);
rect(245, 157, 25,65)
//roof
fill(248, 131, 121)
rect(90, 200, 220, 25);
//sun
fill(255, 255, 0);
circle(105, 70, 70)
}