import java.awt.*;
import javax.swing.*;
import java.util.ArrayList;
import java.util.Iterator;
/**
 * Write a description of class MyDrawITJrJr here.
 * 
 * @author Michael Rivers
 * @version April 18th 2006
 */
public class MyDrawITJrJr extends DrawIT
{

    public void init()
    {
        super.init();
        
        shapeList.add(new MyCircle(100,50,30,Color.pink));
        shapeList.add(new MyCircle(107,55,8,Color.black,true));
        shapeList.add(new MyCircle(117,55,8,Color.black,true));
        shapeList.add(new MyOval(105,65,20,6,Color.red,true));
        shapeList.add(new MyOval(98,80,50,100,Color.blue));
        shapeList.add(new MyRectangle(50,85,55,15,Color.green,true));
        shapeList.add(new MyRectangle(130,90,55,15,Color.orange));
        shapeList.add(new MyRectangle(100,160,22,50,Color.magenta));
        shapeList.add(new MyRectangle(135,155,23,55,Color.blue,true));
        shapeList.add(new MySquare(40,90,25,Color.yellow)); 
        shapeList.add(new MySquare(170,85,20,Color.orange,true));
    }
}
