I'm looking for a simple formula where i can set a current value, min value, and max value before the results starts to get diminishing returns.
Like this, where all values are between 0 - 1.0;
A + (B * current value)
example 0.2+(0.5*0.5) so here the min is A 0.2, and max is A+B so 0.7, so when the current value is 0 the result is 0.2, and when the current value is 1.0, the result is 0.7. Here at 0.5 the results in 0.45.
How would i introduce diminishing returns on results as the current value goes from 0 to 1.0?