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

GIS编程

开发平台:

Visual C++

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