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

Method all_eqangle_same_lines

graph.py:2730–2734  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2728 return added, plevel
2729
2730 def all_eqangle_same_lines(self) -> Generator[tuple[Point, ...], None, None]:
2731 for l1, l2 in utils.perm2(self.type2nodes[Line]):
2732 for a, b, c, d, e, f, g, h in utils.all_8points(l1, l2, l1, l2):
2733 if (a, b, c, d) != (e, f, g, h):
2734 yield a, b, c, d, e, f, g, h
2735
2736 def all_eqangles_distinct_linepairss(
2737 self,

Callers 1

all_eqangles_8pointsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected