AcTools.Render.Base.PostEffects.BlurHelper.ComputeGaussian C# (CSharp) 메소드

ComputeGaussian() 정적인 개인적인 메소드

static private ComputeGaussian ( float n, float theta ) : float
n float
theta float
리턴 float
        static float ComputeGaussian(float n, float theta) {
            return MathF.Exp(-n * n / (2.0f * theta * theta)) / MathF.Sqrt(2.0f * MathF.PI * theta);
        }