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:42, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/GeometricObjects/Display/Arrow (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_GeometricObjects_TestArrow.png</div> ==Arrow.py== <source lang="python"> # arrow.py adapted from the C++ vtk examples and translated to python. import vtk arrowSource = vtk.vtkArrowSource() #arrowSource.SetShaftRadius(0.01) #arrowSource.SetTipLength(.9) # Create a mapper and actor mapper = vtk.vtkPolyDataMapper() mapper.SetInputConnection(arrowSource.GetOutputPort()) actor = vtk.vtkActor() actor.SetMapper(mapper) # V...")