Files
Upsilon/apps/calculation/additional_outputs/trigonometry_graph_cell.cpp

20 lines
357 B
C++

#include "trigonometry_graph_cell.h"
using namespace Shared;
using namespace Poincare;
namespace Calculation {
TrigonometryGraphView::TrigonometryGraphView(TrigonometryModel * model) :
CurveView(model),
m_angle(model)
{
}
void TrigonometryGraphView::drawRect(KDContext * ctx, KDRect rect) const {
ctx->fillRect(rect, KDColorWhite);
// TODO
}
}