()
| 11 | |
| 12 | |
| 13 | def _default_ax(): |
| 14 | import matplotlib.pyplot as plt |
| 15 | |
| 16 | ax = plt.gca() |
| 17 | ax.grid(True) |
| 18 | ax.set_aspect("equal") |
| 19 | return ax |
| 20 | |
| 21 | |
| 22 | def _path_from_polygon(polygon): |
no outgoing calls
no test coverage detected
searching dependent graphs…