Converting isometrics coordinates

Jul 3, 2013 at 12:54pm
Hello...i need help to write fuction for convertiog isometrics coordinates to the "real" coordinates... this picture should help with explaining:
http://s16.postimg.org/59i55j6lh/iso.png
the 60 x 90 is the isometrics coordinate...
Thanks for answers :)
Jul 3, 2013 at 1:09pm
Last edited on Jul 3, 2013 at 1:11pm
Jul 3, 2013 at 1:39pm
I tried many of these... but my brain is too stupid... Because.. the "map" is from one game.. and its rectangle, but the game is isometrics..
Jul 3, 2013 at 1:56pm
I'm guessing that the reason why it's complicated is that an isometric drawing can handle 3D coordinates, (x, y, z). For 2D (x,y) it will surely simplify to a fairly straightforward conversion with a couple of equations.
Jul 3, 2013 at 4:54pm
I did it :)
1
2
real x = (x - y) * 32 + 6912
real y = (x + y) * 16 - 1980
Topic archived. No new replies allowed.