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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSetColor 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSetColor - sets the color of a colormap entry in the layer of use
  7. for the current window. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutSetColor(int cell,
  12.   GLfloat red, GLfloat green, GLfloat blue);
  13. .fi
  14. .SH ARGUMENTS
  15. .IP fIcellfP 1i
  16. Color cell index (starting at zero). 
  17. .IP fIredfP 1i
  18. Red intensity (clamped between 0.0 and 1.0 inclusive). 
  19. .IP fIgreenfP 1i
  20. Green intensity (clamped between 0.0 and 1.0 inclusive).
  21. .IP fIbluefP 1i
  22. Blue intensity (clamped between 0.0 and 1.0 inclusive). 
  23. .SH DESCRIPTION
  24. Sets the cell color index colormap entry of the current window's
  25. logical colormap for the layer in use with the color specified by red,
  26. green, and blue.  The layer in use of the current window should be a
  27. color index window.  cell should be zero or greater and less than the
  28. total number of colormap entries for the window.  If the layer in use's
  29. colormap was copied by reference, a glutSetColor call will force the
  30. duplication of the colormap.  Do not attempt to set the color of an
  31. overlay's transparent index. 
  32. .SH SEE ALSO
  33. glutGetColor, glutCopyColormap, glutInitDisplayMode
  34. .SH AUTHOR
  35. Mark J. Kilgard (mjk@nvidia.com)