I have a # of images that I\'m stitching together into a sprite sheet, how can I calculate the number of rows and columns to fit equally in an even rectangle (no blank space
Here's a very fast and easy algorithm (where N is the number of images)
rows = floor(sqrt(N)) while(N % rows != 0) rows = rows - 1
And rows will be the number of rows needed. Columns can obviously be found with N / rows.
rows
N / rows
I hope this helps!