:returns: All the vertices in this Shape
(self)
| 903 | return out |
| 904 | |
| 905 | def Vertices(self) -> list[Vertex]: |
| 906 | """ |
| 907 | :returns: All the vertices in this Shape |
| 908 | """ |
| 909 | |
| 910 | return [Vertex(i) for i in self._entities("Vertex")] |
| 911 | |
| 912 | def Edges(self) -> list[Edge]: |
| 913 | """ |