Author Topic: techniques to display isometric map  (Read 6277 times)

paladinx

  • Newcomer
  • Posts: 1
  • Karma: +0/-0
    • View Profile
techniques to display isometric map
« on: October 31, 2010, 06:37:17 PM »
So I'm starting with a traditional 2d array with the map data. Is there is common technique to display the map in an isometric view? I'm thinking of using the fundamental graphics approach used in rotating an image by basically multiplying each coordinate in the array by a matrix that rotates it 45 degrees. I would then use the resulting coordinates to generate a new 2d array which I will display the isometric result. Multiplying by the rotation matrix would surely leave gaps since trig is involved and I can't use fractional coordinates. Is this overkill and there is a simpler solution?

linux_junkie

  • Newcomer
  • Posts: 28
  • Karma: +0/-0
    • View Profile
    • Email
Re: techniques to display isometric map
« Reply #1 on: November 01, 2010, 01:17:56 AM »
Have you checked http://www.gamedev.net/reference/list.asp?categoryid=44 ?

It's the tile and isometric games section, and they're full of good info.