Tao.FreeGlut SDK Documentation |
|
Glut.MouseWheelCallback Delegate
Callback (delegate for use with glutMouseWheelFunc.
[Visual Basic]
Public Delegate Sub Glut.MouseWheelCallback( _
ByVal
wheel As
Integer, _
ByVal
direction As
Integer, _
ByVal
x As
Integer, _
ByVal
y As
Integer _
)
[C#]
public delegate void Glut.MouseWheelCallback(
int wheel,
int direction,
int x,
int y);
Parameters
-
wheel
- Wheel number.
-
direction
- Direction, +/- 1.
-
x
- Pointer X coordinate.
-
y
- Pointer Y coordinate.
Remarks
This may not work reliably on X Windows.
Requirements
Namespace:
Tao.FreeGlut
Assembly: Tao.FreeGlut (in Tao.FreeGlut.dll)
See Also
Tao.FreeGlut Namespace | glutMouseWheelFunc