// Hello, I am here today // My name is Morgan Gorbert // TITLE: test in calss exercise: make shapes // Author M.Gorbert: 9/5/14 size(300,200); background( 255,200,200 ); // pink bg rectMode( CORNER ); fill(255,255,0); rect( 50,50, 100,150 ); ellipseMode( CORNER ) ; fill(0,0,255); ellipse(50,50, 50,30); // Test: Draw Shapes // Author: MGorbert size(600,400); background(200,200,255); fill(255,0,255); textSize(30); text( "EXAMPLES", 100,45); // Test person // Author: MGorbert 9/5/14 size(300,400); background(155,230,300); // light blue fill(255,170,100); //body rectMode(CENTER); rect(150, 150, 70, 150); fill(255,170,150); // head rectMode(CENTER); rect(150,60, 50,50); fill(255,170,100); // legs rect(176,270, 19,90); rect(125,270,19,90); fill(0,0,255); // eyes ellipse(135,50, 13,10); ellipse(165,50, 13,10); fill(255,255,255); // pupils ellipse(134,50, 7,5); ellipse(164,50, 7,5); fill(255,170,150); // arms rectMode(CORNER); rect(25,90, 90,30); point(10,10); line(20,20, 30,30); fill(255,0,0); stroke(0,255,0); rect(50,50, 60,40); fill(0,255,0); noStroke(); rect(150,150, 100,75); triangle(20,20, 30,30, 50,150);