(self)
| 2728 | return added, plevel |
| 2729 | |
| 2730 | def all_eqangle_same_lines(self) -> Generator[tuple[Point, ...], None, None]: |
| 2731 | for l1, l2 in utils.perm2(self.type2nodes[Line]): |
| 2732 | for a, b, c, d, e, f, g, h in utils.all_8points(l1, l2, l1, l2): |
| 2733 | if (a, b, c, d) != (e, f, g, h): |
| 2734 | yield a, b, c, d, e, f, g, h |
| 2735 | |
| 2736 | def all_eqangles_distinct_linepairss( |
| 2737 | self, |
no outgoing calls
no test coverage detected