/* April Grow (agrow) * November 18, 2009 * Processing Monster for Film 20c at UCSC * Monster inspired by mb09's BlinkEyeMonster: * http://www.rmx.cz/monsters/blink_eye_monster/index.html * * World class: draws the static bushes and floor for the world. */ class World{ /* Draw * Draws the Background and bushes. * No need to push/pop because no transformations are taking place. */ void draw(){ fill(0, 0, 0); // Bushes stroke(255); strokeWeight(3); // Left group ellipse(100, 350, 100, 200); ellipse(40, 370, 80, 180); ellipse(80, 380, 75, 100); ellipse(0, 390, 20, 30); // Middle group ellipse(240, 390, 30, 250); ellipse(210, 390, 50, 150); ellipse(300, 400, 150, 175); ellipse(375, 390, 80, 80); // Right group ellipse(520, 390, 50, 230); ellipse(600, 390, 100, 100); ellipse(500, 395, 50, 50); ellipse(550, 320, 30, 300); ellipse(550, 390, 60, 60); noStroke(); // Ground quad(0, height-10, width, height-10, width, height, 0, height); } }