(self, points: list[Point])
| 1115 | return self.is_equal(ab, cd) |
| 1116 | |
| 1117 | def check_npara(self, points: list[Point]) -> bool: |
| 1118 | if self.check_para(points): |
| 1119 | return False |
| 1120 | return not nm.check_para([p.num for p in points]) |
| 1121 | |
| 1122 | def _get_angle( |
| 1123 | self, d1: Direction, d2: Direction |
no test coverage detected