import javax.swing.JFrame;

/**
 * This class can be run as an application.  It's main() routine
 * simply opens a window that shows a RandomArtPanel.  This
 * window remains open until the user closes the window.
 */
public class ArtSubroutinesFrame extends JFrame {

	public static void main(String[] args) {
		JFrame artWindow = new JFrame("Is It Art");
		ArtSubroutinesPanel panel = new ArtSubroutinesPanel();
		artWindow.setContentPane(panel);
		artWindow.setLocation(80,50);
		artWindow.pack();
		artWindow.setResizable(false);
		artWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		artWindow.setVisible(true);
	}
	
}
