| 186 | } |
| 187 | |
| 188 | bool Particle::dead() const { |
| 189 | return timeToLive < -destructionTime; |
| 190 | } |
| 191 | |
| 192 | void Particle::applyVariance(Particle const& variance) { |
| 193 | size += variance.size * Random::randf(-1.0f, 1.0f); |
no outgoing calls
no test coverage detected