Koija, > But I have still no clue how to make the pvserver render the scene remotely > and only transfer the rendered image to the pvpython client instead of all 3D > datasets (which will be huge).
By default, ParaView will do remote rendering, if possible when the geometry size exceeds ~20MBs. You can change it as following to force remote rendering for all data. ... simple.Show(simple.Cone()) view = simple.GetActiveView() view.RemoteRenderThreshold = 0 Utkarsh _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Search the list archives at: http://markmail.org/search/?q=ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
