import javax.swing.JApplet;

/**
 * This class is an applet that simply shows a BasicAnimationPanel.
 * The animation runs continuously as long as the applet exists.
 * It can be used on a web page by including the class files
 * BasicAnimationApplet.class and BasicAnimationPanel.class in the
 * same directory as the HTML source file for the web page and adding
 * an appropriate applet tag to the HTML file.  (It is also possible
 * to use a jar file containing the class files.  In that case,
 * an "archive" attribute must be added to the applet tag.)
 */
public class BasicAnimationApplet extends JApplet {

	public void init() {
		BasicAnimationPanel panel = new BasicAnimationPanel();
		setContentPane(panel);
	}

}
