🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Rendering iso in 3D

Started by
0 comments, last by GameDev.net 24 years, 7 months ago
What sort of projection modification must be made to project a quad with orthagonal projection (no perspective correctness)?
Advertisement
Don't divide by distance (Essentially the 1/d is removed)

The matrix looks like this:

cos(Oy), sin(Oy)*sin(Ox), 0, 0
0, cos(Ox), 0, 0
sin(Oy), -sin(Ox)*cos(Oy), 0, 0
0, 0, 0, 1

ISOmetric projection is a special case with Oy=45 deg. and Ox=35.26 deg.

/Niels

<b>/NJ</b>

This topic is closed to new replies.

Advertisement