mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
28 lines
733 B
Java
28 lines
733 B
Java
import vtk.*;
|
|
|
|
public class HelloWorld {
|
|
|
|
// Load VTK library and print which library was not properly loaded
|
|
static {
|
|
if (!vtkNativeLibrary.LoadAllNativeLibraries()) {
|
|
for (vtkNativeLibrary lib : vtkNativeLibrary.values()) {
|
|
if (!lib.IsLoaded()) {
|
|
System.out.println(lib.GetLibraryName() + " not loaded");
|
|
}
|
|
}
|
|
}
|
|
vtkNativeLibrary.DisableOutputWindow(null);
|
|
}
|
|
|
|
public static void main(String args[]) {
|
|
vtkRandomGraphSource source = new vtkRandomGraphSource();
|
|
|
|
vtkGraphLayoutView view = new vtkGraphLayoutView();
|
|
view.AddRepresentationFromInputConnection(source.GetOutputPort());
|
|
|
|
view.ResetCamera();
|
|
view.Render();
|
|
view.GetInteractor().Start();
|
|
}
|
|
}
|