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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutBitmapWidth 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutBitmapWidth - returns the width of a bitmap character,
  7. glutBitmapLength returns the length of a bitmap font string.
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. int glutBitmapWidth(void *font, int character)
  12. int glutBitmapLength(void *font, const unsigned char *string)
  13. .fi
  14. .SH ARGUMENTS
  15. .IP fIfontfP 1i
  16. Bitmap font to use.  For valid values, see the
  17. glutBitmapCharacter description.
  18. .IP fIcharacterfP 1i
  19. Character to return width of (not confined to 8 bits). 
  20. .IP fIstringfP 1i
  21. Text string (8-bit characters), nul terminated.
  22. .SH DESCRIPTION
  23. glutBitmapWidth returns the width in pixels of a bitmap character in
  24. a supported bitmap font. While the width of characters in a font may vary
  25. (though fixed width fonts do not vary), the maximum height
  26. characteristics of a particular font are fixed. 
  27. glutBitmapLength returns the length in pixels of a string (8-bit
  28. characters).  This length is equivalent to summing all the widths
  29. returned by glutBitmapWidth for each character in the string.
  30. .SH SEE ALSO
  31. glutBitmapCharacter, glutStrokeWidth
  32. .SH AUTHOR
  33. Mark J. Kilgard (mjk@nvidia.com)