//test class that draws a dot and make it appear to move towards you
//modified from computer insights Arnold UTM
//mbooth 2005 12

//import section
import javax.swing.*;

//class declaration
class UseImprovedAnimationPanel
{
	public static void main(String [] args)
    {
		//variables
        JFrame aFrame;
        ImprovedAnimationPanel aPanel;

        //construct frame and panel
        aFrame=new JFrame("Improved Animation Panel");
        aPanel =  new ImprovedAnimationPanel();

        //set up frame
		aFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		aFrame.setContentPane(aPanel);
		aFrame.setSize(100,100);
		aFrame.setVisible(true);
	} //end of main
}//end of testdriver