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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSolidCone 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSolidCone, glutWireCone - render a solid or wireframe cone respectively. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutSolidCone(GLdouble base, GLdouble height,
  11.                    GLint slices, GLint stacks);
  12. void glutWireCone(GLdouble base, GLdouble height,
  13.                   GLint slices, GLint stacks);
  14. .fi
  15. .SH ARGUMENTS
  16. .IP fIbasefP 1i
  17. The radius of the base of the cone. 
  18. .IP fIheightfP 1i
  19. The height of the cone. 
  20. .IP fIslicesfP 1i
  21. The number of subdivisions around the Z axis. 
  22. .IP fIstacksfP 1i
  23. The number of subdivisions along the Z axis. 
  24. .SH DESCRIPTION
  25. glutSolidCone and glutWireCone render a solid or wireframe cone
  26. respectively oriented along the Z axis. The base of the cone is placed at Z
  27. = 0, and the top at Z = height. The cone is subdivided around the Z axis
  28. into slices, and along the Z axis into stacks. 
  29. .SH SEE ALSO
  30. glutSolidSphere, glutSolidCube, glutSolidTorus, glutSolidDodecahedron,
  31. glutSolidOctahedron, glutSolidTetrahedron, glutSolidIcosahedron,
  32. glutSolidTeapot
  33. .SH AUTHOR
  34. Mark J. Kilgard (mjk@nvidia.com)