I am trying to draw a very simple, black and white stick figure whose head is a sphere. The background is black and I am drawing with white color. The orthographic projection of the sphere head should be a white circle with line width of 3 pixels. Everything behind the head should be hidden (DEPTH_TEST enabled). I would like to avoid using glut but glu is OK.

What is the simplest way to achive this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Not using a sphere. A sphere will be composed of several triangles, and if drawn using a line mode you'll end up with a wireframe sphere. Silouhette Shaders are overkill here. The simplemost solution is drawing a line circle, that's oriented towards the camera (=origin), i.e. a billboard effect.

link|improve this answer
Oh, I see, billboard effect, thanks! – Ali Jan 21 '11 at 13:50
feedback

If you really want to use a sphere and orthographic projection I recommend looking at gluSphere. An alternative would be gluDisk (which already is 2D).

However, for pure 2D graphics (as it sounds) I recommend that you think about using point-sprites for the circles: One Quad with the circle as texture

http://nehe.gamedev.net/data/articles/article.asp?article=19

link|improve this answer
Thanks for the answer! The link helped. I am pretty much stuck: I can accept only one answer but both answers are equally good and solve the issue. Maybe I will wait for a while for others to vote and accept the one with higher score. – Ali Jan 21 '11 at 14:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.