create a grid of points by interpolating between the points in the two supplied paths
(path1: list, path2: list, cells_between: int)
| 9 | |
| 10 | |
| 11 | def make_grid(path1: list, path2: list, cells_between: int) -> list: |
| 12 | 'create a grid of points by interpolating between the points in the two supplied paths' |
| 13 | return [segmented_line(path1[i], path2[i], cells_between) for i in range(len(path1))] |
| 14 | |
| 15 | |
| 16 | def convex_segment(a1: Point, a2: Point, b1: Point, b2: Point, overextrusion_percent: float) -> list: |
no test coverage detected