QWT API (English) 7.3.0
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
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