Return all nodes of type Point.
(self)
| 530 | return g, added |
| 531 | |
| 532 | def all_points(self) -> list[Point]: |
| 533 | """Return all nodes of type Point.""" |
| 534 | return list(self.type2nodes[Point]) |
| 535 | |
| 536 | def all_nodes(self) -> list[gm.Node]: |
| 537 | """Return all nodes.""" |
no outgoing calls