Quote Originally Posted by Daikrys
what mean the first parameter by glusphere?
Code:
GLusphere(gluNewQuadric, radius,singlevar1,singlevar2);
can anyone give me an example plz?

or how i can create a sphere?
The first parameter is the quadric that you have to create before use.

[pascal]
sphereObj := gluNewQuadric();
gluSphere(sphereObj, r, a, b);
// ....
// after use, delete it:
gluDeleteQuadric(sphereObj)
[/pascal]