! * \brief Calls the generator function * * \param group Particle group responsible of the particles * \param mapper Particle mapper, allowing access to the particle data * \param startId The first ID of the particle to update (inclusive) * \param endId The last ID of the particle to update (inclusive) */
| 22 | * \param endId The last ID of the particle to update (inclusive) |
| 23 | */ |
| 24 | void ParticleFunctionGenerator::Generate(ParticleGroup& group, ParticleMapper& mapper, unsigned int startId, unsigned int endId) |
| 25 | { |
| 26 | m_generator(group, mapper, startId, endId); |
| 27 | } |
| 28 | } |