I working on a PySide/vtk GUI using QVTKRenderWindowInteractor
widget class.
The widget is working well, unless when I try to add a orientation axis (see image) using vtkOrientationMarkerWidget
:
axesActor = vtk.vtkAxesActor();
axes = vtk.vtkOrientationMarkerWidget()
axes.SetOrientationMarker(axesActor)
axes.SetInteractor(self.iren)
self.ren.AddActor(axesActor)
axes.EnabledOn() # <== application freeze-crash
axes.InteractiveOn()
A similar bug has been already reported for ubuntu, showing that the bug is reproduced only with Qt example, while the same example without Qt works well.