xxxxxxxxxx
38
function setup() {
createCanvas(500, 400);
}
function draw() {
background("#E4A09B");
for (var x = 50; x <= width; x += 160) {
var y = 50;
fill("green")
rect(x, y, 100, 200);
// border
fill("#222118")
rect(x + 5, y + 5, 90, 190)
// windows
fill("lightblue")
rect(x + 10, y + 10, 80, 95);
rect(x + 10, y + 110, 80, 80);
//bottom
fill("#CCC05C")
rect(x -10 , y + 200, 120, 10)
//top
fill("#CCC05C")
rect(x -10 , y -10, 120, 10)
}
}
function mousePressed() {
// save("windows.png")
}