Say I have a grid that is 4 columns wide, 4 rows high, I can get the "total" number of a certain point like this:
(y * width) + x
So point (0,1) would be calculated like this (1 * 4) + 0 = 4
But does that have some kind of fancy name, something I could use in my code?