I wrote a pick function, to pick scene objects from the opengl canvas.

glRenderMode(GL_SELECT)
glMatrixMode(GL_PROJECTION)
glPushMatrix()
glLoadIdentity()
gluPickMatrix(self.last_point_2D_.x(),viewport[3]-self.last_point_2D_.y(),10,10,viewport)
glMultMatrixf(projection)

glInitNames()
glPushName(0)

//i scene objects rendering goes here, drawn in modelview
glLoadName(i)

glMatrixMode(GL_PROJECTION)
glPopMatrix()
glMatrixMode(GL_MODELVIEW)
glFlush()
glPopName()

This works perfect if i do not use glTanslate or glRotated in drawing the object i.e, i can pick line when i draw,

glVertex3f(1,1,1)
glVertex3f(2,2,2)

but not when i do,

glTranslate(1,1,1)
glVertex3f(0,0,0)
glVertex3f(1,1,1) 

What am i missing?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You're still in projection matrix mode, when applying the translation, thus messing up the picking matrix. Switch to modelview before transforming the scene.

link|improve this answer
Thank You very much! Cheers. – chaitu Apr 19 '11 at 8:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.