This commit is contained in:
Djairo Hougee 2025-01-24 14:49:38 +01:00
parent ad619de1dc
commit 5693dc8961
1 changed files with 11 additions and 2 deletions

View File

@ -125,9 +125,18 @@ int Window::init(float* data) {
this->widget = new Widget(this->window);
// loop function for draw calls etc.
while (!glfwWindowShouldClose(window)) {
Window::tick();
for (int i=296; i <= 306; i++) {
this->widget->date = i;
for (int j=0; j < 4; j++) {
Window::tick();
this->saveImage();
this->widget->timestep = j;
this->widget->datechanged = true;
}
}
// while (!glfwWindowShouldClose(window)) {
// Window::tick();
// }
Window::free(data);
return 0;