(self, draw_items: list, ex:float, ey:float, ctf: CoordTF)
| 163 | |
| 164 | |
| 165 | def plotScene(self, draw_items: list, ex:float, ey:float, ctf: CoordTF): |
| 166 | if self.edges: |
| 167 | for ed in self.edges: |
| 168 | self.netInfo.plotEdge(ed, draw_items, ex, ey, ctf) |
| 169 | |
| 170 | if self.junctions: |
| 171 | for jc in self.junctions: |
| 172 | self.netInfo.plotJunction(jc, draw_items, ex, ey, ctf) |
| 173 | |
| 174 | def exportScene(self): |
| 175 | roadgraph = RoadGraph() |
no test coverage detected