import java.awt.BorderLayout;

import javax.swing.JFrame;

import vtk.vtkPanel;

public class TestVTK {
	public static void main(String[] args) {
		vtkPanel panel = new vtkPanel();
		//

		//
		JFrame f = new JFrame("kljh");
		f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		f.setSize(500, 500);
		f.setLocationRelativeTo(null);
		f.getContentPane().setLayout(new BorderLayout());
		f.getContentPane().add(panel, BorderLayout.CENTER);
		f.setVisible(true);

	}
}
