All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 02:42, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Animation (content was: "This example uses a timer to move a sphere across a scene. * Contributed by: Bryan Conrad ==Animation.py== <source lang="python"> from __future__ import print_function import vtk class vtkTimerCallback(): def __init__(self): self.timer_count = 0 def execute(self,obj,event): print(self.timer_count) self.actor.SetPosition(self.timer_count, self.timer_count,0); iren = obj iren.GetRenderWindow().Render() self.timer_count += 1 de...")