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

GIS编程

开发平台:

Visual C++

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