Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to start a basic particle system in C++ using OpenGL. I wrote an algorithm for that but I don't understand how to start it.

The problem I am facing is I can print the positions and velocity updates but I don't know how to show it visually using OpenGL.

share|improve this question
Have you tried drawing quad in each position for all the particles? – Mārtiņš Možeiko May 28 '12 at 5:36
use point sprites: informit.com/articles/article.aspx?p=770639&seqNum=7 – fen May 28 '12 at 6:48

1 Answer

I hope you are trying out something on the lines of what is below:

  • Have a structure(C++ struct or a class) to denote a Particle. The structure contains:

    • Particle location (x,y,z)
    • Particle velocity (Vx, Vy, Vz)
    • Particle acceleration (Ax, Ay,Az) //something you might need too..
    • paint function to do the painting of the particle.
  • Have an array of this structure. Initialise velocity, position, and acceleration as needed.

  • In a separate thread (or in the repaint event, for starting up) do the following:

    • For every particle (element in the array) do:

      • particle[index].velocityX += particle[index].accelerationX
      • particle[index].velocityY += particle[index].accelerationY
      • particle[index].velocityZ += particle[index].accelerationZ

      • particle[index].locationX += particle[index].velocityX

      • particle[index].locationY += particle[index].velocityY
      • particle[index].locationZ += particle[index].velocityZ

      //translate to the location and paint..

      • Use glTranslated(particle[index].locationX, particle[index].locationY, particle[index].locationZ)
share|improve this answer
Hi guys, Can anyone give me example of basic particle system using openGL, or any link... – Kalyan Jun 4 '12 at 15:57
Umm, the bullets I have put down above, is pretty much sufficient to implement a basic particle system, IMO. Show us what you have tried, may be we can help. In case you need a code to start you up, google for it; I am sure you will end up with 1000s of it. :) – Thrustmaster Jun 4 '12 at 16:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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