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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutInitWindowPosition 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutInitWindowPosition, glutInitWindowSize - set the
  7. initial window position and size respectively.
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutInitWindowSize(int width, int height);
  12. void glutInitWindowPosition(int x, int y);
  13. .fi
  14. .SH ARGUMENTS
  15. .IP fIwidthfP 1i
  16. Width in pixels. 
  17. .IP fIheightfP 1i
  18. Height in pixels. 
  19. .IP fIxfP 1i
  20. Window X location in pixels. 
  21. .IP fIyfP 1i
  22. Window Y location in pixels. 
  23. .SH DESCRIPTION
  24. Windows created by glutCreateWindow will be requested to be
  25. created with the current initial window position and size. 
  26. The initial value of the initial window position GLUT state is -1 and -1.
  27. If either the X or Y component to the initial window position is negative,
  28. the actual window position is left to the window system to determine.
  29. The initial value of the initial window size GLUT state is 300 by 300.
  30. The initial window size components must be greater than zero. 
  31. The intent of the initial window position and size values is to provide a
  32. suggestion to the window system for a window's initial size and
  33. position. The window system is not obligated to use this information.
  34. Therefore, GLUT programs should not assume the window was created
  35. at the specified size or position. A GLUT program should use the
  36. window's reshape callback to determine the true size of the window. 
  37. .SH EXAMPLE
  38. If you would like your GLUT program to default to starting at a given
  39. screen location and at a given size, but you would also like to let
  40. the user override these defaults via a command line argument (such as
  41. -geometry for X11), call glutInitWindowSize and glutInitWindowPosition
  42. .I before
  43. your call to glutInit.  For example:
  44. .nf
  45. .LP
  46.   int main(int argc, char **argv)
  47.   {
  48.     glutInitWindowSize(500, 300);
  49.     glutInitWindowPosition(100, 100);
  50.     glutInit(&argc, argv);
  51.     ...
  52.   }
  53. .fi
  54. .LP
  55. However, if you'd like to force your program to start up at a given
  56. size, call glutInitWindowSize and glutInitWindowPosition
  57. .I after
  58. your call to glutInit.  For example:
  59. .nf
  60. .LP
  61.   int main(int argc, char **argv)
  62.   {
  63.     glutInit(&argc, argv);
  64.     glutInitWindowSize(500, 300);  
  65.     glutInitWindowPosition(100, 100);
  66.     ...
  67.   }
  68. .fi
  69. .SH SEE ALSO
  70. glutInit, glutCreateWindow, glutCreateSubWindow, glutReshapeFunc, glutGet
  71. .SH AUTHOR
  72. Mark J. Kilgard (mjk@nvidia.com)