Sets every pixel in the range [left : left + width] * [top : top + height] to black.
| 481 | |
| 482 | // Sets every pixel in the range [left : left + width] * [top : top + height] to black. |
| 483 | static void fillRectangle(int left, int top, int width, int height, uint8_t qrcode[]) { |
| 484 | for (int dy = 0; dy < height; dy++) { |
| 485 | for (int dx = 0; dx < width; dx++) |
| 486 | setModule(qrcode, left + dx, top + dy, true); |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | |
| 491 |
no test coverage detected