xxxxxxxxxx
30
function setup() {
createCanvas(500, 400);
}
function draw() {
background("pink");
fill("green")
rect(0,250,500,400)
for (let x = 50; x <= width; x += 150) {
let y = 100;
// Building body
fill("#B0C4DE");
rect(x, y, 100, 200);
// Triangular rooftop
fill("#4682B4");
triangle(x - 10, y, x + 50, y - 50, x + 110, y);
// Windows
fill(random(255), random(255), random(255));
for (let i = 0; i < 4; i++) {
rect(x + 10, y + 30 + i * 40, 30, 30);
rect(x + 60, y + 30 + i * 40, 30, 30);
}
}
}