QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_volumeplot.h
1#ifndef QWT3D_VOLUMEPLOT_H
2#define QWT3D_VOLUMEPLOT_H
3
4#include "qwt3d_plot.h"
5
6namespace Qwt3D
7{
8
14class QWT3D_EXPORT VolumePlot : public Plot3D
15{
16public:
17 // Constructor
18 explicit VolumePlot(QWidget* parent = nullptr)
19 {
20 }
21
22protected:
23 virtual void createData() override = 0;
24};
25
26} // ns
27
28#endif // QWT3D_VOLUMEPLOT_H
Base class for all plotting widgets
Definition qwt3d_plot.h:22
Volume plot widget (TODO: not yet fully implemented)
Definition qwt3d_volumeplot.h:15