Removed SDL_QUIT event
This commit is contained in:
parent
7fd559f3eb
commit
c9ec50f097
|
@ -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);
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
|
@ -20,9 +20,6 @@ int main(int argc, char** argv)
|
|||
{
|
||||
while (SDL_PollEvent(&e))
|
||||
{
|
||||
if (e.type == SDL_QUIT)
|
||||
quit = true;
|
||||
|
||||
PlotWindowManager::HandleEvents(e);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue