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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutMotionFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutMotionFunc, glutPassiveMotionFunc - set the motion and
  7. passive motion callbacks respectively for the current window. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutMotionFunc(void (*func)(int x, int y));
  12. void glutPassiveMotionFunc(void (*func)(int x, int y));
  13. .fi
  14. .SH ARGUMENTS
  15. .IP fIfuncfP 1i
  16. The new motion or passive motion callback function. 
  17. .SH DESCRIPTION
  18. glutMotionFunc and glutPassiveMotionFunc set the motion and
  19. passive motion callback respectively for the current window. The motion
  20. callback for a window is called when the mouse moves within the window
  21. while one or more mouse buttons are pressed. The passive motion callback
  22. for a window is called when the mouse moves within the window while
  23. no mouse buttons are pressed. 
  24. The x and y callback parameters indicate the mouse location in window
  25. relative coordinates. 
  26. Passing NULL to glutMotionFunc or glutPassiveMotionFunc
  27. disables the generation of the mouse or passive motion callback
  28. respectively. 
  29. .SH SEE ALSO
  30. glutMouseFunc, glutSpaceballMotionFunc, glutTabletMotionFunc
  31. .SH AUTHOR
  32. Mark J. Kilgard (mjk@nvidia.com)