R3.Math.Isometry.IsNaN C# (CSharp) 메소드

IsNaN() 개인적인 정적인 메소드

private static IsNaN ( System.Numerics.Complex c ) : bool
c System.Numerics.Complex
리턴 bool
        private static bool IsNaN( Complex c )
        {
            return
                double.IsNaN( c.Real ) ||
                double.IsNaN( c.Imaginary );
        }