Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
4k views

Implementing Ray Picking

I have a renderer using directx and openGL, and a 3d scene. The viewport and the window are of the same dimensions. How do I implement picking given mouse coordinates x and y in a platform ...
5
votes
2answers
1k views

Best box selection method for a Minecraft clone

I'm making a Minecraft clone as my very first OpenGL project and am stuck at the box selection part. What would be the best method to make a reliable box selection? I've been going through some AABB ...
4
votes
1answer
1k views

Android OpenGL 3D picking

I'm on Android OpenGL-ES 2.0 and after all the limitations that come with it, I can't figure out how to take 2D screen touches to the 3D points I have. I can't get the right results. I'm trying to ...
4
votes
4answers
1k views

iPhone : OpenGL ES : Detecting if you have tapped a object (cube) on screen

I asked a similar question already which got me to where I am now but I really need some help on this one. Its the last thing in my way to completing something cool (in my eyes lol) I have a 3d ...
4
votes
7answers
2k views

OpenGL GL_SELECT or manual collision detection?

Greetings all, As seen in the image I draw set of contours (polygons) as GL_LINE_STRIP. Now I want to select curve(polygon) under the mouse to delete,move..etc in 3D . I am wondering which ...
4
votes
2answers
2k views

Color picking on android - glReadPixels rounding errors

I am using color picking in opengl es on android and i am calculating a color key to compare it to the values i get from glReadPixels: ByteBuffer PixelBuffer = ByteBuffer.allocateDirect(4); ...
3
votes
3answers
183 views

Got stuck implementing openGL picking

I'm already able to find the world coordinates of the place i clicked, and it also checks this with the depth buffer. For this is used the following code : GLint viewport[4]; GLdouble modelview[16]; ...
3
votes
4answers
107 views

picking without replacement in java

I often* find myself in need of a data structure which has the following properties: can be initialized with an array of n objects in O(n). one can obtain a random element in O(1), after this ...
3
votes
2answers
254 views

Picking in java 2d

I am using java2d to draw a simple graph at the moment I have implemented picking by calling contains(MousePoint) for each object/shape, this works but scales linearly. Is there a more efficient ...
2
votes
3answers
301 views

Given a 4x4 homogeneous matrix, how can i get 3D world coords?

So i have an object which is getting rotated then translated and rotated again. I am storing a matrix of these translations as an object member. Now when i come to object picking i need to know the 3D ...
2
votes
1answer
702 views

OpenGL ES color picking on the iPhone

I'm looking into 3D on the iPhone, I have managed to get a 3D cube on the device but would like to add interactivity such as touching one face fires a specific event and an other face a different ...
2
votes
2answers
917 views

OpenGL 3D Selection Question

I am trying to create a 3D robot that should perform certain actions when certain body parts are clicked. I have successfully (sort of) implemented picking in that if you click on any x-plane part, it ...
2
votes
1answer
982 views

reverse perspective projection

I'm using worldview_inverse * (projection_inverse * vector) to transform screen space coordinates into world space coordinates. I assumed that (x,y,1,1) would transform to a point on the far ...
1
vote
1answer
55 views

Color picking in the openGL

i've been trying to implement color picking and it just aint working right. the problem is that if initially paint my model in the different colors that are used for the picking (i mean, i give each ...
1
vote
1answer
96 views

Intersect picked Ray with shapes in OpenGL

I am trying to perform picking in OpenGL, and have 3 questions in 1. I use twice the Unproject command, once with 0 and once with 1 as near/end planes. Some article say that 0 and 1 are ok, some ...
1
vote
1answer
164 views

SDL/Opengl Picking Question

Hi this might seem like a difficult question(or at least to me it is) but im using glUnproject and its not working. When i use the same function with OpenGL and Winapi it worked like a charm but now ...
1
vote
0answers
348 views

Problems with glReadPixels in android

I am trying to implement an opengl picking system I read about and have hit an issue with glReadPixels. Basically, every node in the scene gets a unique color and when a new touch happens, it renders ...
1
vote
1answer
526 views

Color coded picking problem in OpenGL

I am making a game, actually a very basic replica of Minecraft, for a class project of mine. I'm stuck in the picking process right now, which would enable me to destroy and create blocks in the game ...
1
vote
1answer
713 views

jogl picking example

hi guys i am in trouble with add picking object in a JOGL project. i know that this could be done with pick buffer.. but i can't find examples anyone?
1
vote
1answer
663 views

iPhone OpenGL ES: glReadPixels not working

I trying to implement a simple picking function using glReadPixels however when I click on an object that is 1 colour, I get different values back depending on where I clicked on that object? There ...
1
vote
1answer
734 views

Ray picking with gluUnProject()

I have a quad on the y = -50 plane. At the moment, all I want to do is obtain the coordinates of a mouse click on the quad. I've managed to do this to a limited extent. The problem is that the ...
1
vote
2answers
342 views

