glutWireCone (3) - Linux Manuals

glutWireCone: Draw a wireframe cone.

NAME

glutWireCone - Draw a wireframe cone.

LIBRARY

OpenGLUT - geometry

SYNOPSIS

In openglut.h Ft void Fn glutWireCone GLdouble base GLdouble height GLint slices GLint stacks

PARAMETERS

Bf Em
 base Ef
       Cone radius at the base in the xy plane.

Bf Em
 height Ef
     Height of cone in positive z direction.

Bf Em
 slices Ef
     The number of divisions around the z axis. (latitudal)

Bf Em
 stacks Ef
     The number of divisions along the z axis. (longitudal)

DESCRIPTION

The glutWireCone() function draws a wireframe cone with a base in the xy plane oriented in positive z.

CAVEATS

The number of line segments representing the conical surface is proportional to (slices*stacks).

SEE ALSO

glutSolidCone(3)