(points: list[Point])
| 837 | |
| 838 | |
| 839 | def check_ratio(points: list[Point]) -> bool: |
| 840 | a, b, c, d, m, n = points |
| 841 | ab = a.distance(b) |
| 842 | cd = c.distance(d) |
| 843 | return close_enough(ab * n, cd * m) |
| 844 | |
| 845 | |
| 846 | def draw_angle( |
nothing calls this directly
no test coverage detected