Changed view
This commit is contained in:
parent
7ce7d18daf
commit
7109d72f34
|
@ -14,7 +14,7 @@ public:
|
||||||
|
|
||||||
static PlotWindow* MakeNew(std::string title)
|
static PlotWindow* MakeNew(std::string title)
|
||||||
{
|
{
|
||||||
PlotWindow* plt = new PlotWindow(PlotWindowCount, title, -2.f, 2.f, -2.f, 2.f);
|
PlotWindow* plt = new PlotWindow(PlotWindowCount, title, -5.f, 5.f, -5.f, 5.f);
|
||||||
plt->Open();
|
plt->Open();
|
||||||
|
|
||||||
// TODO: remove random values
|
// TODO: remove random values
|
||||||
|
@ -22,8 +22,12 @@ public:
|
||||||
float b = (float)(rand() % 200 - 100) / 100.f;
|
float b = (float)(rand() % 200 - 100) / 100.f;
|
||||||
plt->SetCallback(std::bind([a, b](std::complex<float> c)
|
plt->SetCallback(std::bind([a, b](std::complex<float> c)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
return std::complex<float>{1, 1} / (c + std::complex<float>{1, 0})
|
return std::complex<float>{1, 1} / (c + std::complex<float>{1, 0})
|
||||||
+ std::complex<float>{2, 1} / (c + std::complex<float>{-1, 0});
|
+ std::complex<float>{2, 1} / (c + std::complex<float>{-1, 0});
|
||||||
|
*/
|
||||||
|
|
||||||
|
return std::tan(std::sin(c));
|
||||||
},
|
},
|
||||||
std::placeholders::_1));
|
std::placeholders::_1));
|
||||||
plt->DrawTexture();
|
plt->DrawTexture();
|
||||||
|
|
Loading…
Reference in a new issue