mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
21 lines
626 B
C++
21 lines
626 B
C++
#ifndef APPS_GRAPH_TEST_HELPER_H
|
|
#define APPS_GRAPH_TEST_HELPER_H
|
|
|
|
#include "../app.h"
|
|
#include "../../poincare/test/helper.h"
|
|
|
|
using namespace Poincare;
|
|
using namespace Shared;
|
|
|
|
namespace Graph {
|
|
|
|
constexpr ContinuousFunction::PlotType Cartesian = ContinuousFunction::PlotType::Cartesian;
|
|
constexpr ContinuousFunction::PlotType Polar = ContinuousFunction::PlotType::Polar;
|
|
constexpr ContinuousFunction::PlotType Parametric = ContinuousFunction::PlotType::Parametric;
|
|
|
|
ContinuousFunction * addFunction(const char * definition, ContinuousFunction::PlotType type, ContinuousFunctionStore * store, Context * context);
|
|
|
|
}
|
|
|
|
#endif
|