(self, d: Direction)
| 3023 | yield p, a, b, c |
| 3024 | |
| 3025 | def two_points_on_direction(self, d: Direction) -> tuple[Point, Point]: |
| 3026 | l = d.neighbors(Line)[0] |
| 3027 | p1, p2 = l.neighbors(Point)[:2] |
| 3028 | return p1, p2 |
| 3029 | |
| 3030 | def two_points_of_length(self, l: Length) -> tuple[Point, Point]: |
| 3031 | s = l.neighbors(Segment)[0] |
no test coverage detected