mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
19 lines
584 B
C++
19 lines
584 B
C++
#ifndef GRAPH_ROOT_GRAPH_CONTROLLER_H
|
|
#define GRAPH_ROOT_GRAPH_CONTROLLER_H
|
|
|
|
#include "calculation_graph_controller.h"
|
|
|
|
namespace Graph {
|
|
|
|
class RootGraphController : public CalculationGraphController {
|
|
public:
|
|
RootGraphController(Responder * parentResponder, GraphView * graphView, BannerView * bannerView, Shared::InteractiveCurveViewRange * curveViewRange, Shared::CurveViewCursor * cursor);
|
|
const char * title() override;
|
|
private:
|
|
CartesianFunction::Point computeNewPointOfInterest(double start, double step, double max, Poincare::Context * context) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|