Convert wires to a list of faces.
(wireList: list[Wire])
| 5036 | |
| 5037 | |
| 5038 | def wiresToFaces(wireList: list[Wire]) -> list[Face]: |
| 5039 | """ |
| 5040 | Convert wires to a list of faces. |
| 5041 | """ |
| 5042 | |
| 5043 | return Face.makeFromWires(wireList[0], wireList[1:]).Faces() |
| 5044 | |
| 5045 | |
| 5046 | def edgesToWires(edges: Iterable[Edge], tol: float = 1e-6) -> list[Wire]: |
no test coverage detected