(args: tuple[gm.Point, ...])
| 1878 | |
| 1879 | |
| 1880 | def sketch_triangle12(args: tuple[gm.Point, ...]) -> tuple[Point, ...]: |
| 1881 | b = Point(0.0, 0.0) |
| 1882 | c = Point(unif(1.5, 2.5), 0.0) |
| 1883 | a, _ = circle_circle_intersection(Circle(b, 1.0), Circle(c, 2.0)) |
| 1884 | a, b, c = random_rfss(a, b, c) |
| 1885 | return a, b, c |
| 1886 | |
| 1887 | |
| 1888 | def sketch_trisect(args: tuple[gm.Point, ...]) -> tuple[Point, Point]: |
nothing calls this directly
no test coverage detected