//New Hero //Brian Witte //Project Two float xBro=100; float yBro=100; void setup(){ size(600,400); background(255); ellipseMode(CENTER); rectMode(CENTER); } void draw(){ stroke(0); //Body fill(255,227,48); //Lego Yellow rect(xBro,yBro,100,100); line(xBro-30,yBro+50,xBro-30,yBro+80); line(xBro+30,yBro+50,xBro+30,yBro+80);//legs stroke(0); fill(0); rect(xBro,yBro+20,80,20);//mouth stroke(0); fill(255,0,0); rect(xBro,yBro+25,40,10); stroke(0); line(xBro,yBro+20,xBro,yBro+30); //tongue stroke(0); fill(255); ellipse(xBro,yBro-20,30,20); //eye stroke(0); fill(0); ellipse(xBro,yBro-20,10,10); text("BRO!!!", xBro-25, yBro+45); //name }