(self, other: Line)
| 203 | return b * x == a * y |
| 204 | |
| 205 | def less_than(self, other: Line) -> bool: |
| 206 | a, b, _ = self.coefficients |
| 207 | x, y, _ = other.coefficients |
| 208 | # b/a > y/x |
| 209 | return b * x < a * y |
| 210 | |
| 211 | def intersect(self, obj: Union[Line, Circle]) -> tuple[Point, ...]: |
| 212 | if isinstance(obj, Line): |
nothing calls this directly
no outgoing calls
no test coverage detected