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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutGetColor 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutGetColor - retrieves a red, green, or blue component for a given
  7. color index colormap entry for the layer in use's logical colormap for the
  8. current window. 
  9. .SH SYNTAX
  10. .nf
  11. .LP
  12. GLfloat glutGetColor(int cell, int component);
  13. .fi
  14. .SH ARGUMENTS
  15. .IP fIcellfP 1i
  16. Color cell index (starting at zero).
  17. .IP fIcomponentfP 1i
  18. One of GLUT_RED, GLUT_GREEN, or GLUT_BLUE. 
  19. .SH DESCRIPTION
  20. glutGetColor retrieves a red, green, or blue component for a given
  21. color index colormap entry for the current window's logical colormap.
  22. The current window should be a color index window. cell should be
  23. zero or greater and less than the total number of colormap entries for the
  24. window. For valid color indices, the value returned is a floating point
  25. value between 0.0 and 1.0 inclusive. glutGetColor will return -1.0 if
  26. the color index specified is an overlay's transparent index, less than zero,
  27. or greater or equal to the value returned by
  28. glutGet(GLUT_WINDOW_COLORMAP_SIZE), that is if the color index
  29. is transparent or outside the valid range of color indices. 
  30. .SH SEE ALSO
  31. glutGet, glutSetColor, glutCopyColormap
  32. .SH AUTHOR
  33. Mark J. Kilgard (mjk@nvidia.com)