(points: list[Point])
| 685 | |
| 686 | |
| 687 | def check_para(points: list[Point]) -> bool: |
| 688 | a, b, c, d = points |
| 689 | ab = Line(a, b) |
| 690 | cd = Line(c, d) |
| 691 | if ab.same(cd): |
| 692 | return False |
| 693 | return ab.is_parallel(cd) |
| 694 | |
| 695 | |
| 696 | def check_perp(points: list[Point]) -> bool: |
no test coverage detected