>[...]
> public static void main(String[] args)
> {
> Frame myFrame = new Frame("Voronoi");
> myFrame.addWindowListener(
> new WindowAdapter(){
> public void windowClosing(WindowEvent e){
> applet.stop();
> applet.destroy();
> System.exit(0);
> }
> });
> myFrame.setSize(640,480);
> applet = new Voronoiapplet();
> applet.setSize(640,480);
> applet.init();
try to insert the following:
myFrame.setLayout (new BorderLayout()); // set layout of frame
myFrame.add (applet, BorderLayout.CENTER); // add applet to frame
> applet.start();
> myFrame.setVisible(true);
> }
>[...]
ciao, Thorsten
|