Bevisuali.UX.ExtWPF.IsNaN C# (CSharp) Method

IsNaN() public static method

public static IsNaN ( this a ) : bool
a this
return bool
        public static bool IsNaN(this Point a)
        {
            return double.IsNaN(a.X) || double.IsNaN(a.Y);
        }