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

Method __init__

numericals.py:49–51  ·  view source on GitHub ↗
(self, x, y)

Source from the content-addressed store, hash-verified

47 """Numerical point."""
48
49 def __init__(self, x, y):
50 self.x = x
51 self.y = y
52
53 def __lt__(self, other: Point) -> bool:
54 return (self.x, self.y) < (other.x, other.y)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected