00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_MATH_H
00011 #define QWT_MATH_H
00012
00013 #include <math.h>
00014 #include <qpoint.h>
00015 #include "qwt_global.h"
00016
00017 #if QT_VERSION < 0x040000
00018
00019 #define qwtMax QMAX
00020 #define qwtMin QMIN
00021 #define qwtAbs QABS
00022
00023 #else // QT_VERSION >= 0x040000
00024
00025 #define qwtMax qMax
00026 #define qwtMin qMin
00027 #define qwtAbs qAbs
00028
00029 #endif
00030
00031 #ifndef LOG10_2
00032 #define LOG10_2 0.30102999566398119802
00033 #endif
00034
00035 #ifndef LOG10_3
00036 #define LOG10_3 0.47712125471966243540
00037 #endif
00038
00039 #ifndef LOG10_5
00040 #define LOG10_5 0.69897000433601885749
00041 #endif
00042
00043 #ifndef M_2PI
00044 #define M_2PI 6.28318530717958623200
00045 #endif
00046
00047 #ifndef LOG_MIN
00048
00049 #define LOG_MIN 1.0e-100
00050 #endif
00051
00052 #ifndef LOG_MAX
00053
00054 #define LOG_MAX 1.0e100
00055 #endif
00056
00057 #ifndef M_E
00058 #define M_E 2.7182818284590452354
00059 #endif
00060
00061 #ifndef M_LOG2E
00062 #define M_LOG2E 1.4426950408889634074
00063 #endif
00064
00065 #ifndef M_LOG2E
00066 #define M_LOG10E 0.43429448190325182765
00067 #endif
00068
00069 #ifndef M_LN2
00070 #define M_LN2 0.69314718055994530942
00071 #endif
00072
00073 #ifndef M_LN10
00074 #define M_LN10 2.30258509299404568402
00075 #endif
00076
00077 #ifndef M_PI
00078 #define M_PI 3.14159265358979323846
00079 #endif
00080
00081 #ifndef M_PI_2
00082 #define M_PI_2 1.57079632679489661923
00083 #endif
00084
00085 #ifndef M_PI_4
00086 #define M_PI_4 0.78539816339744830962
00087 #endif
00088
00089 #ifndef M_1_PI
00090 #define M_1_PI 0.31830988618379067154
00091 #endif
00092
00093 #ifndef M_2_PI
00094 #define M_2_PI 0.63661977236758134308
00095 #endif
00096
00097 #ifndef M_2_SQRTPI
00098 #define M_2_SQRTPI 1.12837916709551257390
00099 #endif
00100
00101 #ifndef M_SQRT2
00102 #define M_SQRT2 1.41421356237309504880
00103 #endif
00104
00105 #ifndef M_SQRT1_2
00106 #define M_SQRT1_2 0.70710678118654752440
00107 #endif
00108
00109 QWT_EXPORT double qwtGetMin(const double *array, int size);
00110 QWT_EXPORT double qwtGetMax(const double *array, int size);
00111
00112
00114 inline int qwtSign(double x)
00115 {
00116 if (x > 0.0)
00117 return 1;
00118 else if (x < 0.0)
00119 return (-1);
00120 else
00121 return 0;
00122 }
00123
00125 inline double qwtSqr(const double x)
00126 {
00127 return x*x;
00128 }
00129
00136 template <class T>
00137 T qwtLim(const T& x, const T& x1, const T& x2)
00138 {
00139 T rv;
00140 T xmin, xmax;
00141
00142 xmin = qwtMin(x1, x2);
00143 xmax = qwtMax(x1, x2);
00144
00145 if ( x < xmin )
00146 rv = xmin;
00147 else if ( x > xmax )
00148 rv = xmax;
00149 else
00150 rv = x;
00151
00152 return rv;
00153 }
00154
00155 inline QPoint qwtPolar2Pos(const QPoint ¢er,
00156 double radius, double angle)
00157 {
00158 const double x = center.x() + radius * cos(angle);
00159 const double y = center.y() - radius * sin(angle);
00160
00161 return QPoint(qRound(x), qRound(y));
00162 }
00163
00164 inline QPoint qwtDegree2Pos(const QPoint ¢er,
00165 double radius, double angle)
00166 {
00167 return qwtPolar2Pos(center, radius, angle / 180.0 * M_PI);
00168 }
00169
00170 #endif