CanvasClean.LoessInterpolator.LoessInterval.IsRightOf C# (CSharp) Method

IsRightOf() public method

Whether the interval is on the right of x
public IsRightOf ( double x ) : bool
x double
return bool
            public bool IsRightOf(double x)
            {
                return x < XMin;
            }