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

Method enum_triangle2

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

Source from the content-addressed store, hash-verified

2362 yield [c, a, c, b, z, x, z, y]
2363
2364 def enum_triangle2(
2365 self, points: list[Point]
2366 ) -> Generator[list[Point], None, None]:
2367 a, b, c, x, y, z = points
2368 yield [a, b, a, c, x, z, x, y]
2369 yield [b, a, b, c, y, z, y, x]
2370 yield [c, a, c, b, z, y, z, x]
2371
2372 def add_simtri(
2373 self, points: list[Point], deps: EmptyDependency

Callers 2

add_simtri2Method · 0.95
add_contri2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected