-1
votes
1answer
38 views

How to scroll an object with a mouse in c++ opengl:

I am trying to make a 2d game in opengl c++. I want to sroll a triangle using mouse movement. so I draw the triangle first. so far, I succeeded in making the triangle scroll when i move the mouse. I ...
0
votes
1answer
106 views

C++ OpenGL Have a Quad follow the mouse pointer (without Glut)

I'm trying to have a quad follow the mouse pointer. So basically I need to convert screen coordinates to world coordinates. I've seen many posts on this, and tutorials from NeHe and other places, but ...
1
vote
1answer
74 views

Selecting vertex with mouse JOGL

I use JOGL and trying to make sure that when you click on the vertex this vertex has been selected. I'm trying to pick the top in color, but do not understand how to get the color under the cursor. I ...
1
vote
3answers
485 views

Zooming to mouse position using glOrtho

Currently I am using glOrtho to zoom and pan around a 2D graph I am rendering. I have setup up the viewport to the standard width and height. Then I set the glOrtho so that my frustrum makes screen ...
1
vote
1answer
276 views

How to use mouse to change OpenGL camera

I'm trying to set up a camera in OpenGL to view some points in 3 dimensions. To achieve this, I don't want to use the old, fixed functionality style (glMatrixMode(), glTranslate, etc.) but rather set ...
1
vote
1answer
151 views

OpenGL Mouse Input

