(self, other: Point)
| 135 | return (x * a + y * b) / self.norm() / other.norm() |
| 136 | |
| 137 | def dot(self, other: Point) -> float: |
| 138 | return self.x * other.x + self.y * other.y |
| 139 | |
| 140 | def sign(self, line: Line) -> int: |
| 141 | return line.sign(self) |
nothing calls this directly
no outgoing calls
no test coverage detected