MCPcopy Create free account
hub / github.com/google-deepmind/alphageometry / __init__

Method __init__

numericals.py:446–448  ·  view source on GitHub ↗
(self, center: Point, radius: float, hole: Point)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected