[vtkusers] wxVTKRenderWindowInteractor segfaults
Dominik Szczerba
dominik at itis.ethz.ch
Wed Aug 24 17:31:38 EDT 2011
I am doing something as simple as:
class MyFrame(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, -1, title,
size=wx.Size(400,400))
# self.widget = wxVTKRenderWindowInteractor(self, -1)
class App(wx.App):
def OnInit(self):
self.frame1 = MyFrame(None,'test1')
self.frame1.Show()
return True
if __name__ == '__main__':
app = App(0)
app.MainLoop()
The moment I uncomment the line with wxVTKRenderWindowInteractor I get
a crash. Ubuntu 11.04 64bit vtk 5.6.1. Any ideas?
Dominik
More information about the vtkusers
mailing list