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

Contains() public method

Whether the interval contains x
public Contains ( double x ) : bool
x double
return bool
            public bool Contains(double x)
            {
                return XMin <= x && x < XMax;
            }