// Joshua Badlu Cst 112 2012 Feb 8 //albino spider with purple background(255,255,255); size(620,480); text( "" , 100, 100); stroke(0,0,0); //front leg strokeWeight(5); line(50,30,72,50); line(50,30,20,145); //back leg strokeWeight(5); line(170,30,130,110); line(173,29,190,135); //rect fill( 255,255,255 ); rectMode(CENTER); //body rect(110, 80,75, 65); //face rect(65, 85, 60, 70); //small purple square eyes rectMode(CENTER); fill( random(255), random(255), random(255), random(255)); //other eye //body fill(255, 0, 255); //mouth rect(50, 100, 10, 10); rect(60, 85, 10, 10); rect(70, 100, 10, 10); rect(40, 85, 10, 10); rect(80, 85, 10, 10);