Thanks for the reply. Hopefully @Forrest can point me in the right direction or ask for some more information if needed. I’m connecting the pipeline within the representation using connectPipeline (in the vtk WidgetRepresentation), as such:
model.pipelines = {
handle: {
source: publicAPI,
mapper: vtkMapper.newInstance(),
actor: vtkActor.newInstance({ pickable: false }),
},
};
vtkWidgetRepresentation.connectPipeline(model.pipelines.handle);
publicAPI.addActor(model.pipelines.handle.actor);