(points: list[Point])
| 796 | |
| 797 | |
| 798 | def check_cong(points: list[Point]) -> bool: |
| 799 | a, b, c, d = points |
| 800 | return close_enough(a.distance(b), c.distance(d)) |
| 801 | |
| 802 | |
| 803 | def check_midp(points: list[Point]) -> bool: |
nothing calls this directly
no test coverage detected