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

Method check_simtri

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

Source from the content-addressed store, hash-verified

2389 return add
2390
2391 def check_simtri(self, points: list[Point]) -> bool:
2392 a, b, c, x, y, z = points
2393 return self.check_eqangle([a, b, a, c, x, y, x, z]) and self.check_eqangle(
2394 [b, a, b, c, y, x, y, z]
2395 )
2396
2397 def add_simtri2(
2398 self, points: list[Point], deps: EmptyDependency

Callers 1

checkMethod · 0.95

Calls 1

check_eqangleMethod · 0.95

Tested by

no test coverage detected