()
| 72 | public static void main(String s[]) { |
| 73 | SwingUtilities.invokeLater(new Runnable() { |
| 74 | public void run() { |
| 75 | JFrame frame = new JFrame("SimpleVTK"); |
| 76 | frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 77 | frame.getContentPane().setLayout(new BorderLayout()); |
| 78 | frame.getContentPane().add(new SimpleVTK(), BorderLayout.CENTER); |
| 79 | frame.setSize(400, 400); |
| 80 | frame.setLocationRelativeTo(null); |
| 81 | frame.setVisible(true); |
| 82 | } |
| 83 | }); |
| 84 | } |
| 85 | } |