(
self, points: list[Point]
)
| 2346 | return self.add_contri2(points, deps) |
| 2347 | |
| 2348 | def enum_sides( |
| 2349 | self, points: list[Point] |
| 2350 | ) -> Generator[list[Point], None, None]: |
| 2351 | a, b, c, x, y, z = points |
| 2352 | yield [a, b, x, y] |
| 2353 | yield [b, c, y, z] |
| 2354 | yield [c, a, z, x] |
| 2355 | |
| 2356 | def enum_triangle( |
| 2357 | self, points: list[Point] |
no outgoing calls
no test coverage detected