Beispiel #1
0
 private float Operation(Flow flow)
 {
     return(MathLibrary.DecayFunction(flow.GetValue <float>(input), flow.GetValue <float>(minimum), flow.GetValue <float>(decayFactor), flow.GetValue <float>(scale)));
 }
 private float Operation(Recursion recursion)
 {
     return(MathLibrary.DecayFunction(input.GetValue <float>(), minimum.GetValue <float>(), decayFactor.GetValue <float>(), scale.GetValue <float>()));
 }