#include <list>
#include "opengl.h"
#include "particle.h"
Go to the source code of this file.
Defines | |
#define | PUFF_PARTICLES_PER_LENGTH_UNIT 10 |
The number of particles per length unit of a (broken) edge. | |
#define | PUFF_DAMPING 0.02 |
The damping coefficient. | |
#define | PUFF_MASS_MEAN 0.01 |
The mean mass. | |
#define | PUFF_MASS_STD 0.001 |
The standard deviation of the mass. | |
#define | PUFF_POS_STD 0.1 |
The standard deviation of the initial position. | |
#define | PUFF_VEL_MEAN_X 0.0 |
The mean initial velocity (x-component). | |
#define | PUFF_VEL_MEAN_Y 2.0 |
The mean initial velocity (y-component). | |
#define | PUFF_VEL_STD 0.1 |
The standard deviation of the initial velocity. | |
#define | PUFF_LIEFTIME_MEAN 0.5 |
The mean lifetime. | |
#define | PUFF_LIEFTIME_STD 0.1 |
The standard deviation of the lifetime. | |
#define | PUFF_FORCE_MEAN_X 0.0 |
The mean external force (x-component). | |
#define | PUFF_FORCE_MEAN_Y -0.2 |
The mean external force (y-component). | |
#define | PUFF_FORCE_STD 0.001 |
The standard deviation of the external force. |