Hi,<br><br>I have been reading Paraview Scripting with Python document. <br>I have installed  paraview from ubuntu repository. Everything was<br>working ok for following script (I could see a cone on the pop-up window as in <br>
Paraview Scripting with Python manual).<br><br>I decided to download the source code and build it from scratch. It was ok <br>Paraview was working correctly, but now this script works but I got <br>blank pop-up windows and don&#39;t see the cone any more.<br>
<br><br>do yo have any idea what might have been gone wrong?<br><br>Thanks,<br><br><br clear="all">from paraview import servermanager<br>import time<br>import os<br><br>connection=servermanager.Connect(&#39;localhost&#39;)<br>
coneSource = servermanager.sources.ConeSource()<br>coneSource.Resolution = 32<br>coneSource.Center[0:3]=[1,2,3]<br><br>shrinkFilter = servermanager.filters.ShrinkFilter(Input=coneSource)<br><br>shrinkFilter.UpdatePipeline()<br>
shrinkFilter.UpdatePipelineInformation()<br><br>view = servermanager.CreateRenderView()<br>rep = servermanager.CreateRepresentation(shrinkFilter, view)<br>view.StillRender()<br>view.ResetCamera()<br>view.StillRender()<br>
time.sleep(4)<br>-- <br>B. Gazi YILDIRIM<br>