(args: list[Point])
| 613 | |
| 614 | |
| 615 | def check_aconst(args: list[Point]) -> bool: |
| 616 | a, b, c, d, num, den = args |
| 617 | d = d + a - c |
| 618 | ang = ang_between(a, b, d) |
| 619 | if ang < 0: |
| 620 | ang += np.pi |
| 621 | return close_enough(ang, num * np.pi / den) |
| 622 | |
| 623 | |
| 624 | def check(name: str, args: list[Union[gm.Point, Point]]) -> bool: |
nothing calls this directly
no test coverage detected