Removed SDL_QUIT event

This commit is contained in:
Robert 2020-08-28 13:23:44 +02:00
parent 7fd559f3eb
commit c9ec50f097
3 changed files with 7 additions and 8 deletions

View file

@ -78,9 +78,9 @@ bool PlotWindow::OnUpdate(double frametime)
void PlotWindow::OnRender(SDL_Renderer* renderer)
{
float a = std::arg(callback(std::complex<float>{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);

View file

@ -47,9 +47,11 @@ public:
if (title != "")
{
PlotWindow* newWindow = MakeNew(title);
newWindow->SetCallback(std::bind([](std::complex<float> 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<float> c)
{
return std::complex<float>{ 1.f, 1.f };
return std::complex<float>{ a, b };
},
std::placeholders::_1));

View file

@ -20,9 +20,6 @@ int main(int argc, char** argv)
{
while (SDL_PollEvent(&e))
{
if (e.type == SDL_QUIT)
quit = true;
PlotWindowManager::HandleEvents(e);
}