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:40, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Graphs/VisualizeGraph (content was: "File:VTK_Examples_Python_Graphs_VisualizeGraph.png * Contributed by Jim McCusker * Note: AddEdge() is not enabled through python, but AddGraphEdge() is. ==VisualizeGraph.py== <source lang="python"> #!/usr/bin/env python import vtk g = vtk.vtkMutableDirectedGraph() v1 = g.AddVertex() v2 = g.AddVertex() g.AddGraphEdge(v1, v2) g.AddGraphEdge(v1, v2) graphLayoutView = vtk.vtkGraphLayoutView() graphLayoutView.AddRepresentationFromInput(g) graphLayoutView.SetLayoutStrateg...")