gluLookAt() in OpenGL ES?

Hi all, Is there any replacment function for gluLookAt() in OpenGL ES? It is because I would like to move the camera around my scene, however, It seems that OpenGL ES doesn’t have gluLookAt() function. Thanks.

Evening

In opengl ES this function is ;
ugluLookAtf( eyeX,eyeY,eyeZ, objectX,ObjectY,ObjectZ,UpVectorX,UpVectorY,UpVectorZ);

I think I should raise the point that UG is not a part of OpenGL|ES specification. It is a completely undocumented (but handy) ES-related library that is packaged with a few implementations, but not all of them.

ugluLookAt() is just a composite of several OpenGL|ES functions. See this thread if you’re interested in writing your own.

  • Ben

[ February 03, 2005: Message edited by: bentlegen ]

There is also
Glut|ES

  • HM

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.