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-09 12:33:59 +00:00
|
|
|
Returns a non-zero value if @a x is neither infinite nor NaN (not a number),
|
2008-03-08 14:43:31 +00:00
|
|
|
returns 0 otherwise.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
int wxFinite(double x);
|
|
|
|
|
|
|
|
|