(self, other: Line)
| 235 | return abs(a * x + b * y) < ATOM |
| 236 | |
| 237 | def cross(self, other: Line) -> float: |
| 238 | a, b, _ = self.coefficients |
| 239 | x, y, _ = other.coefficients |
| 240 | return a * y - b * x |
| 241 | |
| 242 | def dot(self, other: Line) -> float: |
| 243 | a, b, _ = self.coefficients |
no outgoing calls