(self)
| 40 | return [p[0]/ratio, p[1]/ratio, 0] |
| 41 | |
| 42 | def clear_edges(self): |
| 43 | self.g.clear_edges() |
| 44 | |
| 45 | for k in self.arrows: |
| 46 | self.scene.play(FadeOut(k, run_time=0.3)) |
| 47 | self.arrows = [] |
| 48 | |
| 49 | def add_edge_internal(self, i, j): |
| 50 | if i == j: |
nothing calls this directly
no outgoing calls
no test coverage detected