|
QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
|
Logarithmic transformation 更多...
#include <qwt_transform.h>
Public 成员函数 | |
| QwtLogTransform () | |
| Constructor | |
| ~QwtLogTransform () override | |
| Destructor | |
| virtual double | transform (double value) const override |
| Transformation function - log(value) | |
| virtual double | invTransform (double value) const override |
| Inverse transformation function - exp(value) | |
| virtual double | bounded (double value) const override |
| Bounded function - qBound(LogMin, value, LogMax) | |
| virtual QwtTransform * | copy () const override |
| Clone of the transformation | |
Public 成员函数 继承自 QwtTransform | |
| QwtTransform () | |
| Constructor | |
| virtual | ~QwtTransform () |
| Destructor | |
静态 Public 属性 | |
| static const double | LogMin = 1.0e-150 |
| Smallest allowed value for logarithmic scales: 1.0e-150 | |
| static const double | LogMax = 1.0e150 |
| Largest allowed value for logarithmic scales: 1.0e150 | |
Logarithmic transformation
QwtLogTransform modifies the values using log() and exp().
| QwtLogTransform::QwtLogTransform | ( | ) |
Constructor
Default constructor
|
overridevirtual |
Bounded function - qBound(LogMin, value, LogMax)
Bounded function
| value | Value to be bounded |
重载 QwtTransform .
|
overridevirtual |
|
overridevirtual |
Inverse transformation function - exp(value)
Inverse transform function
| value | Value to be transformed |
实现了 QwtTransform.
|
overridevirtual |
Transformation function - log(value)
Transform function
| value | Value to be transformed |
实现了 QwtTransform.