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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1997.
  3. ."
  4. .TH glutWarpPointer 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutWarpPointer warps the pointer's location.
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutWarpPointer(int x, int y);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIxfP 1i
  14. X offset relative to the current window's origin (upper left).
  15. .IP fIyfP 1i
  16. Y offset relative to the current window's origin (upper left).
  17. .SH DESCRIPTION
  18. glutWarpPointer warps the window system's pointer to a new location
  19. relative to the origin of the current window.  The new location will
  20. be offset 
  21. .I x
  22. pixels on the X axis and 
  23. .I y
  24. pixels on the Y axis.
  25. These parameters may be negative.  The warp is done immediately.
  26. If the pointer would be warped outside the screen's frame buffer
  27. region, the location will be clamped to the nearest screen edge.  The
  28. window system is allowed to further constrain the pointer's location in
  29. window system dependent ways.
  30. The following is good advice that applies to glutWarpPointer:
  31. ``There is seldom any reason for calling this function. The pointer
  32. should normally be left to the user.'' (from Xlib's
  33. XWarpPointer man page.)
  34. .SH SEE ALSO
  35. glutMouseFunc, glutMotionFunc
  36. .SH AUTHOR
  37. Mark J. Kilgard (mjk@nvidia.com)