(x, y)
| 180 | pix.save(path_out) |
| 181 | print(f'{pix.width=} {pix.height=}') |
| 182 | def product(x, y): |
| 183 | for yy in y: |
| 184 | for xx in x: |
| 185 | yield (xx, yy) |
| 186 | n = 0 |
| 187 | # We use a small subset of the image because non-optimised build gets |
| 188 | # very slow. |
no outgoing calls
no test coverage detected
searching dependent graphs…