Thank you David. I&#39;ll look at vtkTimeSourceExample.<br><br>About the threshold animation, if you animate both threshold sliders, you&#39;re most likely not going to see anything:<br>for example if the array contains the values 1,2,3,4,5,6,7,8,...,150 and you animate both sliders of threshold using the &quot;sequence&quot; mode of 100 frames. The threshold value at each frame will be 150/100, 2*150/100, ..., 150. <br>
So the threshold value at each frame won&#39;t match any value on the cells or points a not much will be displayed. <br>A range of threshold should be animated at each frame, instead of discrete values.<br>I was able to get something like that by using an &quot;exponentional&quot; interpolation on threshold range 0 and a &quot;rample&quot; on threshold range 1. The second slider was slightly ahead for the first and a small range of values was displayed at each frame.<br>
<br><div class="gmail_quote">On Tue, Jul 31, 2012 at 10:57 AM, David E DeMarle <span dir="ltr">&lt;<a href="mailto:dave.demarle@kitware.com" target="_blank">dave.demarle@kitware.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Mon, Jul 30, 2012 at 4:43 PM, Nehme Bilal &lt;<a href="mailto:nehmebilal@gmail.com">nehmebilal@gmail.com</a>&gt; wrote:<br>
&gt; Hello,<br>
&gt;<br>
&gt; I am trying to make a C++ reader for a point set file containing time steps.<br>
&gt; The output of the reader is a vtkPolyData.<br>
&gt;<br>
&gt; The file format is similar to:<br>
&gt; x1,y1,z1,prop1,prop2,...,time<br>
&gt;<br>
&gt; I would like to import the field &quot;time&quot; as time steps, in order to animate<br>
&gt; using &quot;snap to time steps&quot; mode.<br>
&gt;<br>
&gt; The code looks like:<br>
&gt;<br>
&gt;     vtkPolyData *output =<br>
&gt; vtkPolyData::SafeDownCast(outInfo-&gt;Get(vtkDataObject::DATA_OBJECT()));<br>
&gt;<br>
&gt;     Loop:<br>
&gt;             time = readTime();<br>
&gt;             coords = readCoords();<br>
&gt;<br>
&gt;             vtkIdType id = outPoints-&gt;InsertNextPoint(coords[0], coords[1],<br>
&gt; coords[2]);<br>
&gt;             outCells-&gt;InsertNextCell(1);<br>
&gt;             outCells-&gt;InsertCellPoint(id);<br>
&gt;<br>
&gt;     output-&gt;SetPoints(outPoints);<br>
&gt;     output-&gt;SetVerts(outCells);<br>
&gt;<br>
&gt; Assuming time is an integer, how do I insert the time steps into the output<br>
&gt; ?<br>
<br>
</div>You might want to make your reader tell VTK about the time in the<br>
standard way instead of encoding it as a separate point associated<br>
array. Then the time aware filters and animation controls will know<br>
what to do with it. To do so, make your reader announce the time steps<br>
it can produce in the RequestInformation method and respond with data<br>
for any particular requested time RequestData. See the<br>
vtkTimeSourceExample in the VTK source code for hints.<br>
<div class="im"><br>
&gt; I tried to import the time as an &quot;int property&quot; instead of time steps and<br>
&gt; animate using threshold, but I can&#39;t display one time step at a time because<br>
&gt; only one slider is animated.<br>
<br>
</div>I can&#39;t reproduce that. Use the + button twice on the animation view<br>
to two tracks. For one pick the threshold filter and it&#39;s threshold<br>
range (0) property. For the second choose it&#39;s threshold range (1)<br>
property. Using the pv binary on my system I can animate a dynamic<br>
threshold front with the wavelet source without any problem that way.<br>
<br>
&gt;<br>
&gt; Thank you,<br>
&gt;<br>
&gt; Nehme<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
</blockquote></div><br>