1UNTITLED LOCAL UNTITLED
2
4 glutSpaceballRotateFunc — Sets a spaceball rotation callback.
5
7 OpenGLUT - input
8
10 #include <openglut.h>
11
12 void
13 glutSpaceballRotateFunc(void( *callback )( int x, int y, int z ));
14
16 callback Client spaceball rotation hook.
17
19 This function registers a callback for a spaceball to report rotation. A
20 spaceball has six axes of freedom (three of motion and three of orienta‐
21 tion), plus buttons. The spaceball allows you to rotate a control orien‐
22 tation +/- 1800 units about each of 3 axes.
23
24 The callback is bound to the current window .
25
27 OpenGLUT does not implement spaceball support.
28
30 glutSpaceballMotionFunc(3) glutSpaceballButtonFunc,(3)
31
32
33
34
35 Epoch