static public float linearInterpolation(float factor, float min, float max) { UT.assert0to1(factor); return(min + (max - min) * factor); }