Iterate over edges in an ordered way.
(self)
| 3254 | return rv |
| 3255 | |
| 3256 | def __iter__(self) -> Iterator[Edge]: |
| 3257 | """ |
| 3258 | Iterate over edges in an ordered way. |
| 3259 | |
| 3260 | """ |
| 3261 | |
| 3262 | exp = BRepTools_WireExplorer(self.wrapped) |
| 3263 | |
| 3264 | while exp.Current(): |
| 3265 | yield Edge(exp.Current()) |
| 3266 | exp.Next() |
| 3267 | |
| 3268 | |
| 3269 | class Face(Shape): |