Hello I've been trying to find out information on how i can add a gradient from the top of the sphere to the bottom. Is it possible or do i have to texture the sphere?
Sphere sphere = new Sphere();
sphere.setOrientation(GLU.GLU_OUTSIDE);
GL11.glPushMatrix();
GL11.glColor3d(0.0D, 0.0D, 1.0D);
sphere.draw(16.0f, 200, 16);
GL11.glColor3d(1.0D, 1.0D, 1.0D);
GL11.glPopMatrix();