| 253 | |
| 254 | |
| 255 | template<class T> T AutomatableModel::logToLinearScale( T value ) const |
| 256 | { |
| 257 | return castValue<T>( ::logToLinearScale( minValue<float>(), maxValue<float>(), static_cast<float>( value ) ) ); |
| 258 | } |
| 259 | |
| 260 | |
| 261 | float AutomatableModel::scaledValue( float value ) const |
nothing calls this directly
no test coverage detected