()
| 62 | |
| 63 | @fixture |
| 64 | def rotated_circles() -> list[Curve]: |
| 65 | |
| 66 | pts1 = np.array([v.toTuple() for v in circle(1).sample(100)[0]]) |
| 67 | pts2 = np.array([v.toTuple() for v in circle(1).moved(z=1, rz=90).sample(100)[0]]) |
| 68 | |
| 69 | c1 = periodicApproximate(pts1) |
| 70 | c2 = periodicApproximate(pts2) |
| 71 | |
| 72 | return [c1, c2] |
| 73 | |
| 74 | |
| 75 | def test_periodic_dm(): |
nothing calls this directly
no test coverage detected