// TITLE: SOCCER FIELD
// Author: Daniel Polit

size(500,300);
background(0,255,00);

// Goal Post, left
rect(0,110, 20,5);
rect(0,190, 20,5);
rect(20,110, 5,85);

// Goal Post, right
rect(480,110, 20,5);
rect(480, 190, 20,5);
rect(475,110, 5, 85);

// Middle Field line
fill(0,255,0);
stroke(255,255,255);
ellipse(250,150, 100,100);
fill(255,255,255);
rect(250,0, 3,500);
