import vtk.vtkCellPicker;
import vtk.vtkGenericRenderWindowInteractor;
import vtk.vtkInteractorStyleTrackballCamera;
+import vtk.vtkObject;
import vtk.vtkObjectBase;
import vtk.vtkPanel;
import vtk.vtkPointPicker;
public InteractiveVtkPanel() {
super();
+
+ // This is actually a static method in C++
+ new vtkObject().GlobalWarningDisplayOff();
+
iren = new vtkGenericRenderWindowInteractor();
iren.SetRenderWindow(rw);
iren.TimerEventResetsTimerOff();
import vtk.vtkAssemblyNode;
import vtk.vtkAssemblyPath;
import vtk.vtkCellPicker;
+import vtk.vtkObject;
import vtk.vtkObjectBase;
import vtk.vtkPointPicker;
import vtk.vtkProp;
public InteractiveVtkComposite(Composite parentComposite) {
super(parentComposite);
this.parentComposite = parentComposite;
-
- // TODO Auto-generated constructor stub
+
+ // This is actually a static method in C++
+ new vtkObject().GlobalWarningDisplayOff();
}
private boolean updating = false;