(args: tuple[gm.Point, ...])
| 1783 | |
| 1784 | |
| 1785 | def sketch_rectangle(args: tuple[gm.Point, ...]) -> tuple[Point, ...]: |
| 1786 | a = Point(0.0, 0.0) |
| 1787 | b = Point(0.0, 1.0) |
| 1788 | l = unif(0.5, 2.0) |
| 1789 | c = Point(l, 1.0) |
| 1790 | d = Point(l, 0.0) |
| 1791 | a, b, c, d = random_rfss(a, b, c, d) |
| 1792 | return a, b, c, d |
| 1793 | |
| 1794 | |
| 1795 | def sketch_reflect(args: tuple[gm.Point, ...]) -> Point: |
nothing calls this directly
no test coverage detected