(self, node: dpg.node, ex: float, ey: float, ctf: CoordTF)
| 287 | return roadgraph, vehicles |
| 288 | |
| 289 | def plotScene(self, node: dpg.node, ex: float, ey: float, ctf: CoordTF): |
| 290 | if self.edges: |
| 291 | for ed in self.edges: |
| 292 | self.netInfo.plotEdge(ed, node, ex, ey, ctf) |
| 293 | |
| 294 | if self.junctions: |
| 295 | for jc in self.junctions: |
| 296 | self.netInfo.plotJunction(jc, node, ex, ey, ctf) |
nothing calls this directly
no test coverage detected