1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-19 15:54:29 +00:00

object to plot single point

This commit is contained in:
2022-08-03 14:24:36 +01:00
parent f0c3fd4d7d
commit 7fd31d1fcc
2 changed files with 66 additions and 0 deletions

View File

@@ -98,6 +98,18 @@ public:
virtual ~PlotData(void) = default;
};
class PlotPoint: public PlotObject
{
public:
// constructor
PlotPoint(const double x, const double y);
PlotPoint(const DSample &x, const double y);
PlotPoint(const double x, const DSample &y);
PlotPoint(const DSample &x, const DSample &y);
// destructor
virtual ~PlotPoint(void) = default;
};
class PlotHLine: public PlotObject
{
public: