import java.awt.*;
import javax.swing.*;
import java.util.ArrayList;
import java.util.Iterator;
/**
 * Write a description of class MyDrawIT here.
 * 
 * @author David
 * @version Olson
 * @updates and changes by Michael Rivers 
 * April 18th 2006
 */
public class MyDrawIT extends DrawIT
{
	// instance variables - replace the example below with your own
	
  

public void init()
	{
	  super.init();
	  
	   
	   //Add items you want in the picture here.
	  
	 //One way to add items
	 //MyOval oval1;
	 //oval1 = new MyOval(150,150,100,100,Color.blue);
	 //shapeList.add(oval1);
	 
	  //A second way to add them in a single line
	  shapeList.add(new MyOval(40,100,100,100,Color.blue));
	  shapeList.add(new MyOval(160,100,100,100,Color.black));
	  shapeList.add(new MyOval(280,100,100,100,Color.red));
	  shapeList.add(new MyOval(100,150,100,100,Color.yellow));	 
	  shapeList.add(new MyOval(220,150,100,100,Color.green));
	}
}
