diff --git a/ComplexPlotting/PlotWindow.cpp b/ComplexPlotting/PlotWindow.cpp index 142053f..68adc9e 100644 --- a/ComplexPlotting/PlotWindow.cpp +++ b/ComplexPlotting/PlotWindow.cpp @@ -78,9 +78,9 @@ bool PlotWindow::OnUpdate(double frametime) void PlotWindow::OnRender(SDL_Renderer* renderer) { float a = std::arg(callback(std::complex{0.f, 0.f})); - a += PI; - a /= PI; - a *= 360; + a = a / PI * 180; + if (a < 0) + a = 360 + a; SDL_Color c = HSVtoRGB(a, 100, 100); diff --git a/ComplexPlotting/PlotWindowManager.hpp b/ComplexPlotting/PlotWindowManager.hpp index c326f0a..4f1e1bf 100644 --- a/ComplexPlotting/PlotWindowManager.hpp +++ b/ComplexPlotting/PlotWindowManager.hpp @@ -47,9 +47,11 @@ public: if (title != "") { PlotWindow* newWindow = MakeNew(title); - newWindow->SetCallback(std::bind([](std::complex c) + float a = (float)(rand() % 200 - 100) / 100.f; + float b = (float)(rand() % 200 - 100) / 100.f; + newWindow->SetCallback(std::bind([a, b](std::complex c) { - return std::complex{ 1.f, 1.f }; + return std::complex{ a, b }; }, std::placeholders::_1)); diff --git a/ComplexPlotting/main.cpp b/ComplexPlotting/main.cpp index cad13fe..c94f57f 100644 --- a/ComplexPlotting/main.cpp +++ b/ComplexPlotting/main.cpp @@ -20,9 +20,6 @@ int main(int argc, char** argv) { while (SDL_PollEvent(&e)) { - if (e.type == SDL_QUIT) - quit = true; - PlotWindowManager::HandleEvents(e); }