1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-18 23:44:30 +00:00

line plots

This commit is contained in:
2019-03-21 17:40:13 +00:00
parent 3918d3a9b8
commit 0bf6d8c8ae
2 changed files with 27 additions and 0 deletions

View File

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