(
a: gm.Point, b: gm.Point, c: gm.Point, x: gm.Point, y: gm.Point, z: gm.Point
)
| 639 | |
| 640 | |
| 641 | def 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 | |
| 648 | def match_eqangle6_eqangle6_ncoll_cong_contri( |
no outgoing calls
no test coverage detected