]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/math.h
mac paths updated
[wxWidgets.git] / interface / math.h
index 8e9d46ac1733c972458cdf37d038641f0ffc5eed..e60620eaa5e4b1e8a508de667a3f97f1ffa51265 100644 (file)
@@ -1,15 +1,28 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        math.h
-// Purpose:     documentation for global functions
+// 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.
+    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);
+
+//@}