(args: tuple[gm.Point, ...])
| 1377 | |
| 1378 | |
| 1379 | def sketch_centroid(args: tuple[gm.Point, ...]) -> tuple[Point, ...]: |
| 1380 | a, b, c = args |
| 1381 | x = (b + c) * 0.5 |
| 1382 | y = (c + a) * 0.5 |
| 1383 | z = (a + b) * 0.5 |
| 1384 | i = line_line_intersection(Line(a, x), Line(b, y)) |
| 1385 | return x, y, z, i |
| 1386 | |
| 1387 | |
| 1388 | def sketch_ninepoints(args: tuple[gm.Point, ...]) -> tuple[Point, ...]: |
nothing calls this directly
no test coverage detected