<div dir="ltr">Hi guys.<div><br></div><div>I found a solution to this problem, but I don't think it is the easiest one. Anyway, it goes like this:</div><div><br></div><div>Two views are created, the 1st is a 3D RenderView and the 2nd is a SpreadSheetView. The time-varying surfaces are shown in the first view and the time-varying tables are shown in the second view. Then, all I need to do in my Python script is to iterate over these two views and set the time step I want.</div><div><br></div><div><div><font face="monospace, monospace">Views = GetViews()</font></div><div><font face="monospace, monospace"><br></font></div><div><span style="font-family:monospace,monospace">for time in range(0,NMaxSteps):</span><br></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">    for view in range(0,numpy.size(Views)):</font></div><div><font face="monospace, monospace">        SetActiveView(Views[view])</font></div><div><font face="monospace, monospace">        GetActiveView().ViewTime = time</font></div><div><font face="monospace, monospace">        Render()</font></div></div><div><br></div><div>Thanks,<font face="monospace, monospace"><br></font></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Matheus Viana</b></span></font></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Postdoctoral Research Employee</b></span></font></div><div><b><span style="color:rgb(85,85,85);line-height:16px;font-family:Helvetica,Arial,sans-serif;font-size:13px">Developmental and Cell Biology</span></b></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>University of California Irvine</b></span></font></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b><br></b></span></font><b><i><br></i></b></div></div></div></div>
<br><div class="gmail_quote">2015-12-07 3:28 GMT-02:00 Matheus Viana <span dir="ltr"><<a href="mailto:vianamp@gmail.com" target="_blank">vianamp@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi guys.<div><br></div><div>I am facing an interesting problem. I loaded in Paraview a polyData surface that changes in time. I have 10 time steps for this surface. At the same time, I have for each time step, a text file containing xyz coordinates. When I load these text files in Paraview, they are represented as vtkTables.</div><div><br></div><div>My problem is that the polydata surface and the vtkTable cannot be displayed on the same view in Paraview as far as I know. Therefore, when I use</div><div><br></div><div><div><font face="monospace, monospace">view = GetActiveView()</font></div><div><font face="monospace, monospace">view.ViewTime = time_step_I_want</font></div><div><font face="monospace, monospace">Render()</font></div></div><div><br></div><div>to update the time to the time step I want, only one of the two are actually updated, depending on which is is being shown in the view.</div><div><br></div><div>Is there any way to force a given source (surface and table in this case) to jump to a particular time step?</div><div><br></div><div>Thanks,</div><div><br clear="all"><div><div><div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Matheus Viana</b></span></font></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Postdoctoral Research Employee</b></span></font></div><div><b><span style="color:rgb(85,85,85);line-height:16px;font-family:Helvetica,Arial,sans-serif;font-size:13px">Developmental and Cell Biology</span></b></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>University of California Irvine</b></span></font></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b><br></b></span></font><b><i><br></i></b></div></div></div></div>
</div></div>
</blockquote></div><br></div>