where can i find a listing of what all the keys #''s are. i know 27 is (esc), but i need to know some other, like the arrow keys, and ctrl/shift/alt
home.earthlink.net/~eberkain/
glut keys
Started by Eber Kain, Jul 04 2001 06:57 PM
2 replies to this topic
Sponsor:
#3 Members - Reputation: 122
Posted 09 July 2001 - 09:36 AM
Arrow keys and keys like Page Down/Page Up/Home/End are handled in a different function that normal keyboard commands. Ordinarily, keys like 'a' and 'b' would be directed to the function you provide in the glutKeyboardFunc(...) function, they're going to go to the function in the glutSpecialFunc(...) command.
For example, here's how I handled that problem...
Hope this helps! :D
~ Dragonus
Edited by - Dragonus on July 9, 2001 4:37:48 PM
For example, here's how I handled that problem...
|
Hope this helps! :D
~ Dragonus
Edited by - Dragonus on July 9, 2001 4:37:48 PM






