Map a wire onto a base face in the u,v space.
(base: Shape, w: Shape, tol: float = 1e-6, N: int = 20)
| 5951 | |
| 5952 | |
| 5953 | def wireOn(base: Shape, w: Shape, tol: float = 1e-6, N: int = 20) -> Wire: |
| 5954 | """ |
| 5955 | Map a wire onto a base face in the u,v space. |
| 5956 | """ |
| 5957 | |
| 5958 | rvs = [edgeOn(base, e, tol=tol, N=N) for e in w.Edges()] |
| 5959 | |
| 5960 | return wire(rvs) |
| 5961 | |
| 5962 | |
| 5963 | @multidispatch |