How would you solve this opengl necessity (in c) involving knowing in which square in a boardgame did the user click?

So I have this board, to play a boardgame... The problem is, how do I know in which square did the user click on? I know the x and y coordinates, but how do I automate it, without the need to hunt ...
1
vote
2answers
275 views

is it possible to render to framebuffer object outside of main render loop

i am using a separate framebuffer object for color picking 2d objects in opengl. i am curious if its possible to only draw to the framebuffer and read the color when needed. what i am doing now is ...
1
vote
4answers
314 views

How do you determine when an object is drawn on-screen in OpenGL?

I'm extremely new to OpenGL. I'm writing a program that displays flying 3D text on screen. I need to know when certain text string appears (drawn) onto the screen and are visible to the user. The ...
1
vote
1answer
170 views

glPushName + glPopName stack overflow and underflow

Can anybody please explain me how to use glPushName and glPopName. I like to use them instead of glLoadName, but I laways get GL_STACK_OVERFLOW and GL_STACK_UNDERFLOW errors. (First, under then ...
1
vote
1answer
1k views

Picking with OpenGL Shading Language

I'm trying to figure out the best way to pick informations rendered using shaders. A window manager buffer (the window) is used for outputting rendering. On user event I should pick the geometry ...
1
vote
3answers
1k views

OpenGL Picking with Pyglet

I'm trying to implement picking using Pyglet's OpenGL wrapper, but I'm having trouble converting a C tutorial to Python. Specifically the part below. #define BUFSIZE 512 GLuint selectBuf[BUFSIZE] ...
0
votes
1answer
22 views

JavaScript if parameter, Ignoring Transparency in images

I need to make if parameters optional. If that makes sense. If you notice both of my functions are 98% the same, I need to turn this difference into a parameter and it's just not clicking for me. ...
0
votes
2answers
64 views

3D picking lwjgl

I have written some code to preform 3D picking that for some reason dosn't work entirely correct! (Im using LWJGL just so you know.) This is how the code looks like: if(Mouse.getEventButton() == 1) ...
0
votes
0answers
101 views

XNA Triangle picking on SkinnedModel

My game is using the SkinnedModel pipeline and AnimationPlayer to load and display models. I've implemented ray picking with triangles by building a list of vertices and indices from the pipeline. ...
0
votes
1answer
72 views

Ray picking - get direction from pitch and yaw

I am attempting to cast a ray from the center of the screen and check for collisions with objects. When rendering, I use these calls to set up the camera: GL11.glRotated(mPitch, 1, 0, 0); ...
0
votes
1answer
651 views

iOS 5 + GLKView: How to access pixel RGB data for colour-based vertex picking?

I've been converting my own personal OGLES 2.0 framework to take advantage of the functionality added by the new iOS 5 framework GLKit. After pleasing results, I now wish to implement the ...
0
votes
1answer
307 views

OpenGL ES 2.0 Object Picking on iOS

What is the best method to select objects that have been drawn in OpenGL ES 2.0 (iOS)? PS. I am drawing points
0
votes
1answer
64 views

how do i calculate the Touch on openGL using glUnProject

Hi i found upto near plan and far plan.. then how to identify using this i touched on the object.. could anyone pls help me.. Here is My code.. -(Boolean) checkCollission:(CGPoint)winPos { ...
0
votes
0answers
266 views

Picking in Qt with OpenGL ES 2.0

I have a QGraphicsScene in which I have added an QGraphicsItem where I render a simple polygon using OpenGL ES 2.0 (working on Maemo). Is there any obvious way to implement picking?? Most of the ...
0
votes
1answer
219 views

Getting picture from Gallery not working on device, but does in emulator

I am using the startActivityForResult to get a picture from the android gallery, however this does not work on my device, yet it works fine on the emulator. I start the activity like this: ...
0
votes
2answers
148 views

OpenGL find distance to a point

I have a virtual landscape with the ability to walk around in first-person. I want to be able to walk up any slope if it is 45 degrees or less. As far as I know, this involves translating your current ...
0
votes
1answer
184 views

Am I doing Picking right?

So I'm working on my Picking function. I have read couple of tutorials and read some posts and I got to this point. But it still doesn't work. What is wrong with my code? BOOL Directx::Picking(HWND ...
0
votes
1answer
338 views

Ray picking in first person

Hi :) I have been searching for weeks and can't find a solution. Can sum1 please tell me how to implement ray picking when using a first person camera. Where exactly in the formula are you suppossed ...
0
votes
0answers
1k views

Picking objects in OpenGl ,using C#

i'm working with opengl using C#(using TaoFrame work ) ,the thing is that i want to draw 2 objects on screen (rectangle for example ),the main goal of my Question is, how to press the mouse button so ...