Skip to content

Instantly share code, notes, and snippets.

@TehShrike
Last active August 29, 2015 14:04
Show Gist options
  • Save TehShrike/499f133dfcdf449c3456 to your computer and use it in GitHub Desktop.
Save TehShrike/499f133dfcdf449c3456 to your computer and use it in GitHub Desktop.
Store two numbers inside one number
function singleNumberToXY(number, boardWidth) {
var x = number % boardWidth
var y = (number - x) / boardWidth
return {
x: x,
y: y
}
}
function test(number, width) {
console.log("Number:", number, "Width: ", width, singleNumberToXY(number, width))
}
test(10,8)
test(12,3)
test(6,4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment