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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutDialsFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutDialsFunc - sets the dial & button box dials callback for the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutDialsFunc(void (*func)(int dial, int value));
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIfuncfP 1i
  14. The new dials callback function. 
  15. .SH DESCRIPTION
  16. glutDialsFunc sets the dial & button box dials callback for the
  17. current window. The dial & button box dials callback for a window is
  18. called when the window has dial & button box input focus (normally,
  19. when the mouse is in the window) and the user generates dial & button
  20. box dial changes. The dial parameter will be the dial number (starting
  21. at one). The number of available dial & button box dials can be
  22. determined with glutDeviceGet(GLUT_NUM_DIALS). The value
  23. measures the absolute rotation in degrees. Dial values do not ``roll over''
  24. with each complete rotation but continue to accumulate degrees (until the
  25. int dial value overflows). 
  26. Registering a dial & button box dials callback when a dial & button box
  27. device is not available is ineffectual and not an error. In this case, no dial
  28. & button box dials callbacks will be generated. 
  29. Passing NULL to glutDialsFunc disables the generation of dial &
  30. button box dials callbacks. When a new window is created, no dial &
  31. button box dials callback is initially registered. 
  32. .SH SEE ALSO
  33. glutButtonBoxFunc, glutDeviceGet
  34. .SH AUTHOR
  35. Mark J. Kilgard (mjk@nvidia.com)