/** * Precedents and Research * by M. Bethancourt * * Examines the relationship between the web, community, and music * Mouse press reveals examples */ PImage img1, img2; void setup() { size(450, 450); } void draw() { img1 = loadImage("ven3.png"); img2 = loadImage("ven3-overlay.png"); image(img1, 0, 0); if(mousePressed){ tint(255, 200); image(img2, 0, 0); } }