(self, other: Line)
| 192 | return other.greater_than(self) |
| 193 | |
| 194 | def same(self, other: Line) -> bool: |
| 195 | a, b, c = self.coefficients |
| 196 | x, y, z = other.coefficients |
| 197 | return close_enough(a * y, b * x) and close_enough(b * z, c * y) |
| 198 | |
| 199 | def equal(self, other: Line) -> bool: |
| 200 | a, b, _ = self.coefficients |
no test coverage detected