Files
lcd-image-converter/resources/scan_scripts/scan_top2bottom_forward.js
2013-10-05 21:23:37 +06:00

11 lines
159 B
JavaScript

/*
* top to bottom
* forward
*/
for (var y = 0; y < image.height; y++) {
for (var x = 0; x < image.width; x++) {
image.addPoint(x, y);
}
}