mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
20 lines
357 B
C++
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
|
|
}
|
|
|
|
}
|