(self, image)
| 2445 | return image |
| 2446 | |
| 2447 | def _update_image_limits(self, image): |
| 2448 | xmin, xmax, ymin, ymax = image.get_extent() |
| 2449 | self.axes.update_datalim(((xmin, ymin), (xmax, ymax))) |
| 2450 | |
| 2451 | def add_line(self, line): |
| 2452 | """ |
no test coverage detected