(#869) Summary : Right axis WIP

This commit is contained in:
Magne Sjaastad
2016-10-10 11:05:45 +02:00
parent 6a8801e179
commit c07f13d407
13 changed files with 585 additions and 226 deletions

View File

@@ -80,5 +80,17 @@ public:
};
static double feetPerMeter() { return 3.2808399; }
// Defines relate to plotting
enum PlotAxis
{
PLOT_AXIS_LEFT,
PLOT_AXIS_RIGHT
};
static double minimumDefaultValuePlot() { return - 10.0; }
static double maximumDefaultValuePlot() { return 100.0; }
};