(self, other: Line)
| 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 |
| 201 | x, y, _ = other.coefficients |
| 202 | # b/a == y/x |
| 203 | return b * x == a * y |
| 204 | |
| 205 | def less_than(self, other: Line) -> bool: |
| 206 | a, b, _ = self.coefficients |
nothing calls this directly
no outgoing calls
no test coverage detected