]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/math.h
mac paths updated
[wxWidgets.git] / interface / math.h
index db1265755e48b215146ecdc0a87872ce085ec888..e60620eaa5e4b1e8a508de667a3f97f1ffa51265 100644 (file)
@@ -1,16 +1,28 @@
 /////////////////////////////////////////////////////////////////////////////
-    // Name:        math.h
-    // Purpose:     documentation for global functions
-    // Author:      wxWidgets team
-    // RCS-ID:      $Id$
-    // Licence:     wxWindows license
-    /////////////////////////////////////////////////////////////////////////////
-    
-    /**
-    Returns a non-zero value if @e x is neither infinite nor NaN (not a number),
-    returns 0 otherwise.
+// Name:        math.h
+// Purpose:     interface of global functions
+// Author:      wxWidgets team
+// RCS-ID:      $Id$
+// Licence:     wxWindows license
+/////////////////////////////////////////////////////////////////////////////
+
+/** @ingroup group_funcmacro_math */
+//@{
+
+/**
+    Returns a non-zero value if @a x is neither infinite nor NaN (not a
+    number), returns 0 otherwise.
+
+    @header{wx/math.h}
 */
 int wxFinite(double x);
 
+/**
+    Returns a non-zero value if x is NaN (not a number), returns 0 otherwise.
+
+    @header{wx/math.h}
+*/
+bool wxIsNaN(double x);
+
+//@}
 
-    
\ No newline at end of file