//test driver class that draws a dot and make it move each redraw
//modified from computer insights Arnold UTM
//mbooth 2005 12

//import section
import javax.swing.*;//gui
import java.awt.*; //application windowing tool
import java.awt.image.*;

public class DrawingPanelTest
{
	public static void main(String [] args)
    {
		JFrame aFrame=new JFrame("Drawing Demo"); // The main frame
		DrawingPanel aPanel = new DrawingPanel();

        //set up frame
        aFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		aFrame.getContentPane().add(aPanel, BorderLayout.CENTER);
		aFrame.setSize(200,200);
		aFrame.setVisible(true);
	} //end of main
}//ennd of DrawingPanel

