:returns: All the edges in this Shape
(self)
| 910 | return [Vertex(i) for i in self._entities("Vertex")] |
| 911 | |
| 912 | def Edges(self) -> list[Edge]: |
| 913 | """ |
| 914 | :returns: All the edges in this Shape |
| 915 | """ |
| 916 | |
| 917 | return [ |
| 918 | Edge(i) |
| 919 | for i in self._entities("Edge") |
| 920 | if not BRep_Tool.Degenerated_s(TopoDS.Edge(i)) |
| 921 | ] |
| 922 | |
| 923 | def Compounds(self) -> list[Compound]: |
| 924 | """ |