//carrie mae ..computation08.. 4/15/08 Venn Diagram void setup() { size(750, 700); } void draw() { background(0); noStroke(); smooth(); fill(237, 159, 176, 120); // pink ellipse(240, 220, 400, 400); fill(312, 204, 47, 120); // orange ellipse(500, 407, 450, 340); fill(51, 204); // grey ellipse(240, 480, 300, 340); // fill(174, 221, 60, 80); // green // ellipse(100,340, 180,200); PFont font1; font1 = loadFont("Tahoma-Bold-30.vlw"); textFont(font1); fill(42); // dk grey textSize(18); text("fine art", 149, 100); fill(42); // grey text("mythology", 442, 320); text("psychology", 460, 340); fill(22); // Gray text("computation", 125, 470); fill(22); // Gray // text("science", 15, 360); fill(0); text("data", 290, 360); text("visual", 290, 380); text("ization", 280, 400); PFont font2; font2 = loadFont("Ayuthaya-12.vlw"); textFont(font2); fill(42); // dk grey text("painting ", 149, 120); text("installation", 149, 140); text("sculpture ", 149, 160); text("printing ", 149, 180); text("matthew ritchie, jared tarbell, paula scher", 100,220); fill(42); // grey text("macro/micro worlds", 465, 360); text("hummingbird/whale story", 465, 380); text("macro/micro worlds", 465, 360); text("hummingbird/whale story", 465, 380); text("macro/micro worlds", 465, 360); text("hummingbird/whale story", 465, 380); text("psychology data, mythological stories,", 425, 460); text("scientific experiments", 450, 480); text("yantras", 347, 300); text("mandalas", 342, 320); fill(22); // Gray text("databases", 130, 490); text("networks", 130, 510); text("algorithms", 130, 530); text("internet", 130, 550); text("web design", 180, 370); text("graphic design", 160, 390); text("interaction", 300, 460); text("design", 320, 475); // text("bio-mimmicry", 20, 375); // text("repetition", 25, 390); }