1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-22 00:42:02 +01:00

plot data with points

This commit is contained in:
2021-12-20 01:30:26 +01:00
parent adf2c9cc69
commit 60d91cbff5
2 changed files with 27 additions and 0 deletions

View File

@ -116,6 +116,15 @@ public:
virtual ~PlotLine(void) = default;
};
class PlotPoints: public PlotObject
{
public:
// constructor
PlotPoints(const DVec &x, const DVec &y);
// destructor
virtual ~PlotPoints(void) = default;
};
class PlotBand: public PlotObject
{
public: