(self, center: Point, radius: float, hole: Point)
| 444 | """Numerical circle with a missing point.""" |
| 445 | |
| 446 | def __init__(self, center: Point, radius: float, hole: Point): |
| 447 | super().__init__(center, radius) |
| 448 | self.hole = hole |
| 449 | |
| 450 | def intersect(self, obj: Union[Line, HalfLine, Circle, HoleCircle]) -> Point: |
| 451 | if isinstance(obj, Line): |