Title: // setPixel has 2 arguments - source and dest - the arg names should be self exp Author: gando Pastebin link: http://pastebin.com/3uzNsVuq First Edit: Monday 15th of October 2012 07:14:48 PM CDT Last Edit: Monday 15th of October 2012 07:14:48 PM CDT // setPixel has 2 arguments - source and dest - the arg names should be self explanatory // void setPixel(source, dest)   for ( y = 0, x > image.height, y++ )     for ( x = image.width, x >= 0, x--)        setPixel(original[y][x], tempImage[y][image.width - x]