]>
Commit | Line | Data |
---|---|---|
83c5e934 WS |
1 | /** |
2 | * Name: math.h | |
3 | * Purpose: Declarations/definitions of common math functions | |
4 | * Author: John Labenski and others | |
5 | * Modified by: | |
6 | * Created: 02/02/03 | |
7 | * RCS-ID: | |
99d80019 | 8 | * Copyright: (c) John Labenski |
83c5e934 WS |
9 | * Licence: wxWindows licence |
10 | */ | |
11 | ||
12 | /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */ | |
a02afd14 VZ |
13 | |
14 | #ifndef _WX_MATH_H_ | |
15 | #define _WX_MATH_H_ | |
16 | ||
a02afd14 VZ |
17 | #include "wx/defs.h" |
18 | ||
19edb09c WS |
19 | #include <math.h> |
20 | ||
21 | #ifndef M_PI | |
22 | #define M_PI 3.1415926535897932384626433832795 | |
23 | #endif | |
24 | ||
5f8ba10e | 25 | /* Scaling factors for various unit conversions */ |
e2bcbdfb WS |
26 | #ifndef METRIC_CONVERSION_CONSTANT |
27 | #define METRIC_CONVERSION_CONSTANT 0.0393700787 | |
28 | #endif | |
29 | ||
30 | #ifndef mm2inches | |
31 | #define mm2inches (METRIC_CONVERSION_CONSTANT) | |
32 | #endif | |
33 | ||
34 | #ifndef inches2mm | |
35 | #define inches2mm (1/(mm2inches)) | |
36 | #endif | |
37 | ||
38 | #ifndef mm2twips | |
39 | #define mm2twips (METRIC_CONVERSION_CONSTANT*1440) | |
40 | #endif | |
41 | ||
42 | #ifndef twips2mm | |
43 | #define twips2mm (1/(mm2twips)) | |
44 | #endif | |
45 | ||
46 | #ifndef mm2pt | |
47 | #define mm2pt (METRIC_CONVERSION_CONSTANT*72) | |
48 | #endif | |
49 | ||
50 | #ifndef pt2mm | |
51 | #define pt2mm (1/(mm2pt)) | |
52 | #endif | |
53 | ||
54 | ||
83c5e934 | 55 | /* unknown __VISAGECC__, __SYMANTECCC__ */ |
a02afd14 VZ |
56 | |
57 | #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__) | |
58 | #include <float.h> | |
59 | #define wxFinite(x) _finite(x) | |
60 | #elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \ | |
61 | defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \ | |
4e32eea1 | 62 | defined(__HPUX__)||defined(__MWERKS__) |
a02afd14 VZ |
63 | #define wxFinite(x) finite(x) |
64 | #else | |
65 | #define wxFinite(x) ((x) == (x)) | |
66 | #endif | |
67 | ||
68 | ||
69 | #if defined(__VISUALC__)||defined(__BORLAND__) | |
70 | #define wxIsNaN(x) _isnan(x) | |
71 | #elif defined(__GNUG__)||defined(__GNUWIN32__)||defined(__DJGPP__)|| \ | |
72 | defined(__SGI_CC__)||defined(__SUNCC__)||defined(__XLC__)|| \ | |
4e32eea1 WS |
73 | defined(__HPUX__)||defined(__MWERKS__) |
74 | #define wxIsNaN(x) isnan(x) | |
a02afd14 VZ |
75 | #else |
76 | #define wxIsNaN(x) ((x) != (x)) | |
77 | #endif | |
78 | ||
bc14c8b2 VZ |
79 | #ifdef __cplusplus |
80 | #ifdef __INTELC__ | |
81 | inline bool wxIsSameDouble(double x, double y) | |
82 | { | |
83 | // VZ: this warning, given for operators==() and !=() is not wrong, as == | |
84 | // shouldn't be used with doubles, but we get too many of them and | |
85 | // removing these operators is probably not a good idea | |
67036b24 VZ |
86 | // |
87 | // Maybe we should alway compare doubles up to some "epsilon" precision | |
bc14c8b2 VZ |
88 | #pragma warning(push) |
89 | ||
90 | // floating-point equality and inequality comparisons are unreliable | |
91 | #pragma warning(disable: 1572) | |
92 | ||
93 | return x == y; | |
94 | ||
95 | #pragma warning(pop) | |
96 | } | |
97 | #else /* !__INTELC__ */ | |
98 | inline bool wxIsSameDouble(double x, double y) { return x == y; } | |
99 | #endif /* __INTELC__/!__INTELC__ */ | |
67036b24 VZ |
100 | |
101 | inline bool wxIsNullDouble(double x) { return wxIsSameDouble(x, 0.); } | |
bc14c8b2 VZ |
102 | #endif /* __cplusplus */ |
103 | ||
a02afd14 | 104 | |
17a1ebd1 VZ |
105 | #if wxUSE_APPLE_IEEE |
106 | #ifdef __cplusplus | |
107 | extern "C" { | |
108 | #endif | |
109 | /* functions from common/extended.c */ | |
110 | extern wxFloat64 ConvertFromIeeeExtended(const wxInt8 *bytes); | |
111 | extern void ConvertToIeeeExtended(wxFloat64 num, wxInt8 *bytes); | |
112 | #ifdef __cplusplus | |
113 | } | |
114 | #endif | |
115 | #endif /* wxUSE_APPLE_IEEE */ | |
116 | ||
117 | ||
5f8ba10e | 118 | #endif /* _WX_MATH_H_ */ |