(
self, points: list[Point]
)
| 2354 | yield [c, a, z, x] |
| 2355 | |
| 2356 | def enum_triangle( |
| 2357 | self, points: list[Point] |
| 2358 | ) -> Generator[list[Point], None, None]: |
| 2359 | a, b, c, x, y, z = points |
| 2360 | yield [a, b, a, c, x, y, x, z] |
| 2361 | yield [b, a, b, c, y, x, y, z] |
| 2362 | yield [c, a, c, b, z, x, z, y] |
| 2363 | |
| 2364 | def enum_triangle2( |
| 2365 | self, points: list[Point] |
no outgoing calls
no test coverage detected