import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class TestIgoGraphicPanel{

  public static void main(String[] args){

    JFrame frame=new JFrame("TestFrame");
    frame.setSize(700,750);
    frame.getContentPane().setLayout(null);
    frame.addWindowListener(new WindowAdapter(){
      public void windowClosing(WindowEvent e){
        System.exit(0);
      }
    });

    IgoGraphicPanel panel=new IgoGraphicPanel();
    panel.setSize(650,650);
    panel.setBackground(Color.LIGHT_GRAY);
    panel.setLocation(0,0);
    frame.getContentPane().add(panel);
    frame.setVisible(true);
  }
}