Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glunewquadric(3g) [redhat man page]

GLUNEWQUADRIC(3G)														 GLUNEWQUADRIC(3G)

NAME
gluNewQuadric - create a quadrics object C SPECIFICATION
GLUquadric* gluNewQuadric( void ) DESCRIPTION
gluNewQuadric creates and returns a pointer to a new quadrics object. This object must be referred to when calling quadrics rendering and control functions. A return value of 0 means that there is not enough memory to allocate the object. SEE ALSO
gluCylinder(3G), gluDeleteQuadric(3G), gluDisk(3G), gluPartialDisk(3G), gluQuadricCallback(3G), gluQuadricDrawStyle(3G), gluQuadricNormals(3G), gluQuadricOrientation(3G), gluQuadricTexture(3G), gluSphere(3G) GLUNEWQUADRIC(3G)

Check Out this Related Man Page

GLUQUADRICDRAWSTYLE(3G) 					   OpenGL Manual					   GLUQUADRICDRAWSTYLE(3G)

NAME
gluQuadricDrawStyle - specify the draw style desired for quadrics C SPECIFICATION
void gluQuadricDrawStyle(GLUquadric* quad, GLenum draw); PARAMETERS
quad Specifies the quadrics object (created with gluNewQuadric()). draw Specifies the desired draw style. Valid values are GLU_FILL, GLU_LINE, GLU_SILHOUETTE, and GLU_POINT. DESCRIPTION
gluQuadricDrawStyle specifies the draw style for quadrics rendered with quad. The legal values are as follows: GLU_FILL Quadrics are rendered with polygon primitives. The polygons are drawn in a counterclockwise fashion with respect to their normals (as defined with gluQuadricOrientation()). GLU_LINE Quadrics are rendered as a set of lines. GLU_SILHOUETTE Quadrics are rendered as a set of lines, except that edges separating coplanar faces will not be drawn. GLU_POINT Quadrics are rendered as a set of points. SEE ALSO
gluNewQuadric(), gluQuadricNormals(), gluQuadricOrientation(), gluQuadricTexture() COPYRIGHT
Copyright (C) 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/. AUTHORS
opengl.org opengl.org 06/10/2014 GLUQUADRICDRAWSTYLE(3G)
Man Page