Mesh.edge_strip
- Mesh.edge_strip(edge, return_faces=False)[source]
Find all edges on the same strip as a given edge.
- Parameters:
- edgetuple[int, int]
The identifier of the starting edge.
- return_facesbool, optional
Return the faces on the strip in addition to the edges.
- Returns:
- list[tuple[int, int]] | tuple[list[tuple[int, int]], list[int]]
If return_faces is False, the edges on the same strip as the given edge. If return_faces is False, the edges on the same strip and the corresponding faces.