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

Function rotate_contri

dd.py:641–645  ·  view source on GitHub ↗
(
    a: gm.Point, b: gm.Point, c: gm.Point, x: gm.Point, y: gm.Point, z: gm.Point
)

Source from the content-addressed store, hash-verified

639
640
641def rotate_contri(
642 a: gm.Point, b: gm.Point, c: gm.Point, x: gm.Point, y: gm.Point, z: gm.Point
643) -> Generator[tuple[gm.Point, ...], None, None]:
644 for p in [(b, a, c, y, x, z), (x, y, z, a, b, c), (y, x, z, b, a, c)]:
645 yield p
646
647
648def match_eqangle6_eqangle6_ncoll_cong_contri(

Calls

no outgoing calls

Tested by

no test coverage detected