NewTOAPIA.Drawing.gamma_multiply.GetGamma C# (CSharp) Method

GetGamma() public method

public GetGamma ( double x ) : double
x double
return double
        public double GetGamma(double x)
        {
            double y = x * m_mul;
            if (y > 1.0) y = 1.0;
            return y;
        }