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

Method enum_sides

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

Source from the content-addressed store, hash-verified

2346 return self.add_contri2(points, deps)
2347
2348 def enum_sides(
2349 self, points: list[Point]
2350 ) -> Generator[list[Point], None, None]:
2351 a, b, c, x, y, z = points
2352 yield [a, b, x, y]
2353 yield [b, c, y, z]
2354 yield [c, a, z, x]
2355
2356 def enum_triangle(
2357 self, points: list[Point]

Callers 2

add_contriMethod · 0.95
add_contri2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected