-----------------------------------------------------------------------------
| 96 | |
| 97 | //----------------------------------------------------------------------------- |
| 98 | ExponentialScaleAlgorithm::ExponentialScaleAlgorithm( |
| 99 | double maxRawValue, double exponent) |
| 100 | : scale(1.0 / maxRawValue), exponent(exponent) |
| 101 | { |
| 102 | } |
| 103 | |
| 104 | //----------------------------------------------------------------------------- |
| 105 | double ExponentialScaleAlgorithm::operator()(double rawValue) const |
nothing calls this directly
no outgoing calls
no test coverage detected