Reputation: 134
I am facing a situation in which I have to calculate the screen coordinates from a set of world coordinates. How can I do this in opengl android.
Upvotes: 2
Views: 682
Reputation: 52084
Implement the logic of gluProject()
, which is just a few matrix multiplies.
Upvotes: 1