(points: list[Point])
| 801 | |
| 802 | |
| 803 | def check_midp(points: list[Point]) -> bool: |
| 804 | a, b, c = points |
| 805 | return check_coll(points) and close_enough(a.distance(b), a.distance(c)) |
| 806 | |
| 807 | |
| 808 | def check_simtri(points: list[Point]) -> bool: |
nothing calls this directly
no test coverage detected