3 * Purpose: Declarations/definitions of common math functions
4 * Author: John Labenski and others
8 * Copyright: (c) John Labenski
9 * Licence: wxWindows licence
12 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
22 #define M_PI 3.1415926535897932384626433832795
25 /* Scaling factors for various unit conversions: 1 inch = 2.54 cm */
26 #ifndef METRIC_CONVERSION_CONSTANT
27 #define METRIC_CONVERSION_CONSTANT (1/25.4)
31 #define mm2inches (METRIC_CONVERSION_CONSTANT)
35 #define inches2mm (1/(mm2inches))
39 #define mm2twips (METRIC_CONVERSION_CONSTANT*1440)
43 #define twips2mm (1/(mm2twips))
47 #define mm2pt (METRIC_CONVERSION_CONSTANT*72)
51 #define pt2mm (1/(mm2pt))
55 /* unknown __VISAGECC__, __SYMANTECCC__ */
57 #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__)
59 #define wxFinite(x) _finite(x)
60 #elif defined(__MINGW64__) || defined(__clang__)
62 add more compilers with C99 support here: using C99 isfinite() is
63 preferable to using BSD-ish finite()
65 #if defined(_GLIBCXX_CMATH) || defined(_LIBCPP_CMATH)
66 // these <cmath> headers #undef isfinite
67 #define wxFinite(x) std::isfinite(x)
69 #define wxFinite(x) isfinite(x)
71 #elif ( defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
72 defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
73 defined(__HPUX__) ) && ( !defined(wxOSX_USE_IPHONE) || wxOSX_USE_IPHONE == 0 )
77 #define wxFinite(x) finite(x)
79 #define wxFinite(x) ((x) == (x))
83 #if defined(__VISUALC__)||defined(__BORLAND__)
84 #define wxIsNaN(x) _isnan(x)
85 #elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \
86 defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \
88 #define wxIsNaN(x) isnan(x)
90 #define wxIsNaN(x) ((x) != (x))
97 inline bool wxIsSameDouble(double x
, double y
)
99 // VZ: this warning, given for operators==() and !=() is not wrong, as ==
100 // shouldn't be used with doubles, but we get too many of them and
101 // removing these operators is probably not a good idea
103 // Maybe we should always compare doubles up to some "epsilon" precision
104 #pragma warning(push)
106 // floating-point equality and inequality comparisons are unreliable
107 #pragma warning(disable: 1572)
114 #else /* !__INTELC__ */
115 wxGCC_WARNING_SUPPRESS(float-equal
)
116 inline bool wxIsSameDouble(double x
, double y
) { return x
== y
; }
117 wxGCC_WARNING_RESTORE(float-equal
)
119 #endif /* __INTELC__/!__INTELC__ */
121 inline bool wxIsNullDouble(double x
) { return wxIsSameDouble(x
, 0.); }
123 inline int wxRound(double x
)
125 wxASSERT_MSG( x
> INT_MIN
- 0.5 && x
< INT_MAX
+ 0.5,
126 wxT("argument out of supported range") );
128 #if defined(HAVE_ROUND)
129 return int(round(x
));
131 return (int)(x
< 0 ? x
- 0.5 : x
+ 0.5);
134 #endif /* __cplusplus */
137 #if defined(__WINDOWS__) && !defined(__WXWINCE__)
138 #define wxMulDivInt32( a , b , c ) ::MulDiv( a , b , c )
140 #define wxMulDivInt32( a , b , c ) (wxRound((a)*(((wxDouble)b)/((wxDouble)c))))
147 /* functions from common/extended.c */
148 WXDLLIMPEXP_BASE wxFloat64
wxConvertFromIeeeExtended(const wxInt8
*bytes
);
149 WXDLLIMPEXP_BASE
void wxConvertToIeeeExtended(wxFloat64 num
, wxInt8
*bytes
);
151 /* use wxConvertFromIeeeExtended() and wxConvertToIeeeExtended() instead */
152 #if WXWIN_COMPATIBILITY_2_8
153 wxDEPRECATED( WXDLLIMPEXP_BASE wxFloat64
ConvertFromIeeeExtended(const wxInt8
*bytes
) );
154 wxDEPRECATED( WXDLLIMPEXP_BASE
void ConvertToIeeeExtended(wxFloat64 num
, wxInt8
*bytes
) );
160 #endif /* wxUSE_APPLE_IEEE */
163 #endif /* _WX_MATH_H_ */