(
self, points: list[Point]
)
| 2362 | yield [c, a, c, b, z, x, z, y] |
| 2363 | |
| 2364 | def enum_triangle2( |
| 2365 | self, points: list[Point] |
| 2366 | ) -> Generator[list[Point], None, None]: |
| 2367 | a, b, c, x, y, z = points |
| 2368 | yield [a, b, a, c, x, z, x, y] |
| 2369 | yield [b, a, b, c, y, z, y, x] |
| 2370 | yield [c, a, c, b, z, y, z, x] |
| 2371 | |
| 2372 | def add_simtri( |
| 2373 | self, points: list[Point], deps: EmptyDependency |
no outgoing calls
no test coverage detected