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
feedback
|
|
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.
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. | |||
|
feedback
|