()
| 949 | |
| 950 | |
| 951 | def test_nan_overlap(): |
| 952 | a = mtransforms.Bbox([[0, 0], [1, 1]]) |
| 953 | b = mtransforms.Bbox([[0, 0], [1, np.nan]]) |
| 954 | assert not a.overlaps(b) |
| 955 | |
| 956 | |
| 957 | def test_transform_angles(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…