()
| 497 | |
| 498 | |
| 499 | def test_spline_params(): |
| 500 | |
| 501 | s1 = spline([(0, 0), (0, 1), (1, 1)], params=[0, 1, 2]) |
| 502 | p1 = s1.positionAt(1, mode="parameter") |
| 503 | |
| 504 | assert p1.toTuple() == approx((0, 1, 0)) |
| 505 | |
| 506 | |
| 507 | def test_text(): |
nothing calls this directly
no test coverage detected