2003-03-02 23:42:57 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: math.h
|
|
|
|
// Purpose: Declarations/definitions of common math functions
|
|
|
|
// Author: John Labenski and others
|
|
|
|
// Modified by:
|
|
|
|
// Created: 02/02/03
|
2004-09-17 22:23:59 +00:00
|
|
|
// RCS-ID:
|
2003-03-02 23:42:57 +00:00
|
|
|
// Copyright: (c)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2003-03-02 23:42:57 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MATH_H_
|
|
|
|
#define _WX_MATH_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2003-03-02 23:42:57 +00:00
|
|
|
#pragma interface "math.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
// unknown __VISAGECC__, __SYMANTECCC__
|
|
|
|
|
|
|
|
#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__)
|
|
|
|
#include <float.h>
|
|
|
|
#define wxFinite(x) _finite(x)
|
|
|
|
#elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
|
|
|
|
defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
|
2004-09-17 22:23:59 +00:00
|
|
|
defined(__HPUX__)||defined(__MWERKS__)
|
2003-03-02 23:42:57 +00:00
|
|
|
#define wxFinite(x) finite(x)
|
|
|
|
#else
|
|
|
|
#define wxFinite(x) ((x) == (x))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(__VISUALC__)||defined(__BORLAND__)
|
|
|
|
#define wxIsNaN(x) _isnan(x)
|
|
|
|
#elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
|
|
|
|
defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
|
2004-09-17 22:23:59 +00:00
|
|
|
defined(__HPUX__)||defined(__MWERKS__)
|
|
|
|
#define wxIsNaN(x) isnan(x)
|
2003-03-02 23:42:57 +00:00
|
|
|
#else
|
|
|
|
#define wxIsNaN(x) ((x) != (x))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _WX_MATH_H_
|