(self, line: Line)
| 124 | raise ValueError('Dropping foot to weird type {}'.format(type(line))) |
| 125 | |
| 126 | def parallel_line(self, line: Line) -> Line: |
| 127 | return line.parallel_line(self) |
| 128 | |
| 129 | def norm(self) -> float: |
| 130 | return np.sqrt(self.x**2 + self.y**2) |
nothing calls this directly
no test coverage detected