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).
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Widgets/CompassWidget (content was: "File:VTK_Examples_Python_Widgets_CompassWidget.png Draws an interactive compass. * Contributed by Jothy ==Build Requirements== VTK_USE_GEOVIS:BOOL=ON (For VTK < VTK 5.4). ==CompassWidget.py== <source lang="python"> #!/usr/bin/env python import vtk # sphere sphereSource = vtk.vtkSphereSource() sphereSource.SetCenter(0.0, 0.0, 0.0) sphereSource.SetRadius(4.0) mapper = vtk.vtkPolyDataMapper() if vtk.VTK_MAJOR_VERSION <= 5: mapper.SetInput(sphereSource.GetOutput())...")