Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am drawing a triangle on the screen by using Opengl ES 2.0 on android api level 15. I transfer the screen coordinates into object coordinates by gluUnproject.My triangles vertecies are below.

    -1.0f, 0.0f, 0.0f,
     1.0f, 0.0f, 0.0f,
     0.0f, 1.0f, 0.0f

first i get the screen coordinates by touching on the triangle displayed on the screen. then i use gluUnProject. from here i don`t understand. why the converted verticies are too small ?? I convert the left bottom coordinates of the triangle into the object space. then the left bottom coordinates of the triangle in the object space is 0.1f which i think it should 0.99 something. below is the code of gluUnProject

        GLU.gluUnProject((float)touchX, (float)touchY, 0.0f, modelViewMatrix, 0, projectionMatrix, 0, viewport, 0, obj, 0);

thanks!!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.