vote up 1 vote down star

Is there a function in glut which moves the mouse to a specific position? There is a similar function in SDL (SDL_WarpMouse) but I want to stick to glut.

flag

2 Answers

vote up 1 vote down

Unless you also hide the pointer this will be very ugly. I used this once for a class project and it did the trick but it looked horrible. but then again I was using it to emulate purely relative mouse movements (basically so it couldn't leave the window). But other than that, yeah, it does the job.

link|flag
vote up 2 vote down check

I've just found it, you just have to ask the right question and google helps :D

Its glutWarpPointer(middleX, middleY);

link|flag

Your Answer

Get an OpenID
or

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