problem with gluDisk

Started by
1 comment, last by glJunkie 22 years, 2 months ago
Hi everyone. Try this bit of code and tell me if you can figure out how to get rid of that little radial "spoke" in the disk. Its really annoying me!! Thanks, Tim GLUquadric* cap = gluNewQuadric(); glBegin(GL_LINE_LOOP); gluDisk( cap, 0.0, 10.0, 10, 1 ); glEnd();
Advertisement
Have you tried that :

gluDisk( cap,
0.0001,
10.0,
10,
1
);

That may not be exactly what you want, but if the object is small on screen you may accept that.
Thanks for that - No it didnt work - but this worked:

GLUquadric* cap = gluNewQuadric();
gluDisk( cap,
10.0,
10.0,
10,
1
);

Thanks anyway vincoof.
Tim.


This topic is closed to new replies.

Advertisement