Created
January 11, 2010 19:17
-
-
Save kritzikratzi/274495 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (int bild = 0; bild < anzahl_bilder; ++bild) { | |
for (int pixel=0; pixel < wid*hig; ++pixel) {// adding all images to one "ultra bright" image | |
allr[pixel] = alle_bilder[0][pixel]; | |
allg[pixel] = alle_bilder[1][pixel]; | |
allb[pixel] = alle_bilder[2][pixel]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment