()
| 33 | |
| 34 | @fixture |
| 35 | def circles() -> list[Curve]: |
| 36 | |
| 37 | # u,v periodic |
| 38 | c1 = circle(1).toSplines() |
| 39 | c2 = circle(5) |
| 40 | |
| 41 | cs = [ |
| 42 | Curve.fromEdge(c1.moved(loc)) |
| 43 | for loc in c2.locations(np.linspace(0, 1, 10, False)) |
| 44 | ] |
| 45 | |
| 46 | return cs |
| 47 | |
| 48 | |
| 49 | @fixture |