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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSolidTorus 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSolidTorus, glutWireTorus - render a solid or wireframe
  7. torus (doughnut) respectively. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutSolidTorus(GLdouble innerRadius,
  12.                     GLdouble outerRadius,
  13.                     GLint nsides, GLint rings);
  14. void glutWireTorus(GLdouble innerRadius,
  15.                    GLdouble outerRadius,
  16.                    GLint nsides, GLint rings);
  17. .fi
  18. .SH ARGUMENTS
  19. .IP fIinnerRadiusfP 1i
  20. Inner radius of the torus. 
  21. .IP fIouterRadiusfP 1i
  22. Outer radius of the torus. 
  23. .IP fInsidesfP 1i
  24. Number of sides for each radial section. 
  25. .IP fIringsfP 1i
  26. Number of radial divisions for the torus. 
  27. .SH DESCRIPTION
  28. glutSolidTorus and glutWireTorus render a solid or wireframe
  29. torus (doughnut) respectively centered at the modeling coordinates origin
  30. whose axis is aligned with the Z axis. 
  31. .SH SEE ALSO
  32. glutSolidSphere, glutSolidCube, glutSolidCone, glutSolidDodecahedron,
  33. glutSolidOctahedron, glutSolidTetrahedron, glutSolidIcosahedron,
  34. glutSolidTeapot
  35. .SH AUTHOR
  36. Mark J. Kilgard (mjk@nvidia.com)