CanvasClean.LoessInterpolator.LoessInterval.IsLeftOf C# (CSharp) Méthode

IsLeftOf() public méthode

Whether the interval is on the left of x
public IsLeftOf ( double x ) : bool
x double
Résultat bool
            public bool IsLeftOf(double x)
            {
                return XMax <= x;
            }