(args: tuple[gm.Point, ...])
| 1533 | |
| 1534 | |
| 1535 | def sketch_exbisect(args: tuple[gm.Point, ...]) -> Line: |
| 1536 | a, b, c = args |
| 1537 | return sketch_bisect(args).perpendicular_line(b) |
| 1538 | |
| 1539 | |
| 1540 | def sketch_bline(args: tuple[gm.Point, ...]) -> Line: |
no test coverage detected