Skip to content

Instantly share code, notes, and snippets.

@io-developer
Last active October 19, 2018 16:28
Show Gist options
  • Save io-developer/b747ff5a05255019b33ad15e84a50167 to your computer and use it in GitHub Desktop.
Save io-developer/b747ff5a05255019b33ad15e84a50167 to your computer and use it in GitHub Desktop.
function calcHexColumn(r, i) {
var s = r + Math.abs(1.5 * r * r + 1.5 * r - i - 1);
var a = Math.ceil(2 * r + 1.5 - Math.sqrt((2 * r + 1.5) * (2 * r + 1.5) - 2 * s)) - 1;
var m = 2 * Math.floor(2 * i / (3 * r * r + 3 * r + 1)) - 1;
return m * a + r;
}
calcHexColumn(3, 22); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment