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

11 lines
164 B
JavaScript

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