/ Published in: Pseudocode
Convert a coordinate (x,y) into the index for a 1D array. For example, the coordinate (3,1) would be at array index 8 if there are 5 columns.
Assumption: Arrays start at 0.
Assumption: Arrays start at 0.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
arrayPosition = (y * numberOfColumns) + x