Afterglow.Math.LinearInterpolator.LinearInterpolator C# (CSharp) Method

LinearInterpolator() public method

Initializes a new instance of the LinearInterpolator class.
public LinearInterpolator ( float startValue, float endValue )
startValue float The start value.
endValue float The end value.
        public LinearInterpolator(float startValue, float endValue)
        {
            mStartValue = startValue;
            mEndValue = endValue;
        }