(points: list[Point])
| 787 | |
| 788 | |
| 789 | def check_eqratio(points: list[Point]) -> bool: |
| 790 | a, b, c, d, e, f, g, h = points |
| 791 | ab = a.distance(b) |
| 792 | cd = c.distance(d) |
| 793 | ef = e.distance(f) |
| 794 | gh = g.distance(h) |
| 795 | return close_enough(ab * gh, cd * ef) |
| 796 | |
| 797 | |
| 798 | def check_cong(points: list[Point]) -> bool: |
nothing calls this directly
no test coverage detected