/*
author: 	Andrew Carra
created:	03.15.99
*/

import java.awt.*;
import java.applet.*;
import java.awt.event.*;

public class matrixss extends Applet
{

    matrixDisplay md;

    public static void main (String args[]) {
	matrixss blah = new matrixss();
        blah.init();

    }

    public void init()
    {
	md = new matrixDisplay();
	md.setSize(400,250);
	md.show();
    }

    public void destroy()
    {
	if (md != null) {
	try {
   	    md.close();
	} catch (Exception ex) { /*we were shutting down anyway*/ }
    }
  }
}

