Tagged Questions

9
votes
3answers
2k views

Particle System Design?

I'm designing my own particle System engine, this is for learning purposes, I don't really want to use an existing engine. Right now I generated beautiful particles, but I want to layout the engine ...
5
votes
7answers
1k views

uniform generation of 3D points on cylinder/cone

I wish to randomly and uniformly generate points on a cylinder and a cone (separately). The cylinder is defined by its center, its radius and height. Same specifications for the cone. I am able to get ...
4
votes
2answers
2k views

Rendering fire in OpenGL

I want to render a fire effect in OpenGL based on a particle simulation. I have hundreds of particles which have a position and a temperature (and therefore a color) as well as with all their other ...
3
votes
2answers
637 views

particle system: particle generation

I have a system that generates particles from sources and updates their positions. Currently, I have written a program in OpenGL which calls my GenerateParticles(...) and UpdateParticles(...) and ...
3
votes
1answer
704 views

opengl modelling rocket flame and vapour trails with particles

Does anyone have any guidance for coding an approximation for the particle stream coming out of a jet engine (with afterburner) in opengl using particles drawing using vertex buffers / 4f color ...
2
votes
1answer
202 views

uniform generation of points on 3D box

I would like to generate random points on a 3D box defined by its (minx, miny, minz) and (maxx, maxy, maxz) corners. I was thinking of generating a random point inside of the box and then somehow ...
2
votes
3answers
651 views

How to render non trivial particles in OpenGL

I have a particle system where the positions and various properties are stored in a vertex buffer object. The values are continuously updated by a CUDA kernel. Presently I am just rendering them ...
1
vote
1answer
112 views

OpenGL particles, help controlling direction

I am trying to modify this Digiben sample in order to get the effect of particles that generate from a spot (impact point) and float upwards kind of like the sparks of a fire. The sample has the ...
1
vote
3answers
160 views

OpenGL lighting small objects?

Hey. I'm having a problem with lighting when dealing with really small particles. I'm doing particle-based fluid simulation and am right now rendering the fluid as really tiny polygonized spheres (by ...