package AlgorithmAnimation; import javax.swing.JFrame; public class AlgorithmAnimation { public static void main(String[] args) { JFrame frame = new AnimationFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }