CanvasClean.LoessInterpolator.tricube C# (CSharp) Method

tricube() private static method

private static tricube ( double x ) : double
x double
return double
        private static double tricube(double x)
        {
            double tmp = 1 - x * x * x;
            return tmp * tmp * tmp;
        }