6 #ifndef PLOTFUNCTIONRESULT_H_
7 #define PLOTFUNCTIONRESULT_H_
9 #include "plotsconfig.h"
39 inline PlotFunctionResult(
double display,
double logical) : displayValue(display), logicalValue(logical) {}
52 displayValue = logicalValue = value;
66 #endif // PLOTFUNCTIONRESULT_H_
double logicalValue
Value referenced in further evaluations of the function.
Definition: plotfunctionresult.h:30
PlotFunctionResult(double value=0)
Constructor - both display and logical values are set to value.
Definition: plotfunctionresult.h:34
PlotFunctionResult(const PlotFunctionResult &other)
Copy constructor.
Definition: plotfunctionresult.h:43
double displayValue
Value to display.
Definition: plotfunctionresult.h:29
PlotFunctionResult(double display, double logical)
Constructor accepting distinct display and logical values.
Definition: plotfunctionresult.h:39
PlotFunctionResult & operator=(double value)
Assignment - both display and logical values are set to value.
Definition: plotfunctionresult.h:50
Result value from a PlotFunction.
Definition: plotfunctionresult.h:27
PlotFunctionResult & operator=(const PlotFunctionResult &other)
Assignment - copy.
Definition: plotfunctionresult.h:58