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

Method why_circle

graph.py:1470–1474  ·  view source on GitHub ↗
(
      self, args: tuple[Segment, Segment, Segment]
  )

Source from the content-addressed store, hash-verified

1468 return add
1469
1470 def why_circle(
1471 self, args: tuple[Segment, Segment, Segment]
1472 ) -> list[Dependency]:
1473 oa, ob, oc = args
1474 return self.why_equal(oa, ob, None) and self.why_equal(oa, oc, None)
1475
1476 def check_circle(self, points: list[Point]) -> bool:
1477 o, a, b, c = points

Callers

nothing calls this directly

Calls 1

why_equalMethod · 0.95

Tested by

no test coverage detected