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

Method enum_triangle

graph.py:2356–2362  ·  view source on GitHub ↗
(
      self, points: list[Point]
  )

Source from the content-addressed store, hash-verified

2354 yield [c, a, z, x]
2355
2356 def enum_triangle(
2357 self, points: list[Point]
2358 ) -> Generator[list[Point], None, None]:
2359 a, b, c, x, y, z = points
2360 yield [a, b, a, c, x, y, x, z]
2361 yield [b, a, b, c, y, x, y, z]
2362 yield [c, a, c, b, z, x, z, y]
2363
2364 def enum_triangle2(
2365 self, points: list[Point]

Callers 3

add_simtriMethod · 0.95
add_simtri2Method · 0.95
add_contriMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected