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/TextWidget (content was: "File:VTK Examples Python Widgets TextWidget.png A simple example of annotating a VTK image with movable and resizable text. ==TextWidget.py== <source lang="python"> #!/usr/bin/env python # -*- coding: utf-8 -*- # # by Panos Mavrogiorgos, email : pmav99 >a< gmail import vtk source = vtk.vtkSphereSource() output = source.GetOutput() mapper = vtk.vtkPolyDataMapper() if vtk.VTK_MAJOR_VERSION <= 5: mapper.SetInput(output) else: mapper.SetInputData(output) actor...")