Hyena.Widgets.SmoothScrolledWindow.DecelerateCore C# (CSharp) 메소드

DecelerateCore() 보호된 메소드

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