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

GIS编程

开发平台:

Visual C++

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