(self, graphics_items: list, ex: float, ey: float, ctf: CoordTF)
| 334 | return roadgraph, vehicles |
| 335 | |
| 336 | def plotScene(self, graphics_items: list, ex: float, ey: float, ctf: CoordTF): |
| 337 | if self.edges: |
| 338 | for ed in self.edges: |
| 339 | self.netInfo.plotEdge(ed, graphics_items, ex, ey, ctf) |
| 340 | |
| 341 | if self.junctions: |
| 342 | for jc in self.junctions: |
| 343 | self.netInfo.plotJunction(jc, graphics_items, ex, ey, ctf) |
nothing calls this directly
no test coverage detected