<div dir="ltr">Have a look at <a href="http://www.cmake.org/Wiki/VTK/Examples/Python/Animation">http://www.cmake.org/Wiki/VTK/Examples/Python/Animation</a><br><br>Jothy<br><br><div class="gmail_quote">On Thu, Mar 11, 2010 at 5:05 AM, Gib Bogle <span dir="ltr">&lt;<a href="mailto:g.bogle@auckland.ac.nz">g.bogle@auckland.ac.nz</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I wish to repeatedly render a scene with many actors (cones for now) that may change their positions as time progresses (i.e. I am creating a movie).  I can render the scene OK, but I see that the way I&#39;m doing it is just adding actors each time step, whereas I want to redraw all the actors each time (or possibly, if I get clever, only those that have moved).  This what I&#39;m doing in Python:<br>

<br>
    def QVTKRenderWidgetCones(self,page_VTK):<br>
        &quot;&quot;&quot;A simple example that uses the QVTKRenderWindowInteractor class.&quot;&quot;&quot;<br>
        if self.first_VTK:<br>
            self.first_VTK = False<br>
            layout = QtGui.QVBoxLayout(page_VTK)<br>
<br>
            # create the widget<br>
            self.VTKscene = QVTKRenderWindowInteractor(page_VTK)<br>
            self.VTKscene.Initialize()<br>
            self.VTKscene.Start()<br>
            renWin = self.VTKscene.GetRenderWindow()<br>
<br>
            layout.addWidget(self.VTKscene)<br>
            self.ren = vtk.vtkRenderer()<br>
            renWin.AddRenderer(self.ren)<br>
<br>
            cone = vtk.vtkConeSource()<br>
            cone.SetResolution(8)<br>
            self.coneMapper = vtk.vtkPolyDataMapper()<br>
            self.coneMapper.SetInput(cone.GetOutput())<br>
<br>
#        self.ren.Clear()<br>
#        for actor in self.ren.GetActors():<br>
#            self.ren.RemoveActor(actor)<br>
<br>
        print self.ren.GetActors()<br>
<br>
        n = self.ncells<br>
        coneActor = [0]*n<br>
        for i in range(0,n):<br>
            coneActor[i] = vtk.vtkActor()<br>
            coneActor[i].SetMapper(self.coneMapper)<br>
            self.ren.AddActor(coneActor[i])<br>
            cp = self.cellpos[i]<br>
            x = int(cp[2])<br>
            y = int(cp[3])<br>
            z = int(cp[4])<br>
            coneActor[i].SetPosition(x, y, z)<br>
<br>
        # show the widget<br>
        self.VTKscene.show()<br>
        self.VTKscene.Render()<br>
<br>
I tried to use ren.Clear(), but that obviously clears everything, and I discovered that a collection is not a list and therefore my attempt to use ren.RemoveActor() failed.  What is the right (i.e. fast) way to do this?<br>

<br>
Thanks<br>
Gib<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>