//y * rows + x for(int y = 0; y < rows; y++) { for(int x = 0; x < cols; x++) { int point = grid[y * rows + x]; } }