(self)
| 3000 | yield x, y, z, t |
| 3001 | |
| 3002 | def all_colls(self) -> Generator[tuple[Point, ...], None, None]: |
| 3003 | for l in self.type2nodes[Line]: |
| 3004 | for x, y, z in utils.perm3(l.neighbors(Point)): |
| 3005 | yield x, y, z |
| 3006 | |
| 3007 | def all_midps(self) -> Generator[tuple[Point, ...], None, None]: |
| 3008 | for l in self.type2nodes[Line]: |