2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-03-08 14:43:31 +00:00
|
|
|
// Name: math.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of global functions
|
2008-03-08 14:43:31 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-03-23 18:24:32 +00:00
|
|
|
/** @ingroup group_funcmacro_math */
|
|
|
|
//@{
|
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
/**
|
2008-03-23 18:24:32 +00:00
|
|
|
Returns a non-zero value if @a x is neither infinite nor NaN (not a
|
|
|
|
number), returns 0 otherwise.
|
|
|
|
|
|
|
|
@header{wx/math.h}
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
int wxFinite(double x);
|
|
|
|
|
2008-03-23 18:24:32 +00:00
|
|
|
/**
|
|
|
|
Returns a non-zero value if x is NaN (not a number), returns 0 otherwise.
|
|
|
|
|
|
|
|
@header{wx/math.h}
|
|
|
|
*/
|
|
|
|
bool wxIsNaN(double x);
|
|
|
|
|
|
|
|
//@}
|
2008-03-08 13:52:38 +00:00
|
|
|
|