JS 1D Индекс к 2D -координату
y = index / width;
x = index % width;
Old-fashioned Oyster
y = index / width;
x = index % width;
index = x + width * y;