From 51c63410741bddd4eec7b8126a12b481e8ed1e2d Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Thu, 31 Mar 2022 12:18:54 -0400 Subject: [PATCH] set default gooey time_step increment to 5 --- src/gooey.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gooey.cpp b/src/gooey.cpp index 18ad5fa..5a396c9 100644 --- a/src/gooey.cpp +++ b/src/gooey.cpp @@ -137,7 +137,8 @@ void drawSystemWindow(system_2body& sys, bool& running) ImGui::Text("time_step:"); ImGui::SameLine(); - ImGui::InputDouble("##", &sys.time_step, 1); + ImGui::InputDouble("##", &sys.time_step, 5); + ImGui::Text("epsilon, spec. orb. energy: %f", sys.epsilon); ImGui::Text("h, angular momentum: %f", sys.h); ImGui::Text("r_apoapsis: %f", sys.r_apoapsis);