Crawl the figure and process all axes
(self, fig)
| 119 | return code |
| 120 | |
| 121 | def crawl_fig(self, fig): |
| 122 | """Crawl the figure and process all axes""" |
| 123 | with self.renderer.draw_figure(fig=fig, props=utils.get_figure_properties(fig)): |
| 124 | for ax in fig.axes: |
| 125 | self.crawl_ax(ax) |
| 126 | |
| 127 | def crawl_ax(self, ax): |
| 128 | """Crawl the axes and process all elements within""" |
no test coverage detected