HW #2
HW #2, Fan Lan, MLA 3rd-year, 09-01-19 void setup() { // set up a window size(1200, 580); // first is width, second is height // set background color background(255, 208, 126); noStroke(); // takes away outline to shapes in my window smooth(); //draw sky fill (254, 238, 160); quad(0, 85, 1200, 103, 1200, 255,0, 188); fill (252, 252, 215); quad(0, 188, 1200, 255, 1200, 300,0, 360); //draw lawn fill (131, 252, 194); quad(0, 360, 1200, 300, 1200, 580, 0, 680); fill (219, 253, 138); quad(0, 480, 1200, 500, 1200, 580, 0, 680); //draw mountain fill (148, 167, 101); triangle(0, 360, 350, 108, 450, 338); fill (148, 167, 101); triangle(770, 321, 900, 128, 1100, 305); fill (184, 214, 112); triangle(250, 349, 429, 150, 500, 336); fill (184, 2...