| 663 | } |
| 664 | |
| 665 | void Simulation::emitParticles() |
| 666 | { |
| 667 | START_TIMING("emitParticles"); |
| 668 | for (unsigned int i = 0; i < numberOfFluidModels(); i++) |
| 669 | { |
| 670 | FluidModel *fm = getFluidModel(i); |
| 671 | fm->getEmitterSystem()->step(); |
| 672 | } |
| 673 | STOP_TIMING_AVG |
| 674 | } |
| 675 | |
| 676 | void Simulation::animateParticles() |
| 677 | { |
nothing calls this directly
no test coverage detected