OpenGL C bindings library: libGL.a
void gluSphere(GLUquadricObj *qobj, GLdouble Radius, GLint Slices, GLint Stacks)
The gluSphere subroutine draws a sphere of the supplied Radius around the centerpoint of the origin. The sphere is subdivided around the z axis into slices (longitude) and along the z axis into stacks (latitude).
If the orientation is set to GLU_OUTSIDE (with the gluQuadricOrientation subroutine), any normals generated point away from the center of the sphere. Otherwise, they point toward the center of the sphere.
If texturing is turned on using the gluQuadricTexture subroutine, texture coordinates are generated so that t ranges from 0.0 at z=Radius to 1.0 at z=Radius (t increases linearly along longitudinal lines), and s ranges from 0.0 at the +y axis to 0.25 at the +x axis, as well as up to 0.5 at the -y axis and 0.75 at the -x axis, then back to 1.0 at the +y axis.
/usr/include/GL/gl.h | Contains C language constraints, variable type definitions, and ANSI function prototypes for OpenGL. |
The gluCylinder subroutine, gluDisk subroutine, gluNewQuadric subroutine, gluPartialDisk subroutine, gluQuadricOrientation subroutine, gluQuadricTexture subroutine.