glutSpaceballRotateFunc.man
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSpaceballRotateFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSpaceballRotateFunc - sets the Spaceball rotation callback for the current
  7. window. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutSpaceballRotateFunc(void (*func)(int x, int y, int z));
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fIfuncfP 1i
  15. The new spaceball rotate callback function. 
  16. .SH DESCRIPTION
  17. glutSpaceballRotateFunc sets the Spaceball rotate callback for the
  18. current window. The Spaceball rotate callback for a window is called
  19. when the window has Spaceball input focus (normally, when the mouse
  20. is in the window) and the user generates Spaceball rotations. The x, y,
  21. and z callback parameters indicate the rotation along the X, Y, and Z
  22. axes. The callback parameters are normalized to be within the range of
  23. -1800 to 1800 inclusive. 
  24. Registering a Spaceball rotate callback when a Spaceball device is not
  25. available is ineffectual and not an error. In this case, no Spaceball rotate
  26. callbacks will be generated. 
  27. Passing NULL to glutSpaceballRotateFunc disables the generation
  28. of Spaceball rotate callbacks. When a new window is created, no
  29. Spaceball rotate callback is initially registered. 
  30. .SH SEE ALSO
  31. glutSpaceballMotionFunc, glutSpaceballButtonFunc, glutMotionFunc, glutTabletMotionFunc, glutJoystickFunc, glutDeviceGet
  32. .SH AUTHOR
  33. Mark J. Kilgard (mjk@nvidia.com)