| 17 | namespace sim { |
| 18 | |
| 19 | ParticleEmitter::ParticleEmitter(const Params& params) : mParams(params) |
| 20 | { |
| 21 | mOrientation = getOrientationFromDirection(mParams.upDirection); |
| 22 | } |
| 23 | |
| 24 | void ParticleEmitter::update(float dt, std::vector<Particle>& particles) |
| 25 | { |
nothing calls this directly
no test coverage detected