mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 06:40:37 +01:00
16 lines
218 B
C++
16 lines
218 B
C++
#include "complex_graph_controller.h"
|
|
|
|
using namespace Poincare;
|
|
|
|
namespace Calculation {
|
|
|
|
ComplexGraphController::ComplexGraphController() :
|
|
ViewController(nullptr),
|
|
m_complex(),
|
|
m_graphView(&m_complex)
|
|
{
|
|
}
|
|
|
|
}
|
|
|