(args: tuple[gm.Point, ...])
| 1538 | |
| 1539 | |
| 1540 | def sketch_bline(args: tuple[gm.Point, ...]) -> Line: |
| 1541 | a, b = args |
| 1542 | m = (a + b) * 0.5 |
| 1543 | return m.perpendicular_line(Line(a, b)) |
| 1544 | |
| 1545 | |
| 1546 | def sketch_dia(args: tuple[gm.Point, ...]) -> Circle: |
nothing calls this directly
no test coverage detected