]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/math.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of global functions
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
9 /** @ingroup group_funcmacro_math */
13 Returns a non-zero value if @a x is neither infinite nor NaN (not a
14 number), returns 0 otherwise.
18 int wxFinite(double x
);
21 Returns a non-zero value if x is NaN (not a number), returns 0 otherwise.
25 bool wxIsNaN(double x
);