We're working on a Javascript game that is developed and defined based on 2D board coordinates.
We are trying to convert the X,Y coordinates that we currently have (ie, 0,0) into the corresponding ISO coordinates for use with crafty.js.
The reason we are doing this is because the server randomly generates a game board that is a traditional 15x15 grid of spaces, and we would like to render it in isometric 3D, but crafty JS uses a strange coordinate system that starts in the upper left of the screen.
How would we map a 2D grid to the following image, with the upper left board space mapping to either (0,6) or any of the ? annotations?


