| 48 | } |
| 49 | |
| 50 | double DistanceEffect::inverseGain(double distance) |
| 51 | { |
| 52 | return m_refDistance / (m_refDistance + m_rolloffFactor * (distance - m_refDistance)); |
| 53 | } |
| 54 | |
| 55 | double DistanceEffect::exponentialGain(double distance) |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected