explosion in opengl

How can I simulate explosion in opengl ??
What I’m thinking of is an array of successive images show the explosion step by step …
How to code that … I don’t know … ??

Any help or ideas …

Thanks in advance

Some combination of the following two examples should give you something decent to go with:
http://www.d.kth.se/~nv91-gta/OpenGL/examples/explosion.html
http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=19

The use of successive images is one way, nehe.gamedev.net has a demo which uses that(I think it is around lesson 31).

The other is to have the object disasemble, and the pieces of the object move out from it.

Originally posted by glcrazy:
[b]
How can I simulate explosion in opengl ??
What I’m thinking of is an array of successive images show the explosion step by step …
How to code that … I don’t know … ??

Any help or ideas …

Thanks in advance

[/b]

Thank you very much

I will try it and post the result here