QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_function.h
1#ifndef QWT3D_FUNCTION_H
2#define QWT3D_FUNCTION_H
3
4#include "qwt3d_gridmapping.h"
5#include "qwt3d_types.h"
6
7
8
33class QWT3D_EXPORT Qwt3DFunction : public Qwt3DGridMapping
34{
35
36public:
37 // Constructs Qwt3DFunction object
39 // Overwrite this
40 virtual double operator()(double x, double y) = 0;
41
42 // Sets minimal z value
43 void setMinZ(double val);
44 // Sets maximal z value
45 void setMaxZ(double val);
46
47 // Evaluates the function over the mesh grid and returns the result
48 virtual Qwt3DFunctionData create();
49};
50
51#endif // QWT3D_FUNCTION_H
Abstract base class for mathematical functions
Definition qwt3d_function.h:34
Abstract base class for mappings acting on rectangular grids
Definition qwt3d_gridmapping.h:12
Result of evaluating a Qwt3DFunction over its grid
Definition qwt3d_types.h:543