(ellipse)
| 21 | |
| 22 | |
| 23 | def test_ellipse(ellipse): |
| 24 | assert ellipse.aspect_ratio == 2 |
| 25 | np.testing.assert_equal(ellipse.contains_points(np.asarray([[0, 0], [10, 10]])), [True, False]) |
| 26 | |
| 27 | |
| 28 | def test_ellipse_similarity(ellipse): |
nothing calls this directly
no test coverage detected