In one of my earlier questions I asked about onTouchEvents in OpenGL. The idea was to create a simple app that drew a square where you pressed the screen. After a while I came out with an app that did everything the way it should have, but the square didn't redraw, it just vanished from the screen.

I have been told that to solve this I need to send a ray into the 3D environment of OpenGL from my 2D perspective, but for the life of me I can't understand why, because when I read up on raycasting it seemed to be used primarily for lighting effects. What exactly is raycasting? Why would I need the z-axis at all when all I need to change in the squares position is the x and y axis from which coodinates can be found no matter what depth the touch registers at?

link|improve this question

79% accept rate
Your last question shows you're using a perspective projection instead of an orthographic projection - if you're doing 2D work, an orthographic projection matrix would be a lot simpler for you to use, so why are you using perspective? – nil Jul 25 '11 at 21:28
just changing to orthogrphic now bit confused as to what the six floats on the glOthof() command are. Are they the parameters of the screen and the required depth of field? – Jack Jul 25 '11 at 21:57
Did you try reading the documentation? They define the clipping planes, which could match your view width/height, but don't necessarily have to. Also, depth of field is a completely different topic. – nil Jul 25 '11 at 23:28
so in this case should the clipping planes be along the edges of the screen or surrounding the square? – Jack Jul 26 '11 at 6:53
For your purposes, probably the edges of the screen. – nil Jul 26 '11 at 8:25
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

You need to send a ray from the view to the screen to know where in the world to draw your square. While this involves casting a ray, it's not ray casting as a rendering technique. Unless you are working ortho, and even then to an extent, the math for converting from screen to world or world to screen needs to be done in order to find the correct point for your primitive.

link|improve this answer
And what commands does opengl have to implement a raycast for this use? – Jack Jul 25 '11 at 21:37
AFAIK none, but I am by no means an OpenGL expert, just someone who's run across code to do what you are trying to do in the past. It involved a few matrix multiplications to convert the view frame, nothing more. – Michael Dorgan Jul 26 '11 at 20:33
feedback

Your Answer

 
or
required, but never shown

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