How to draw a sphere with the OPENGL library?

Can anyone give the full source code for drawing a sphere with OPENGL?

+3
source share
1 answer
gluSphere(quadric,radius,slices,stacks);

Source

You need to create a quadrics object with gluNewQuadric.

+2
source

All Articles