| 70 | } |
| 71 | |
| 72 | void WaveSimulation1D_Real::setSpeed(float something) { |
| 73 | // See constructor for clamp rationale. |
| 74 | mCourantSq = wave_detail::float_to_fixed(fl::clamp(something, 0.0f, 1.0f)); |
| 75 | } |
| 76 | |
| 77 | void WaveSimulation1D_Real::setDampening(int damp) FL_NOEXCEPT { |
| 78 | mDampenening = damp; |
nothing calls this directly
no test coverage detected