I have this mouse function in my OpenGL program: public void mouseInput(){ int mouseX = Mouse.getX(); int mouseY = 600 - Mouse.getY(); int mouseDX = 0, mouseDY = 0; int lastX = 0, ...
2
votes
2answers
337 views

GLUT: Wrong Mouse Coordinates?

Using SCREEN_WIDTH = 1200, and SCREEN_HEIGHT = 800. First, I draw a box to the screen at (x = 0, y = 0, w = 40, h = 40); Then I use the handleMouse Function to return the x and y coordinates of ...
0
votes
1answer
335 views

Detecting horizontal mouse motion with Glut/OpenGL

I'm trying to detect horizontal mouse motion with OpenGL, so, when detected, execute a glutPostRedisplay(). Problem is that scene is also redrawed on vertical mouse movement. This is the code of the ...
0
votes
2answers
197 views

Rotating a Polygon by Clicking on it in OpenGL

I have 2 hexagons And I want to click on the center of one hexagon and the clicked hexagon will rotate 30 degrees, and the other will stay still. What I tried to do was: void myMouse( int button, ...
3
votes
6answers
479 views

Tracking circular mouse movement in OpenGL

I am working on a simple mesh viewer implementation in C++ with basic functionality such as translation, rotation, scaling. I'm stuck with with implementing the rotation of the object along z-axis ...
0
votes
0answers
482 views

Java OpenGL: Mouse picking in 3D Space

I am trying to make some sort of 3D Editor with Java and OpenGL. And now I'm implementing the basic functions of an 3D Editor like rotating the camera around a specific Position and zooming. Next I ...
1
vote
1answer
127 views

OpenGL mouse “lock”

How would one "lock" the mouse to a certain OpenGL window. Sort of like how it is done in Minecraft. Is GameDev a better place to ask?
0
votes
2answers
398 views

Making a Smooth OpenGL Mouse Camera

So I've looked through some camera classes and none of them seem to address the fact that you should be able to keep rotating even if your mouse hits the edge of the screen. I've been doing a hack job ...
1
vote
1answer
151 views

OpenGL mouse listener return

I'm trying to use the mouse listener in Haskell using OpenGL and have run into a problem. Apparently the return given for the x and y coordinates is a GLint. The problem is in then using these because ...
1
vote
1answer
410 views

Focus on MouseOver in Windows with Ogre3D

I have an application using the Ogre3D to create multiple render windows, and I'm using the solution posted here to support non-exclusive mouse input to these windows. However, I find that I have to ...
3
votes
1answer
713 views

Ogre3D, Multiple Monitors, and the Mouse Cursor

I am developing an application that requires multihead rendering in OpenGL. Right now, I can render to multiple screens, but the travel of my mouse cursor is limited to a single screen. However, I'd ...
1
vote
0answers
939 views

gluUnProject ray picking(opengl/c++/glut)

I am trying to see if I can click on a 3D drawn object, using the mouse, in a 3D world. I understood that I have to use gluUnProject so I tried it out in the following way: Firstly I have a function ...
0
votes
1answer
606 views

convert window coordinates to 3D world coordinates with glut function glutMouseFunc()

I am trying to get the 3D coordinates of a mouse click C++/OpengGL with the glut function glutMouseFunc(). So I created a function like this: void mouse(int button, int state, int x, int y){ ...
0
votes
1answer
548 views

Getting point on y=0 plane from mouse coordinates without using OpenGL calls

I have: screen coordinates x,y (0,0 being the middle of the screen, 1,1 being top left) screen dimensions camera location vector camera look vector projection matrix ModelView matrix y=0 Plane ...
0
votes
1answer
294 views

how to pick up rgb color value of a pixel from a mouse click

It might be a very naive question but i am a bit stuck. I am writing my first opengl programme and I want to pick up the R value of a pixel, of a point that i got from mouse click. I am clueless about ...
2
votes
2answers
204 views

Where did I click with OpenGL?

I am programming in Xcode / OpenGL and have some 3d objects displayed in my view. Is there a way I can retrieve in OpenGL the 3D location / vertex / face I clicked on ?
1
vote
2answers
386 views

C# SFML 3D MouseLook

Edit2: I figured out most of the problem, but there is one annoyance that I have. When the cursor reaches the edge of the screen and is pulled to the other side, the camera jerks, which won't work. ...
2
votes
2answers
514 views

Reading depth value of transparent plane with glReadPixels and gluUnProject

I am trying to create a billiards simulation and have been using glReadPixels along with gluUnProject to project my mouse pointer into the scene. This works fine if the mouse is pointing at an object ...
1
vote
4answers
4k views

mouse movement opengl

I am creating a pool game written in C++ using plain OpenGL (no external tools), but I can use GLUT. I have drawn a pool cue which I want to follow the mouse cursor but I am not sure how to do this. ...
0
votes
1answer
383 views

Tracing a ray from the camera to the mouse pointer in GLUT

I'm not really sure if it makes sense but I need to do and there is a chance there won't be any obstacle in front.
1
vote
1answer
2k views

How to calculate look at point to move the camera with the mouse in OpenGL/GLUT?

This will be confusing for me to explain so please bear with me. I've already implemented most type of movements and rotations in my camera class, everything is working with the keyboard, now I want ...
1
vote
2answers
725 views

Hiding the Cursor / Warp Mouse (SDL 1.3)

I've been unable to hide the mouse cursor (properly) using SDL. I am using Ubuntu 10.10 and have been using the following: SDL_ShowCursor( SDL_DISABLE ); SDL_WarpMouse( x, y ); Neither of which ...
1
vote
2answers
775 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 ...
2
votes
1answer
3k views

Getting the correct mouse position in SFML with OpenGL

My problem is related to getting the correct mouse co-ordinates from SFML while using OpenGL. Basically I am making a polygon rotate on the Z axis to look at the current cursor position. You can ...
9
votes
2answers
6k views

Converting mouse position to world position OpenGL

Hey, I'm working on a map editor for my game, and I'm trying to convert the mouse position to a position in the game world, the view is set up using gluPerspective
0
votes
4answers
548 views

How do I extend mouse space in OpenGL windowed mode

How do I extend the distance the mouse can move in an OpenGL window? What I wish to achieve is an fps like interface where the cursor is hidden and camera rotations are not limited by the mouse ...
0
votes
1answer
294 views

wxOSX/Carbon: wxGLCanvas mouse offset in non-floating window classes

I mainly program plugins using wxWidgets within a Carbon bundle which is loaded at runtime. The host-applications where my plugins are running in provide a native window handle (WindowRef), which I ...
0
votes
2answers
782 views

Opengl Window with mouse control for win 32

I am new to OpenGl, almost new to C++. I am looking for some code that does the following things. Open an OpenGL window (maybe using glut) Rotate the view point when the user press the left mouse ...
1
vote
1answer
870 views

Hiding the Cursor

I have a windows program with directx/opengl renderers, and a custom mouse rendered as a quad. The program currently runs windowed. The problem is the standard windows mouse is overlaid ontop of my ...
2
votes
3answers
2k views

Point-triangle intersection in 3d from mouse coordinates?

I know how to test intersection between a point and a triangle. ...But i dont get it, how i can move the starting position of the point onto the screen plane precisely by using my mouse coordinates, ...
3
votes
2answers
6k views

How can I change the position of the mouse cursor in OpenGL/Glut?

I'm writing a simple game and I'm going to have the mouse control the camera (using GlutPassiveMotionFunc). I'm going to pitch and yaw based off the mouse difference between callbacks, however I ...
4
votes
6answers
6k views

glutPassiveMotionFunc and glutWarpMousePointer

I want to implement my own cursor in an OpenGL / GLUT window. The usual way to do this is to freeze the cursor (so it can't hit the edges of the screen) and keep track of its position yourself. I can ...
2
votes
3answers
218 views

Framerate uneven on mouse input in 3D app

I'm writing a 3D application for Windows, using OpenGL. For now it renders a simple test scene with one model of about 50000 polygons and it renders smoothly at 60FPS. However, the framerate gets ...
2
votes
2answers
11k views

How do I get the current mouse position in C++ / OpenGL?

I know that I can use a Mouse callback function for when a user clicks the mouse, but what if I want to know the current x/y position without the user clicking? Will I have to use a different ...
1
vote
3answers
2k views

draw by mouse in openGL

How do you draw a polygon by mouse with openGL in C++?