(e)
| 399 | |
| 400 | @mark.parametrize("e", EDGES) |
| 401 | def test_curve_position(e): |
| 402 | |
| 403 | crv = Curve.fromEdge(e) |
| 404 | |
| 405 | for u in PARAMS: |
| 406 | assert np.allclose(np.array(e.positionAt(u, mode="param").toTuple()), crv(u)) |
| 407 | |
| 408 | |
| 409 | @mark.parametrize("e", EDGES) |
nothing calls this directly
no test coverage detected