Return all nodes.
(self)
| 534 | return list(self.type2nodes[Point]) |
| 535 | |
| 536 | def all_nodes(self) -> list[gm.Node]: |
| 537 | """Return all nodes.""" |
| 538 | return list(self._name2node.values()) |
| 539 | |
| 540 | def add_points(self, pnames: list[str]) -> list[Point]: |
| 541 | """Add new points with given names in list pnames.""" |
nothing calls this directly
no outgoing calls
no test coverage detected