// Setup the window size(550, 400); background(240); // light gray // Drawing the hut // Top in dark gray fill(153); triangle(275, 50, 350, 200, 200, 200); // The bottom in clay color fill(189, 127, 92); rect(200, 200, 150, 100); // The white door fill(255); rect(255, 250, 40, 50); // Windows in blue fill(66, 128, 163); rect(215, 215, 20, 20); rect(315, 215, 20, 20); // Landscapes (black lines) line(50, 300, 200, 300); line(350, 300, 500, 300); noFill();