| 3348 | def test_as_mpl_axes_api(): |
| 3349 | # tests the _as_mpl_axes api |
| 3350 | class Polar: |
| 3351 | def __init__(self): |
| 3352 | self.theta_offset = 0 |
| 3353 | |
| 3354 | def _as_mpl_axes(self): |
| 3355 | # implement the matplotlib axes interface |
| 3356 | return PolarAxes, {'theta_offset': self.theta_offset} |
| 3357 | |
| 3358 | prj = Polar() |
| 3359 | prj2 = Polar() |
no outgoing calls
searching dependent graphs…