Hyena.Widgets.SmoothScrolledWindow.DecelerateCore C# (CSharp) Method

DecelerateCore() protected method

protected DecelerateCore ( double velocity ) : double
velocity double
return double
        protected virtual double DecelerateCore (double velocity)
        {
            return velocity - Math.Max (3, 0.2 * velocity);
        }