Graph.layout.update() is called the given number of iterations.
(self, iterations=10, **kwargs)
| 518 | return partition(self) |
| 519 | |
| 520 | def update(self, iterations=10, **kwargs): |
| 521 | """ Graph.layout.update() is called the given number of iterations. |
| 522 | """ |
| 523 | for i in range(iterations): |
| 524 | self.layout.update(**kwargs) |
| 525 | |
| 526 | def draw(self, weighted=False, directed=False): |
| 527 | """ Draws all nodes and edges. |
no outgoing calls
no test coverage detected