ColorEdges
VTKExamples/Python/Graphs/ColorEdges
Other Languages
See (Cxx)
Code¶
ColorEdges.py
#!/usr/bin/env python import vtk def main(): graph = vtk.vtkMutableDirectedGraph() # Create a graph v1 = graph.AddVertex() v2 = graph.AddVertex() v3 = graph.AddVertex() graph.AddGraphEdge(v1,v2) graph.AddGraphEdge(v2,v3) # Create the color array edgeColors = vtk.vtkIntArray() edgeColors.SetNumberOfComponents(1) edgeColors.SetName("Color") lookupTable = vtk.vtkLookupTable() lookupTable.SetNumberOfTableValues(2) lookupTable.SetTableValue(0, 1.0, 0.0, 0.0) # red lookupTable.SetTableValue(1, 0.0, 1.0, 0.0) # green lookupTable.Build() edgeColors.InsertNextValue(0) edgeColors.InsertNextValue(1) # Add the color array to the graph graph.GetEdgeData().AddArray(edgeColors) graphLayoutView = vtk.vtkGraphLayoutView() graphLayoutView.AddRepresentationFromInput(graph) graphLayoutView.SetLayoutStrategy("Simple 2D") graphLayoutView.GetLayoutStrategy().SetEdgeWeightField("Graphs") graphLayoutView.GetLayoutStrategy().SetWeightEdges(1) graphLayoutView.SetEdgeColorArrayName("Color") graphLayoutView.SetEdgeLabelVisibility(1) graphLayoutView.ColorEdgesOn() theme = vtk.vtkViewTheme() theme.SetCellLookupTable(lookupTable) graphLayoutView.ApplyViewTheme(theme) graphLayoutView.ResetCamera() graphLayoutView.Render() graphLayoutView.GetLayoutStrategy().SetRandomSeed(0) graphLayoutView.GetInteractor().Initialize() graphLayoutView.GetInteractor().Start() if __name__ == '__main__': main()