systemgraph_display.py 347 B

12345678910111213
  1. import networkx as nx
  2. import matplotlib.pyplot as plt
  3. def show_system(system_graph):
  4. g=nx.Graph()
  5. for e in system_graph.system_edges:
  6. g.add_edge(e.start_vertex.system_data.source_id,e.end_vertex.system_data.source_id)
  7. nx.draw(g,with_labels=True)
  8. plt.show()
  9. def show_floor(floor_graph):
  10. for s in floor_graph.system_graphs:
  11. show_system(s)