Here, I am plotting a series of shapes, and I am having problems glut and aux SolidCylinders. If I use Spheres I am OK, but I don't want to use them. When I use cylinders, I only get 1 cylinder instead of multiple cylinders.
glPushMatrix();
glTranslated(x[i],y[i],z[i]);
glutSolidSphere(.006f, 10, 10);
//auxSolidCylinder(.006f,.25f);//why not ?
glPopMatrix();
Why is it that I only get 1 cylinder but multiple spheres, and what am I doing wrong?
thank you,
SpaceGhost



