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!!