[apps/shared/cartesian_function] Define PlotType

This commit is contained in:
Ruben Dashyan
2019-07-03 17:40:05 +02:00
committed by Léa Saviot
parent 31fc217fcd
commit efc5b15211
2 changed files with 20 additions and 0 deletions

View File

@@ -78,6 +78,14 @@ int CartesianFunction::derivativeNameWithArgument(char * buffer, size_t bufferSi
return numberOfChars + derivativeSize;
}
CartesianFunction::PlotType CartesianFunction::plotType() const {
return recordData()->plotType();
}
void CartesianFunction::setPlotType(PlotType plotType) {
return recordData()->setPlotType(plotType);
}
bool CartesianFunction::displayDerivative() const {
return recordData()->displayDerivative();
}