gluDeleteQuadric

destroy a quadrics object

Signature

gluDeleteQuadric( GLUquadric* ( quad ) )-> void
gluDeleteQuadric( quad )
gluDeleteQuadric( POINTER(GLUquadric)(quad) ) -> None

Parameters

VariablesDescription
quad
Specifies the quadrics object to be destroyed.

Description

gluDeleteQuadric destroys the quadrics object (created with gluNewQuadric ) and frees any memory it uses. Once gluDeleteQuadric has been called, quad cannot be used again.

See Also

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

gluDeleteQuadric
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson26.py Lines: 113
OpenGL-Demo PyOpenGL-Demo/NeHe/lesson48/NeHeGL.py Lines: 111