@SimonH Please create a new thread in the future for different issues. It makes it easily accessible to other people facing the same issue.
- Prefer using VTK 9 (latest version) over an older version. It would make future upgrades easier.
- Prefer using the
QVTKOpenGLNativeWidget
unless your app is doing stereo rendering. - Instead of calling
update
on theQVTKOpenGLNativeWidget
, callRender
on thevtkRenderWindow
associated with the widget. That is the recommended way to update a VTK scene. In this case, it will also schedule anupdate
on the Qt widget.