I have a scene with basic geometry (pick demo) I want when I select any object to return the x,y and z of the mouse cursor otherwise return -1

link|improve this question

Picking has been widely discussed – genpfault Jan 31 at 19:52
3  
Voting to reopen. Seems like a real question to me. – David Heffernan Jan 31 at 20:20
feedback

1 Answer

up vote 4 down vote accepted

The general OpenGL technique is to use gluUnProject() which takes screen x,y and the z-value of the depth-buffer and reverse-transforms that into world (or view) coordinates.

gluUnProject maps the specified window coordinates into object coordinates using model, proj, and view. The result is stored in objX, objY, and objZ. A return value of GLU_TRUE indicates success; a return value of GLU_FALSE indicates failure.

See NeHe's tutorial on how to use it in a general OpenGL app. It should hopefully get you started in the right direction with your Delphi app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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