import java.awt.*; import java.lang.*; import javax.swing.*; /** * CS-20 Asn 7 * ArtOMatic.java * Purpose: Randomly draw shapes * * @author Your Name Here * @version 1.0 10/19/03 */ public class ArtOMatic extends JFrame { final int NUM_SHAPES = 15; /** * Contructor that tests drawing shapes */ public ArtOMatic() { } /** * Draw shapes * * @param g graphics context */ public void paint(Graphics g) { } /** * Create a TestDrawWindow object * * @param args -- not used */ public static void main(String args[]) { ArtOMatic window = new ArtOMatic(); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.setSize(500, 500); window.show(); } }