-----------------------------------------------------------------------------
| 82 | |
| 83 | //----------------------------------------------------------------------------- |
| 84 | LogarithmicScaleAlgorithm::LogarithmicScaleAlgorithm( |
| 85 | double maxRawValue, double rangeScale) |
| 86 | : preScale(rangeScale), |
| 87 | postScale(1.0 / log((maxRawValue * rangeScale) + 1.0)) |
| 88 | { |
| 89 | } |
| 90 | |
| 91 | //----------------------------------------------------------------------------- |
| 92 | double LogarithmicScaleAlgorithm::operator()(double rawValue) const |
nothing calls this directly
no outgoing calls
no test coverage detected