vote up 1 vote down star

Hi guys, I'm really new to OpenGL, which is a really bad thing to me :| I need to draw a star(sort of) with openGl but I'm not really sure where I should start.

The results should be something like this: http://i29.tinypic.com/68zif8.gif Is there an easy way to do this ?

Thank you !

flag

50% accept rate

4 Answers

vote up 0 vote down

Why not write an algorithm to generate a texture procedurally in code using a 2D GLuByte array as in the "checker.c" example in Redbook? Instead of following a perfect checkerboard pattern, figure out how to make a 2D texture of that star and map it into a quad using glTexImage2D(...).

link|flag
vote up 0 vote down

From reading the other answers and your comments ("the problem is that I don't want to draw a texture mapped quad :| All needs to be done with coding, no images needs to be used" above), it looks like you want to draw a triangle from polygons, not a texture? You example image looks like a texture, but the following describes a polygonal star with any number of points - a normal 5-pointed star or a Star of David, for example.

  1. Start with code that draws a single triangle. If you haven't got that far in your OpenGL code yet, read lessons 1 and 2 from NeHe. Once you get to the stage presented here, you should be able to draw a triangle onscreen.

  2. Any star is a pretty simple shape and the best way to draw it is probably as a collection of triangles. What you should do is figure out the coordinates of each vertex of the star (that is, the points on the outside that make it up) and then add triangles in to draw those inside your glBegin(GL_TRIANGLES) section of code. You might want to add extra vertices in the middle of the star to make making triangles simpler. This process of subdividing a shape into triangles is called "triangulation" (usually done for a full 3D surface, not just a simple shape like this).

    You can do this either by calculating it mathematically or simply drawing one on paper and figuring out the coordinates by hand. The latter might be the easiest approach to figure out how triangulation works, because you can also draw the triangles that make up the star. To calculate the points mathematically, you need to figure out how many points you want, and double that for the total number of vertices around the edge of the star. Use basic trig math to calculate the points equally spaced around a circle, and extend them further away from the center if they are a point of the star. (Ie, normalize each point, multiply it by the radius of the star's inner or outer radiuses.)

  3. You can always use a code search to find how other people have achieved the same thing.

This sounds a little like a homework question to me, so I've tried to give an answer describing how to do it rather than an actual solution with code. I hope it's useful and the pointers / links should help! Good luck.

link|flag
vote up 1 vote down

If you're new to OpenGL and if you're using Delphi, then most probably what you need is GLScene. Mature, alive, very good quality of code and, of course, free.

link|flag
I tried GLScene but I still cant find a way to avoid using mapped textures, I suppose this isnt so easy to do. – Andy Jul 8 at 18:17
Ask them: news://forums.talkto.net/glscene.general - or - news://forums.talkto.net/glscene.support At the time of writing are '59884 messages' in glscene.general. (I don't counted them, my Thunderbird says so :-)) HTH, – plainth Jul 9 at 7:29
vote up 2 vote down

Hi, the easiest way would be to draw a texture mapped quad with a "star" texture. You can read a tutorial on texture mapping here: http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=06

That tutorial teaches how to draw a cube using textures. You just have to draw a single face, instead of all six.

The tutorial is written in C++, but near the end you can download the source of a Delphi version.

There are other effects you might want to add later, such as transparency. You can also read about that in the NeHe site. It has a lot of useful tutorials on OpenGL. It's a great place to learn OpenGL.

link|flag
the problem is that I don't want to draw a texture mapped quad :| All needs to be done with coding, no images needs to be used, I need this because I do need to change the light level. Thank you for your answer ! – Andy Jul 7 at 22:33
Then you better get a different example. The image you show looks like a textured quad, not like polygonal data. The texture itself could of course be generated from code, but that's completely unrelated to OpenGL. Can you perhaps provide us with a better example of what you really want to achieve? – Paul-Jan Jul 8 at 18:50

Your Answer

Get an OpenID
or

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