xxxxxxxxxx
38
function drawSky(){
fill('skyblue')
rect(0, 0, width, height/2)
}
function drawLand(){
fill('green')
rect(0, height/2, width, height)
}
function drawSun(){
stroke('orange')
fill('yellow')
circle(50, 50, 50)
}
function drawHouse(){
stroke(0)
strokeWeight(3)
fill('white')
rect(200, 100, 100, 100)
rect(220, 200, 25, -50)
beginShape()
vertex(200, 100)
vertex(250, 50)
vertex(300, 100)
endShape(CLOSE)
}
function setup() {
createCanvas(400, 300);
drawSky()
drawLand()
drawHouse()
drawSun()
}