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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSolidSphere 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSolidSphere, glutWireSphere - render a solid or wireframe sphere respectively. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutSolidSphere(GLdouble radius,
  11.                      GLint slices, GLint stacks);
  12. void glutWireSphere(GLdouble radius,
  13.                     GLint slices, GLint stacks);
  14. .fi
  15. .SH ARGUMENTS
  16. .IP fIradiusfP 1i
  17. The radius of the sphere. 
  18. .IP fIslicesfP 1i
  19. The number of subdivisions around the Z axis (similar to lines of longitude). 
  20. .IP fIstacksfP 1i
  21. The number of subdivisions along the Z axis (similar to lines of latitude). 
  22. .SH DESCRIPTION
  23. Renders a sphere centered at the modeling coordinates origin of the
  24. specified radius. The sphere is subdivided around the Z axis into slices
  25. and along the Z axis into stacks. 
  26. .SH SEE ALSO
  27. glutSolidCube, glutSolidCone, glutSolidTorus, glutSolidDodecahedron,
  28. glutSolidOctahedron, glutSolidTetrahedron, glutSolidIcosahedron,
  29. glutSolidTeapot
  30. .SH AUTHOR
  31. Mark J. Kilgard (mjk@nvidia.com)