(self, points: list[Point])
| 2430 | return add |
| 2431 | |
| 2432 | def check_contri(self, points: list[Point]) -> bool: |
| 2433 | a, b, c, x, y, z = points |
| 2434 | return ( |
| 2435 | self.check_cong([a, b, x, y]) |
| 2436 | and self.check_cong([b, c, y, z]) |
| 2437 | and self.check_cong([c, a, z, x]) |
| 2438 | ) |
| 2439 | |
| 2440 | def add_contri2( |
| 2441 | self, points: list[Point], deps: EmptyDependency |