mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 22:00:28 +01:00
[apps/shared] CartesianFunction is composed of a 1D range as a
definition domain
This commit is contained in:
@@ -216,19 +216,19 @@ double CartesianFunction::approximateDerivative(double x, Poincare::Context * co
|
||||
return PoincareHelpers::ApproximateToScalar<double>(derivative, context);
|
||||
}
|
||||
|
||||
double CartesianFunction::tMin() const {
|
||||
float CartesianFunction::tMin() const {
|
||||
return recordData()->tMin();
|
||||
}
|
||||
|
||||
double CartesianFunction::tMax() const {
|
||||
float CartesianFunction::tMax() const {
|
||||
return recordData()->tMax();
|
||||
}
|
||||
|
||||
void CartesianFunction::setTMin(double tMin) {
|
||||
void CartesianFunction::setTMin(float tMin) {
|
||||
recordData()->setTMin(tMin);
|
||||
}
|
||||
|
||||
void CartesianFunction::setTMax(double tMax) {
|
||||
void CartesianFunction::setTMax(float tMax) {
|
||||
recordData()->setTMax(tMax);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user