(offset)
| 501 | |
| 502 | @pytest.mark.parametrize('offset', range(-720, 361, 45)) |
| 503 | def test_full_arc(offset): |
| 504 | low = offset |
| 505 | high = 360 + offset |
| 506 | |
| 507 | path = Path.arc(low, high) |
| 508 | mins = np.min(path.vertices, axis=0) |
| 509 | maxs = np.max(path.vertices, axis=0) |
| 510 | np.testing.assert_allclose(mins, -1) |
| 511 | np.testing.assert_allclose(maxs, 1) |
| 512 | |
| 513 | |
| 514 | @pytest.mark.parametrize('theta2', [ |